/* --------------------------------------------------------------------------------
 * web fonts
-------------------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --color: #000000;
  --color-blue: #154b9e;
  --color-blue-light: #d1dae9;
  --jost: "Jost", sans-serif;
}

/* ----------------------------------------------------------------------
 reset (exculding 'sup')
---------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

input, textarea {
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

img {
  vertical-align: middle;
}

/* ----------------------------------------------------------------------
 basic setting
---------------------------------------------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color);
  line-height: 1.5;
  /*
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  */
}

body * {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  font-feature-settings: "palt";
}

input, button, textarea, select {
  color: var(--color);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}

textarea {
  vertical-align: top;
}

*:focus {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}

a:hover {
  backface-visibility: hidden;
}

/* ----------------------------------------------------------------------
 common class
---------------------------------------------------------------------- */
@media only screen and (min-width: 751px) {
  .pc-non {
    display: none !important;
  }
}
@media only screen and (max-width: 750px) {
  .sp-non {
    display: none !important;
  }
}
.mb-0 {
  margin-bottom: 0;
}

.mt-1 {
  margin-top: 1em;
}

.tCenter {
  text-align: center;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.link-tel {
  color: inherit;
  text-decoration: none;
}

@media only screen and (min-width: 751px) {
  .link-tel {
    pointer-events: none;
  }
}
.wrapper {
  overflow: hidden;
}

.hover {
  transition: 0.3s;
}

@media only screen and (min-width: 751px) {
  .hover:hover {
    opacity: 0.7;
  }
}
.title-section {
  display: flex;
  flex-direction: row-reverse;
}
.title-section .ja {
  font-size: 25px;
  letter-spacing: 0.05em;
  color: var(--color-blue);
  writing-mode: vertical-rl;
}
@media screen and (max-width: 750px) {
  .title-section .ja {
    font-size: 14px;
  }
}
.title-section .en {
  font-family: var(--jost);
  font-size: 80px;
  font-weight: 300;
  font-style: italic;
  color: var(--color-blue-light);
  writing-mode: vertical-rl;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  .title-section .en {
    font-size: 44px;
  }
}

.btn-blue {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: var(--color-blue);
  color: #fff;
  height: 40px;
  width: 205px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .btn-blue {
    width: 164px;
    height: 32px;
    font-size: 11px;
  }
}

/* ----------------------------------------------------------------------
 Layout
---------------------------------------------------------------------- */
.header {
  position: relative;
}
@media screen and (max-width: 750px) {
  .header {
    height: 70px;
  }
}

@media screen and (max-width: 750px) {
  .header__inner {
    height: 70px;
    width: 100%;
    background-color: #fff;
    position: fixed;
    z-index: 100;
    top: 0px;
    left: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 0 10px;
  }
}

.logo {
  position: absolute;
  top: 170px;
  left: 96px;
  width: 265px;
}
@media screen and (max-width: 750px) {
  .logo {
    position: static;
    width: 190px;
  }
}

.navi {
  position: absolute;
  top: 60px;
  right: 60px;
  z-index: 100;
  display: flex;
  gap: 25px;
}
.navi li a {
  text-decoration: none;
  display: block;
  background-color: #fff;
  color: var(--color-blue);
  padding: 8px 2px;
  writing-mode: vertical-rl;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  width: calc(1.5em + 4px);
}
.navi li a:hover {
  background-color: var(--color-blue);
  color: #fff;
}
@media screen and (max-width: 750px) {
  .navi {
    display: none;
  }
}

.spNavi {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 300;
  display: none;
  flex-direction: column;
}
@media screen and (min-width: 751px) {
  .spNavi {
    display: none !important;
  }
}

.spNavi__header {
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 0 10px;
}

.spNavi__close {
  width: 20px;
  height: 18px;
  position: relative;
}
.spNavi__close span {
  position: absolute;
  width: 24px;
  height: 1px;
  left: 0px;
  background-color: #000;
}
.spNavi__close span:first-child {
  top: 0px;
  transform: rotate(45deg);
  transform-origin: left center;
}
.spNavi__close span:last-child {
  bottom: 0px;
  transform: rotate(-45deg);
  transform-origin: left center;
}

.spNavi__list {
  height: calc(100% - 70px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.spNavi__list li a {
  text-decoration: none;
  color: inherit;
}

.menu {
  width: 24px;
}
@media screen and (min-width: 751px) {
  .menu {
    display: none !important;
  }
}

.header__ripples {
  position: absolute;
  width: 1304px;
  height: 1304px;
  top: -386px;
  left: -424px;
  z-index: -1;
  background: url(../img/ripples.svg) no-repeat;
}
@media screen and (max-width: 750px) {
  .header__ripples {
    width: 704px;
    height: 704px;
    top: 118px;
    left: -390px;
  }
}

.hero {
  position: relative;
}
@media screen and (max-width: 750px) {
  .hero {
    display: flex;
    flex-direction: column-reverse;
    padding: 0 10px;
  }
}

.hero__inner {
  padding: 654px 0 0 88px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .hero__inner {
    padding: 30px 10px 0;
  }
}

.hero__bg {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1;
  width: calc(100% - 468px);
  height: 930px;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .hero__bg {
    width: 100%;
    position: static;
    height: auto;
    border-radius: 8px;
  }
}
.hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 750px) {
  .hero__bg img {
    height: auto;
  }
}

.hero__title {
  font-size: 55px;
  font-weight: 300;
  letter-spacing: 0.075em;
  line-height: 1.27;
  color: var(--color-blue);
}
@media screen and (max-width: 750px) {
  .hero__title {
    font-size: 30px;
    line-height: 1.3;
  }
}

.hero__text {
  font-size: 16px;
  line-height: 2.25;
  letter-spacing: 0.075em;
  margin-top: 50px;
}
@media screen and (max-width: 750px) {
  .hero__text {
    font-size: 12px;
    margin-top: 25px;
    line-height: 1.75;
  }
}

.strength {
  padding-top: 90px;
}
@media screen and (max-width: 750px) {
  .strength {
    padding-top: 50px;
  }
}

.strength__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-left: 126px;
}
@media screen and (max-width: 750px) {
  .strength__inner {
    padding: 0;
    justify-content: center;
  }
}

.strengthList {
  width: 810px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .strengthList {
    width: auto;
    flex-direction: column;
    gap: 20px;
    margin: 60px 0 0 20px;
  }
}

.strengthList__item {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background-color: #dce3ef;
  padding-top: 68px;
}
@media screen and (max-width: 750px) {
  .strengthList__item {
    width: 210px;
    height: 210px;
    padding-top: 58px;
  }
}

.strengthList__h3 {
  font-size: 21px;
  line-height: 1.2;
  height: 2.4em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-blue);
  letter-spacing: 0.075em;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .strengthList__h3 {
    font-size: 17px;
  }
}

.strengthList__text {
  margin: 15px auto 0;
  width: 176px;
  font-size: 14px;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 750px) {
  .strengthList__text {
    font-size: 11px;
    width: 142px;
    margin-top: 15px;
  }
}

.greet {
  padding-top: 160px;
}
@media screen and (max-width: 750px) {
  .greet {
    padding-top: 75px;
  }
}

.greet__inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 160px 0 0 520px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .greet__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
}

.greet__thumb {
  position: absolute;
  right: 610px;
  top: 0px;
  width: 520px;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .greet__thumb {
    position: static;
    width: 100%;
    padding: 0 10px;
  }
}

.greet__title {
  background-color: #fff;
  position: absolute;
  z-index: 2;
  border-radius: 20px;
  top: -70px;
  right: 460px;
  padding: 28px 70px 56px 22px;
}
@media screen and (max-width: 750px) {
  .greet__title {
    padding: 0;
    background-color: transparent;
    margin-top: 60px;
    position: static;
  }
}

.greet__right {
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 750px) {
  .greet__right {
    margin-top: 50px;
    padding: 0 20px;
  }
}

.greet__text {
  font-size: 16px;
  line-height: 2.3;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 750px) {
  .greet__text {
    font-size: 12px;
    line-height: 1.75;
  }
}

.greet__name {
  text-align: right;
  margin-top: 2.5em;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 750px) {
  .greet__name {
    font-size: 12px;
  }
}

.greet__ripples {
  position: absolute;
  top: -378px;
  right: -320px;
  width: 1304px;
  height: 1304px;
  background: url(../img/ripples.svg) no-repeat;
  z-index: -1;
}
@media screen and (max-width: 750px) {
  .greet__ripples {
    width: 704px;
    height: 704px;
    top: 160px;
    right: -320px;
  }
}

.profile {
  margin-top: 180px;
  background-color: #e8edf4;
  padding: 40px 0;
}
@media screen and (max-width: 750px) {
  .profile {
    margin-top: 60px;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .profile {
    padding: 50px 40px;
  }
}

.profile__inner {
  max-width: 586px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .profile__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.profile__title .en {
  color: #fff;
}

@media screen and (max-width: 750px) {
  .profile__table {
    margin-top: 45px;
  }
}
.profile__table dl {
  display: flex;
  font-size: 16px;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 750px) {
  .profile__table dl {
    font-size: 12px;
  }
}
.profile__table dl + dl {
  margin-top: 15px;
}
@media screen and (max-width: 750px) {
  .profile__table dl + dl {
    margin-top: 8px;
  }
}
.profile__table dd {
  margin-left: 0.5em;
}

.content {
  margin-top: 100px;
}
@media screen and (max-width: 750px) {
  .content {
    margin-top: 70px;
  }
}

.content__inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 750px) {
  .content__thumb {
    padding: 0 10px;
  }
}

.content__title {
  background-color: #fff;
  position: absolute;
  z-index: 2;
  border-radius: 20px;
  top: 260px;
  right: -50px;
  padding: 28px 70px 56px 22px;
}
@media screen and (max-width: 750px) {
  .content__title {
    padding: 0;
    background-color: transparent;
    top: calc(96vw + 40px);
    right: calc(50% - 156px);
  }
}

.content__h3 {
  font-size: 25px;
  font-weight: bold;
  margin-top: 75px;
  color: var(--color-blue);
  letter-spacing: 0.075em;
}
@media screen and (max-width: 750px) {
  .content__h3 {
    width: 260px;
    margin: 70px auto 0;
    font-size: 16px;
  }
}

.contentList {
  display: flex;
}
@media screen and (max-width: 750px) {
  .contentList {
    width: 260px;
    margin: 0 auto;
    padding-right: 45px;
    flex-direction: column;
  }
}

.contentList__item {
  width: 300px;
  padding: 24px 30px 0;
  border-right: 1px solid var(--color-blue-light);
}
.contentList__item:last-child {
  border-right: none;
}
@media screen and (max-width: 750px) {
  .contentList__item {
    width: 100%;
    border-right-style: none;
    border-bottom: 1px solid var(--color-blue-light);
    padding: 40px 10px;
  }
  .contentList__item:last-child {
    border-bottom: none;
  }
}

.contentList__img {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .contentList__img {
    height: auto;
  }
}

@media screen and (max-width: 750px) {
  .img_content_01 {
    width: 124px;
  }
}

@media screen and (max-width: 750px) {
  .img_content_02 {
    width: 94px;
  }
}

@media screen and (max-width: 750px) {
  .img_content_03 {
    width: 136px;
  }
}

.contentList__title {
  text-align: center;
  margin-top: 40px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.075em;
  color: var(--color-blue);
}
@media screen and (max-width: 750px) {
  .contentList__title {
    font-size: 14px;
    margin-top: 16px;
  }
}

.contentList__text {
  font-size: 14px;
  letter-spacing: 0.075em;
  margin-top: 25px;
}
@media screen and (max-width: 750px) {
  .contentList__text {
    font-size: 11px;
    margin-top: 15px;
  }
}

.homeWorks {
  margin-top: 96px;
}
@media screen and (max-width: 750px) {
  .homeWorks {
    margin-top: 60px;
  }
}

.homeWorks__inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .homeWorks__inner {
    justify-content: center;
  }
}

.homeWorks__title {
  position: relative;
  left: -20px;
}
@media screen and (max-width: 750px) {
  .homeWorks__title {
    left: 0px;
  }
}

.homeWorks__right {
  width: 910px;
  padding-top: 56px;
}
@media screen and (max-width: 750px) {
  .homeWorks__right {
    width: auto;
    padding-top: 0;
    margin-left: 25px;
  }
}

.homeWorksList {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 750px) {
  .homeWorksList {
    flex-direction: column;
    gap: 40px;
  }
}

.homeWorksList__item {
  width: calc((100% - 100px) / 3);
}
@media screen and (max-width: 750px) {
  .homeWorksList__item {
    width: 216px;
  }
}

.homeWorksList__thumb {
  position: relative;
  cursor: pointer;
  transition: opacity 0.2s;
}

.homeWorksList__thumb:hover {
  opacity: 0.8;
}

.homeWorksList__thumb:after {
  content: "";
  background: url(../img/icon_plus.svg) no-repeat center/contain;
  width: 25px;
  aspect-ratio: 1/1;
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 1;
}

.homeWorksList__thumb img {
  border-radius: 20px;
  aspect-ratio: 27/20;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 750px) {
  .homeWorksList__thumb img {
    border-radius: 16px;
    aspect-ratio: 216/176;
  }
}

.homeWorksList__title {
  margin-top: 12px;
  font-size: 15px;
  text-align: center;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 750px) {
  .homeWorksList__title {
    font-size: 12px;
  }
}

.homeWorks__btn {
  text-align: right;
  margin-top: 70px;
}
@media screen and (max-width: 750px) {
  .homeWorks__btn {
    text-align: center;
    margin-top: 50px;
  }
}
.homeWorks__btn a {
  margin-left: auto;
  text-align: left;
  display: flex;
  width: 245px;
  height: 55px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #7491be;
  border-radius: 50vh;
  color: #7491be;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-decoration: none;
  padding-left: 48px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .homeWorks__btn a {
    width: 196px;
    height: 44px;
    font-size: 11px;
    padding-left: 40px;
    margin: 0 auto;
  }
}
.homeWorks__btn a:after {
  content: "";
  background: url(../img/arrow_btn.svg) no-repeat center/contain;
  width: 36px;
  aspect-ratio: 6/1;
  position: absolute;
  top: calc(50% - 3px);
  right: 46px;
  transition: transform 0.3s;
}
@media screen and (max-width: 750px) {
  .homeWorks__btn a:after {
    width: 28px;
    right: 38px;
    top: calc(50% - 2px);
  }
}
.homeWorks__btn a:hover:after {
  transform: translateX(10px);
}

.contact {
  margin-top: 80px;
  padding: 80px 0;
  background-color: #e8edf4;
}
@media screen and (max-width: 750px) {
  .contact {
    padding: 40px 24px 40px;
  }
}

.contact__inner {
  max-width: 490px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 750px) {
  .contact__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.contact__title {
  position: absolute;
  top: 0px;
  left: -240px;
}
@media screen and (max-width: 750px) {
  .contact__title {
    position: static;
  }
}
.contact__title .en {
  color: #fff;
}

@media screen and (max-width: 750px) {
  .contactHeader {
    width: 100%;
    margin-top: 40px;
  }
}

.contactHeader__text {
  font-size: 16px;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 750px) {
  .contactHeader__text {
    font-size: 13px;
  }
}

.contactHeader__tel {
  font-size: 20px;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 750px) {
  .contactHeader__tel {
    font-size: 16px;
  }
}
.contactHeader__tel a {
  font-size: 35px;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .contactHeader__tel a {
    font-size: 23px;
  }
}

.contactHeader__email {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 750px) {
  .contactHeader__email {
    font-size: 16px;
  }
}

.contactForm {
  padding-top: 45px;
}
@media screen and (max-width: 750px) {
  .contactForm {
    padding-top: 30px;
    width: 100%;
  }
}

.contactForm__title {
  font-size: 18px;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 750px) {
  .contactForm__title {
    font-size: 15px;
  }
}

.contactForm__subtitle {
  font-size: 18px;
  font-weight: bold;
  margin-top: 1em;
}
@media screen and (max-width: 750px) {
  .contactForm__subtitle {
    font-size: 15px;
  }
}

.contactFormBlock {
  margin-top: 25px;
}
@media screen and (max-width: 750px) {
  .contactFormBlock {
    margin-top: 20px;
  }
}

.contactFormBlock__title {
  font-size: 16px;
  letter-spacing: 0.075em;
  margin-bottom: 5px;
}
.contactFormBlock__title .required {
  color: #ff0000;
}
@media screen and (max-width: 750px) {
  .contactFormBlock__title {
    font-size: 13px;
  }
}

@media screen and (max-width: 750px) {
  .contactFormBlock__input {
    font-size: 13px;
  }
}

.input-text {
  -webkit-appearance: none;
  width: 100%;
  border-style: none;
  background-color: #fff;
  height: 40px;
  padding: 0 0.5em;
}
@media screen and (max-width: 750px) {
  .input-text {
    height: 32px;
  }
}

.input-textarea {
  -webkit-appearance: none;
  width: 100%;
  border-style: none;
  background-color: #fff;
  height: 133px;
  padding: 0.5em 0.5em;
}
@media screen and (max-width: 750px) {
  .input-textarea {
    height: 108px;
  }
}

.contactForm__btn {
  margin-top: 60px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 750px) {
  .contactForm__btn {
    width: 100%;
    margin-top: 48px;
    flex-direction: column;
    align-items: center;
  }
}

.btn-submit {
  background-color: var(--color-blue);
  color: #fff;
  height: 40px;
  width: 205px;
  border-style: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .btn-submit {
    width: 164px;
    height: 32px;
    font-size: 11px;
  }
}

.btn-back {
  background-color: #8ba3c9;
  color: #fff;
  height: 40px;
  width: 205px;
  border-style: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .btn-back {
    width: 164px;
    height: 32px;
    font-size: 11px;
  }
}

.gotop {
  text-align: center;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  color: var(--color-blue);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gotop:before {
  content: ">";
  display: inline-block;
  font-weight: 300;
  transform: rotate(-90deg) scaleY(2.4);
  font-size: 20px;
  color: var(--color-blue);
  position: relative;
  left: -2px;
  top: 2px;
}

.footer {
  padding: 15px 0;
}

.copyright {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 750px) {
  .copyright {
    font-size: 10px;
  }
}

.worksHero {
  padding: 30px 30px 0 438px;
}
@media screen and (max-width: 750px) {
  .worksHero {
    padding: 0 10px;
  }
}

.worksHero__bg {
  height: 630px;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .worksHero__bg {
    height: auto;
    border-radius: 8px;
  }
}
.worksHero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 750px) {
  .worksHero__bg img {
    height: auto;
  }
}

.worksArchives {
  width: 100%;
  max-width: 1080px;
  margin: 50px auto 0;
  padding-bottom: 80px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .worksArchives {
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
  }
}

.worksList {
  max-width: 910px;
  display: flex;
  gap: 0 50px;
  flex-wrap: wrap;
  padding-top: 120px;
}
@media screen and (max-width: 750px) {
  .worksList {
    padding: 60px 20px 0;
    justify-content: space-between;
    gap: 30px 0;
  }
}

.worksList__item {
  width: calc((100% - 100px) / 3);
  height: 300px;
}
@media screen and (max-width: 750px) {
  .worksList__item {
    width: 48%;
    height: auto;
  }
}

.worksList__thumb {
  position: relative;
  cursor: pointer;
  transition: opacity 0.2s;
}

.worksList__thumb:hover {
  opacity: 0.8;
}

.worksList__thumb:after {
  content: "";
  background: url(../img/icon_plus.svg) no-repeat center/contain;
  width: 25px;
  aspect-ratio: 1/1;
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 1;
}

.worksList__thumb img {
  border-radius: 20px;
  aspect-ratio: 27/22;
  -o-object-fit: cover;
     object-fit: cover;
}

.worksList__title {
  margin-top: 12px;
  font-size: 15px;
  text-align: center;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 750px) {
  .worksList__title {
    font-size: 13px;
  }
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 200;
}

.modal__inner {
  width: 96%;
  height: 96%;
  max-width: 900px;
  padding: 20px 96px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .modal__inner {
    padding: 20px 20px;
    height: 80%;
  }
}

.modal__title {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 750px) {
  .modal__title {
    font-size: 18px;
  }
}

.modal__img {
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  .modal__img {
    margin-top: 20px;
  }
}

.modal__btn {
  margin-top: 80px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .modal__btn {
    margin-top: 40px;
  }
}

.btn-close {
  width: 205px;
  height: 40px;
  background-color: #808080;
  color: #fff;
  border-style: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .btn-close {
    width: 164px;
    height: 32px;
    font-size: 11px;
  }
}

.ani-ripples {
  background-position: center;
  background-size: 50% auto;
  opacity: 0;
  transition: opacity 2s, background-size 2s cubic-bezier(0.22, 1, 0.36, 1);
}
.ani-ripples.is-active {
  opacity: 1;
  background-size: 100% auto;
}

.ani-fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s, transform 1s;
}
.ani-fade-up.is-active {
  opacity: 1;
  transform: translateY(0);
}