@charset "UTF-8";
/* メディアクエリ */
/* //メディアクエリ */
/* position 中央寄せ */
/* //position 中央寄せ */
.slider-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.slider-button {
  width: 50px;
  height: 50px;
  background: #ffffff;
  color: #11225b;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.slider-button::before {
  content: "";
  width: 14px;
  height: 9px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slider-button circle {
  fill: none;
  stroke-width: 1.5;
}

.post-item__tag {
  font-size: 0.75rem;
  line-height: 2.5;
  letter-spacing: 0.03em;
  border: 1px solid #11225b;
  border-radius: 2px;
  padding: 1px 8px 2px;
}
@media screen and (max-width: 767px) {
  .post-item__tag {
    font-size: 10px;
    line-height: 1.5;
    padding: 1px 6px 2px;
  }
}
.post-item__img img {
  transition: all 0.3s;
}
.post-item__link:hover .post-item__img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.post-item__link:hover .post-item__ttl span {
  -webkit-animation: underline_animation 0.8s both;
  animation: underline_animation 0.8s both;
}
.post-item__ttl span {
  display: inline;
  background-position: left 0 bottom 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#333), to(#333));
  background-image: linear-gradient(#333, #333);
  background-repeat: no-repeat;
  background-size: 0 1px;
}

@keyframes underline_animation {
  0% {
    background-size: 0 1px;
    background-position: left 0 bottom 0;
  }
  100% {
    background-size: 100% 1px;
    background-position: left 0 bottom 0;
  }
}
.fv {
  padding-top: 165px;
  position: relative;
  z-index: 1;
}
.fv__ttl {
  font-size: 3.125rem;
  letter-spacing: 0.1em;
  margin-bottom: 38px;
}
@media screen and (max-width: 1439px) {
  .fv__ttl {
    font-size: 2.875rem;
  }
}
@media screen and (max-width: 1279px) {
  .fv__ttl {
    font-size: 2.375rem;
  }
}
@media screen and (max-width: 1023px) {
  .fv__ttl {
    font-size: 1.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .fv__ttl {
    font-size: 30px;
    margin-bottom: 18px;
  }
}
.fv__ttl-item {
  display: block;
}
.fv__ttl-item:last-of-type {
  padding-top: 12px;
  padding-left: 27px;
}
@media screen and (max-width: 767px) {
  .fv__ttl-item:first-of-type {
    margin-left: -14px;
  }
  .fv__ttl-item:last-of-type {
    padding-left: 0;
  }
}
.fv__ttl-item span {
  letter-spacing: -0.001em;
}
.fv__txt {
  letter-spacing: 0.03em;
  line-height: 1.875;
  padding-left: 26px;
}
@media screen and (max-width: 767px) {
  .fv__txt {
    font-size: 11px;
    line-height: 2.1818181818;
    padding: 0;
  }
}
.fv-inner {
  display: flex;
  margin-left: -39px;
  margin-right: -39px;
}
@media screen and (max-width: 1023px) {
  .fv-inner {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media screen and (max-width: 767px) {
  .fv-inner {
    flex-wrap: wrap;
    row-gap: 40px;
  }
}
.fv-txt-wrapper,
.fv-works-wrapper {
  padding: 0 39px;
}
@media screen and (max-width: 1023px) {
  .fv-txt-wrapper,
  .fv-works-wrapper {
    padding: 0 15px;
  }
}
.fv-txt-wrapper {
  padding-top: 5px;
  width: 45.7%;
}
@media screen and (max-width: 767px) {
  .fv-txt-wrapper {
    width: 100%;
    padding: 0 40px;
  }
}
.fv-txt-inner {
  padding-left: 65px;
}
@media screen and (max-width: 1279px) {
  .fv-txt-inner {
    padding-left: 30px;
  }
}
@media screen and (max-width: 1023px) {
  .fv-txt-inner {
    padding-left: 10px;
  }
}
@media screen and (max-width: 767px) {
  .fv-txt-inner {
    padding-left: 0;
  }
}
.fv-works-wrapper {
  width: 54.3%;
}
@media screen and (max-width: 767px) {
  .fv-works-wrapper {
    width: 100%;
  }
}
.fv-btn-wrapper {
  margin-top: 42px;
  padding-left: 25px;
}
@media screen and (max-width: 767px) {
  .fv-btn-wrapper {
    margin-top: 28px;
    padding-left: 0;
    padding-right: 0;
  }
}
.fv-btn-wrapper .btn-contact {
  background-color: #ed356a;
  box-shadow: 0px 0px 4px rgba(237, 53, 106, 0.3);
  padding: 13px 0;
  border: 1px solid #ed356a;
}
.fv-btn-wrapper .btn-contact:hover {
  background-color: #ffffff;
  color: #ed356a;
}
.fv-btn-wrapper .btn-contact:hover span {
  background-color: #ed356a;
  color: #ffffff;
}
.fv-btn-wrapper .btn-contact span {
  background-color: #ffffff;
  border-radius: 2px;
  color: #ed356a;
  font-size: 12px;
  line-height: 2.5;
  letter-spacing: 0.03em;
  font-weight: 500;
  padding: 0.5px 4.5px;
  margin-left: 6px;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .fv-btn-wrapper .btn-contact span {
    font-size: 10px;
    padding: 1px 2.5px;
    line-height: 1.5;
  }
}
.fv-btn-wrapper .btn-doc {
  background-color: #11225b;
  box-shadow: 0px 0px 4px rgba(17, 34, 91, 0.3);
  padding: 18px 0;
  border: 1px solid #11225b;
}
@media screen and (max-width: 767px) {
  .fv-btn-wrapper .btn-doc {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.fv-btn-wrapper .btn-doc:hover {
  background-color: #ffffff;
  color: #11225b;
}
.fv-btn-wrapper .btn-doc:hover span::before {
  background: url(../images/common/icon-pdf.svg) no-repeat center center/contain;
}
.fv-btn-wrapper .btn-doc span {
  position: relative;
  padding-right: 19px;
}
.fv-btn-wrapper .btn-doc span::before {
  content: "";
  width: 14px;
  height: 19px;
  background: url(../images/common/icon-pdf-white.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  right: 0;
  transition: all 0.3s;
}
.fv-btn-inner {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 1023px) {
  .fv-btn-inner {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .fv-btn-inner {
    gap: 5px;
  }
}
.fv-btn-item {
  width: 200px;
}
@media screen and (max-width: 767px) {
  .fv-btn-item {
    width: calc(50% - 2.5px);
  }
}
.fv-btn-item a {
  display: block;
  border-radius: 100vw;
  font-weight: 500;
  font-size: 0.875rem;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.03em;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .fv-btn-item a {
    border-radius: 4px;
    font-size: 12px;
    padding: 15px 0px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.fv-works-list {
  display: flex;
  gap: 3px;
  height: 375px;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .fv-works-list {
    height: 198px;
  }
}
.fv-works-list-item {
  flex: 1 1 0;
  transition: flex-basis 0.6s 0s cubic-bezier(0.44, 0.14, 0.09, 1.02);
  position: relative;
  overflow: hidden;
  min-width: 0;
}
.fv-works-list-item.js-active {
  flex-basis: 65%;
}
.fv-works-list-item.js-active .fv-works-list-item-info-wrapper {
  opacity: 1;
}
.fv-works-list-item a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.fv-works-list-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.fv-works-list-item:hover img {
  transform: scale(1.05);
}
.fv-works-list-item-info-wrapper {
  position: absolute;
  bottom: 12px;
  left: 12px;
  opacity: 0;
  transition: all 0.3s;
  color: white;
}
.fv-works-list-item-info-top {
  font-size: 0.625rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
.fv-works-list-item-info-bottom {
  font-size: 0.75rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
.fv .progress-button {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  pointer-events: none;
}
.fv .progress-button svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.fv .progress-button circle {
  fill: none;
  stroke-width: 4;
}
.fv .progress-button .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.fv .progress-bg {
  stroke: #ffffff;
  opacity: 0.8;
}
.fv .progress-fg {
  stroke: #33b9bb;
  stroke-dasharray: 251.2;
  stroke-dashoffset: 251.2;
  transition: stroke-dashoffset 0.1s linear;
}

.decor-circles {
  position: absolute; /* もしくは .fv の中なら absolute、全体なら fixed でもOK */
  inset: 0; /* 親いっぱいに広げる */
  overflow: clip; /* Safariが古めなら overflow: hidden; でも可 */
  pointer-events: none;
  z-index: -1; /* 背景へ */
}

.circle-left {
  position: absolute;
  top: 157px;
  left: -272px;
  z-index: -1;
}

.circle-right {
  position: absolute;
  top: -196px;
  right: -302px;
  z-index: -1;
}

@media screen and (max-width: 1023px) {
  .home .circle-left,
  .home .circle-right {
    width: 277px;
    height: 277px;
  }
}
@media screen and (max-width: 1023px) {
  .home .circle-right {
    top: -128px;
    right: -102px;
  }
}
@media screen and (max-width: 1023px) {
  .home .circle-left {
    top: 256px;
    left: -115px;
  }
}

.circle-right,
.circle-left {
  position: absolute; /* ← これで通常フローから外れる */
  display: block;
  pointer-events: none; /* クリック邪魔しない */
  max-width: none; /* サイズ調整は width で管理 */
  height: auto;
  transform-origin: center; /* 反転時の基点安定 */
  transform-box: fill-box; /* 反転時のBBox解釈を安定化 */
}

/* 右のサークルを右端アンカー。はみ出しを少し外へ逃がす */
.home {
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .home .l-main {
    padding-top: 5rem;
  }
}
.home .c-title__main {
  line-height: 1.5;
}

.interview .c-titleAnim__target {
  animation-delay: 2.5s;
}
.interview-list {
  display: flex;
  margin-left: -17.5px;
  margin-right: -17.5px;
  margin-top: 57px;
  margin-bottom: 54px;
}
@media screen and (max-width: 767px) {
  .interview-list.d-md-none {
    display: none;
  }
}
.interview-list-item {
  width: 33.3333333%;
  padding: 0 17.5px;
}
@media screen and (max-width: 767px) {
  .interview-list-item {
    padding: 0;
  }
}
.interview-list-item__img {
  margin-bottom: 21px;
}
.interview-list-item__company-name {
  font-size: 14px;
  line-height: 2.1428571429;
  letter-spacing: 0.03em;
  margin-bottom: 3px;
}
@media screen and (max-width: 767px) {
  .interview-list-item__company-name {
    font-size: 12px;
    margin-bottom: 0;
  }
}
.interview-list-item__ttl {
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .interview-list-item__ttl {
    font-size: 14px;
    line-height: 1.7142857143;
  }
}
.interview-list-item__cat {
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 2.1428571429;
  color: #a2a2a2;
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .interview-list-item__cat {
    font-size: 12px;
  }
}
.interview-list-item__cat span {
  margin-left: 30px;
  color: #111e27;
}
.interview-btn-wrapper {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .interview-btn-wrapper {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .interview-slide {
    margin-top: 40px;
  }
}
.interview .splide__arrows svg {
  display: none;
}
.interview .splide__arrow {
  width: 10.6666666667vw;
  height: 10.6666666667vw;
  border-radius: 50%;
  border: 1px solid #11225b;
  background-color: rgba(255, 255, 255, 0.8);
  position: relative;
  position: absolute;
  top: 20.2666666667vw;
  z-index: 998;
}
.interview .splide__arrow::before {
  content: "";
  width: 2.6666666667vw;
  height: 1.6vw;
  background: url(../images/common/icon-arrow-right-navy.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.interview .splide__arrow--next {
  right: -4vw;
}
.interview .splide__arrow--next::before {
  left: 2.4vw;
}
.interview .splide__arrow--prev {
  left: -4vw;
}
.interview .splide__arrow--prev::before {
  right: 2.4vw;
  transform: translateY(-50%) rotate(180deg);
}

.works {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}
.works-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 60px;
  margin-left: -17.5px;
  margin-right: -17.5px;
  margin-top: 58px;
}
.works-list-item {
  width: 33.3333333%;
  padding: 0 17.5px;
}
/* .works-list-item:nth-of-type(odd) .works-list-item__img {
  background-color: #dbf0f7;
}
.works-list-item:nth-of-type(even) .works-list-item__img {
  background-color: #F4F2EC;
} */
.works-list-item__img {
  margin-bottom: 20px;
  /* padding: 35px 37px; */
}
@media screen and (max-width: 767px) {
  .works-list-item__img {
    margin-bottom: 15px;
  }
}
.works-list-item__img img {
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  /* border-radius: 5px; */
  /* box-shadow: 5px 5px 10px rgba(17, 34, 91, 0.2); */
}
.works-list-item__name {
  font-size: 1.5625rem;
  line-height: 1.28;
  letter-spacing: 0.03em;
  display: block;
  margin-top: 8px;
  margin-bottom: 7px;
}
@media screen and (max-width: 767px) {
  .works-list-item__name {
    font-size: 14px;
    line-height: calc(24 / 14);
    margin-bottom: 0;
  }
}
.works-list-item__genre {
  margin-top: 8px;
  font-size: 0.875rem;
  color: #a2a2a2;
  letter-spacing: 0.03em;
  line-height: 2.1428571429;
  display: flex;
}
.works-list-item__genre span {
  margin-left: 30px;
  color: #111e27;
  flex: 1;
}
.works-btn-wrapper {
  margin: 58px auto 0;
}
@media screen and (max-width: 767px) {
  .works {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .works-list {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
  .works-list-item {
    width: 50%;
    padding: 0 7.5px;
  }
  .works-list-item__genre {
    display: block;
    margin-top: 0;
    font-size: 12px;
  }
}

.service {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
  background-color: #f2f2f2;
  border-radius: 40px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .service {
    padding-top: 200px;
  }
}
@media screen and (max-width: 767px) {
  .service {
    padding-bottom: 60px;
  }
}
.service-illustration--1 {
  top: -5px;
  right: 33px;
}
@media screen and (max-width: 1023px) {
  .service-illustration--1 {
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
  }
}
.service-illustration--1 img {
  width: 212px;
}
@media screen and (max-width: 767px) {
  .service-illustration--1 img {
    width: 158px;
  }
}
.service-illustration--1 .service-illustration-fukidashi {
  top: -14px;
  left: 30px;
  width: 164px;
}
@media screen and (max-width: 767px) {
  .service-illustration--1 .service-illustration-fukidashi {
    left: 50%;
    transform: translateX(-50%);
    width: 142px;
  }
}
.service-illustration--1 .service-illustration-fukidashi img {
  width: 100%;
}
.service-illustration--2 {
  bottom: 0;
  right: 65px;
}
@media screen and (max-width: 767px) {
  .service-illustration--2 {
    right: 50px;
  }
}
.service-illustration--2 img {
  width: 73px;
}
@media screen and (max-width: 767px) {
  .service-illustration--2 img {
    width: 59px;
  }
}
.service-illustration--2 .service-illustration-fukidashi {
  width: 210px;
  top: 0;
  left: -187px;
}
@media screen and (max-width: 767px) {
  .service-illustration--2 .service-illustration-fukidashi {
    left: -160px;
  }
}
.service-illustration--2 .service-illustration-fukidashi img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .service-illustration--2 .service-illustration-fukidashi img {
    width: 182px;
  }
}
.service-wrapper {
  display: flex;
  margin-left: -40px;
  margin-right: -40px;
  margin-top: 67px;
}
@media screen and (max-width: 1023px) {
  .service-wrapper {
    flex-wrap: wrap;
    row-gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .service-wrapper {
    margin-top: 40px;
  }
}
.service-left-wrapper,
.service-right-wrapper {
  padding: 0 40px;
  width: 50%;
}
@media screen and (max-width: 1023px) {
  .service-left-wrapper,
  .service-right-wrapper {
    width: 100%;
  }
}
.service-right-wrapper {
  max-width: 603px;
  margin: 0 auto;
}
.service-left-wrapper {
  padding-top: 18px;
}
@media screen and (max-width: 767px) {
  .service-left-wrapper {
    padding-top: 0;
  }
}
.service-left-wrapper.js-scrolled .service-item__ttl--ja {
  animation: gradient-title 9.5s cubic-bezier(0.49, 0.33, 0.31, 0.88) 0ms infinite;
}
.service-left-inner {
  position: relative;
  height: 487px;
}
@media screen and (max-width: 1279px) {
  .service-left-inner {
    height: 430px;
  }
}
@media screen and (max-width: 1023px) {
  .service-left-inner {
    max-width: 523px;
    margin: 0 auto;
    height: 487px;
  }
}
@media screen and (max-width: 767px) {
  .service-left-inner {
    height: 312px;
    width: 335px;
  }
}
.service-item--circled {
  width: 276px;
  height: 276px;
  border: 1px solid #11225b;
  border-radius: 50%;
  position: absolute;
}
@media screen and (max-width: 1279px) {
  .service-item--circled {
    width: 240px;
    height: 240px;
  }
}
@media screen and (max-width: 1023px) {
  .service-item--circled {
    width: 276px;
    height: 276px;
  }
}
@media screen and (max-width: 767px) {
  .service-item--circled {
    width: 176px;
    height: 176px;
  }
}
.service-item--circled:first-of-type {
  top: 0;
  left: 50%;
  transform: translatex(-50%);
}
.service-item--circled:nth-of-type(2) {
  bottom: 0;
  left: 0;
}
.service-item--circled:nth-of-type(3) {
  bottom: 0;
  right: 0;
}
.service-item__ttl {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.service-item__ttl--ja,
.service-item__ttl--en {
  line-height: 1.75;
  letter-spacing: 0.03em;
  display: block;
}
.service-item__ttl--ja {
  font-size: 1rem;
  background: linear-gradient(
    90deg,
    #000,
    #000 30%,
    #c3572f 38%,
    #efa140 43%,
    #ffb648 48%,
    #b66e2a 58%,
    #000 70%,
    #000
  );
  -webkit-background-clip: text;
  background-clip: text;
  background-repeat: no-repeat;
  background-size: 330%;
  -webkit-clip-path: inset(1px);
  clip-path: inset(1px);
  color: transparent;
  padding-bottom: 0.2em;
}
@media screen and (max-width: 767px) {
  .service-item__ttl--ja {
    font-size: 12px;
  }
}
.service-item__ttl--en {
  font-size: 10px;
}
@media screen and (max-width: 767px) {
  .service-item__ttl--en {
    font-size: 8px;
  }
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 16px;
}
@media screen and (max-width: 599px) {
  .service-list.d-sm-none {
    display: none;
  }
}
.service-list-item {
  border-radius: 10px;
  background: #ffffff;
  padding: 28px 30px;
  width: 100%;
}
.service-list-item__ttl {
  font-size: 18px;
  letter-spacing: 0.03em;
  line-height: 1.5555555556;
  border-bottom: 1px solid #111e27;
  padding-bottom: 6px;
}
@media screen and (max-width: 767px) {
  .service-list-inner--sp {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .service-list--sp {
    background-color: #ffffff;
    border-radius: 10px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .service-list__q-inner {
    width: 100%;
    padding: 20px 30px 20px 20px;
    text-align: left;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .service-list__q-inner::before {
    content: "";
    width: 10px;
    height: 6px;
    background: url(../images/common/icon-arrow-gray-simple.svg) no-repeat center center/contain;
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    right: 20px;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 767px) {
  .service-list__q-inner.is-accordion-head-opened::before {
    transform: translateY(-50%) rotate(180deg);
  }
}
.service-list__q-inner span {
  color: #111e27;
}
@media screen and (max-width: 767px) {
  .service-list__q-inner span {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
  }
}
.service-list__a {
  padding: 0 30px 20px 20px;
}
.service-list__a .service-contents-list {
  margin-top: 0;
}
.service-contents-list {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
}
.service-contents-list-item {
  letter-spacing: 0.03em;
  line-height: 1.875;
  padding-left: 22px;
  position: relative;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .service-contents-list-item {
    width: 100%;
  }
}
.service-contents-list-item::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url(../images/common/icon-checked-square.svg) no-repeat center center/contain;
  position: absolute;
  top: 9px;
  left: 0;
}

@keyframes gradient-title {
  0% {
    background-position: 100% 0;
  }
  26.316% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 0;
  }
}
.itaku-wrapper {
  margin-top: 140px;
}
@media screen and (max-width: 767px) {
  .itaku-wrapper {
    margin-top: 80px;
  }
}
.itaku-inner {
  display: flex;
  margin-left: -40px;
  margin-right: -40px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .itaku-inner {
    flex-wrap: wrap;
  }
}
.itaku-img-wrapper,
.itaku-txt-wrapper {
  padding: 0 40px;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .itaku-img-wrapper,
  .itaku-txt-wrapper {
    width: 100%;
  }
}
.itaku-img-wrapper {
  position: relative;
}
.itaku-img-wrapper img {
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .itaku__ttl {
    text-align: right;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .itaku__ttl img {
    width: 314px;
    display: inline;
    border-radius: 0px;
  }
}
.itaku__ttl--sub {
  font-size: 2rem;
  letter-spacing: 0.03em;
  line-height: 1.0666666667;
  margin-bottom: 26px;
}
@media screen and (max-width: 1023px) {
  .itaku__ttl--sub {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .itaku__ttl--sub {
    font-size: 20px;
    text-align: center;
  }
}
.itaku__txt {
  letter-spacing: 0.03em;
  line-height: 1.75;
  margin-top: 38px;
  margin-bottom: 38px;
}
@media screen and (max-width: 767px) {
  .itaku__txt {
    margin-top: 30px;
    font-size: 14px;
    line-height: 1.7142857143;
    margin-bottom: 40px;
  }

  .itaku-btn-wrapper {
    margin-inline: auto;
  }
}
.itaku-btn-wrapper .btn-pattern1 .itaku-btn-inner {
  position: relative;
  padding-right: 15px;
}
.itaku-btn-wrapper .btn-pattern1 .itaku-btn-inner::before {
  content: "";
  width: 10px;
  height: 10px;
  background: url(../images/common/icon-new-tab.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  right: 0;
}

.blog {
  padding-top: 8.875rem;
}
@media screen and (max-width: 767px) {
  .blog {
    padding-top: 80px;
  }
}
.blog-list {
  display: flex;
  gap: 35px;
  transition: transform 0.6s ease;
  will-change: transform;
}
.blog-list-wrapper {
  margin-top: 58px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .blog-list {
    gap: 20px;
  }
  .blog-list-wrapper {
    margin-top: 40px;
    padding-left: 20px;
  }
}
.blog-list-item__tag {
  line-height: unset;
  margin-right: 12px;
}
.blog-list-item__img {
  margin-bottom: 22px;
}
.blog-list-item__time {
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  line-height: 2.1428571429;
  color: #a2a2a2;
  margin-right: 15px;
}
.blog-list-item__modified-time {
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  line-height: 2.1428571429;
  color: #a2a2a2;
  position: relative;
  padding-left: 18px;
}
.blog-list-item__modified-time::before {
  content: "";
  width: 13px;
  height: 13px;
  background: url(../images/common/icon-reload.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  left: 0;
}
.blog-list-item__ttl {
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .blog-list-item__ttl {
    font-size: 14px;
    line-height: calc(24 / 14);
  }
}
.blog #blogNextBtn {
  position: relative;
}
.blog #blogNextBtn::before {
  background: url(../images/common/icon-arrow-right-navy.svg) no-repeat center center/contain;
}
.blog #blogPrevBtn {
  position: relative;
}
.blog #blogPrevBtn::before {
  background: url(../images/common/icon-arrow-left-gray.svg) no-repeat center center/contain;
}
.blog #blogPrevBtn .blog-progress-ring {
  display: none;
}
.blog-bottom {
  margin-top: 58px;
}
.blog-bottom-inner {
  display: flex;
  justify-content: space-between;
}
.blog-list-wrapper {
  overflow: hidden;
  position: relative;
}
.blog-list {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
  padding-right: var(--blog-peek, 88px);
}

.blog-list-item {
  flex-shrink: 0;
  width: 352px;
}
@media screen and (max-width: 767px) {
  .blog-list-item {
    width: 295px;
  }
}

.slider-button {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.progress-bg {
  fill: none;
  stroke: #c6c6c6;
  stroke-width: 2;
}

.blog-progress-ring {
  fill: none;
  stroke: #11225b;
  stroke-width: 2;
  stroke-dasharray: 144;
  stroke-dashoffset: 144;
  transform: rotate(-90deg);
  transform-origin: center;
}

.news {
  padding-top: 9.125rem;
  padding-bottom: 17.4375rem;
}
@media screen and (max-width: 767px) {
  .news {
    padding-top: 80px;
    padding-bottom: 200px;
  }
}
.news-wrapper {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .news-wrapper {
    margin-top: 40px;
  }
}
.news-list-item {
  border-top: 1px solid #c6c6c6;
  position: relative;
  overflow: hidden;
}
.news-list-item:last-of-type {
  border-bottom: 1px solid #c6c6c6;
}
.news-list-item::before {
  content: "";
  width: 32px;
  height: 32px;
  background-color: transparent;
  border: 1px solid #111e27;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  right: 0;
}
.news-list-item::after {
  content: "";
  width: 9px;
  height: 6px;
  background: url(../images/common/icon-arrow-right-navy.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  right: 11px;
}
.news-list-item:hover::after {
  -webkit-animation: forward 0.9s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation: forward 0.9s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.news-list-item:hover .news-list-item__border {
  visibility: inherit;
  -webkit-transition: none;
  transition: none;
  -webkit-animation: right-in 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s forwards;
  animation: right-in 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s forwards;
}
.news-list-item:hover .news-list-item-head,
.news-list-item:hover .news-list-item-body {
  -webkit-transform: translateX(1rem);
  transform: translateX(1rem);
}
.news-list-item__link {
  padding: 36px 0 38px;
  display: block;
}
@media screen and (max-width: 767px) {
  .news-list-item__link {
    padding: 28px 46px 28px 0;
  }
}
.news-list-item-head,
.news-list-item-body {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition:
    transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.news-list-item__date {
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  line-height: 2.1428571429;
  color: #a2a2a2;
}
@media screen and (max-width: 767px) {
  .news-list-item__date {
    font-size: 12px;
  }
}
.news-list-item__tag {
  border: 1px solid #111e27;
  font-size: 12px;
  letter-spacing: 0.03em;
  line-height: 2.5;
  border-radius: 2px;
  padding: 2px 7px;
  margin-right: 9px;
}
@media screen and (max-width: 767px) {
  .news-list-item__tag {
    font-size: 10px;
    margin-right: 6px;
  }
}
.news-list-item__ttl {
  letter-spacing: 0.03em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .news-list-item__ttl {
    font-size: 14px;
    line-height: 1.7142857143;
  }
}
.news-list-item__border {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  visibility: hidden;
  -webkit-transition: visibility 0s 0.5s;
  transition: visibility 0s 0.5s;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-animation: right-out 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: right-out 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.news-list-item__border::after {
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#00b6e5),
    color-stop(#bc71eb),
    color-stop(#dc6e87),
    color-stop(#ed957a),
    color-stop(#ffe65f),
    color-stop(#00d2d0),
    color-stop(#00b6e5),
    to(#bc71eb)
  );
  background: linear-gradient(270deg, #00b6e5, #bc71eb, #dc6e87, #ed957a, #ffe65f, #00d2d0, #00b6e5, #bc71eb);
  background-position: 0 50%;
  background-size: 700% 700%;
  -webkit-animation: gradientAnim 5s linear infinite;
  animation: gradientAnim 5s linear infinite;
  will-change: background, background-position;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
}
.news-btn-wrapper {
  margin: 57px auto 0;
}

@keyframes right-in {
  0% {
    visibility: visible;
    -webkit-transform: translateX(-102%);
    transform: translateX(-102%);
  }
  100% {
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes forward {
  0% {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  30% {
    -webkit-transform: translate(110%, -50%);
    transform: translate(110%, -50%);
  }
  30.1% {
    -webkit-transform: translate(-110%, -50%);
    transform: translate(-110%, -50%);
  }
  100% {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
} /*# sourceMappingURL=style-home.css.map */
