@charset "UTF-8";
/* --------------------------------------------------------------------------------
 * web fonts
-------------------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css2?family=STIX+Two+Text:ital,wght@0,400..700;1,400..700&display=swap");
:root {
  --color: #231815;
  --color-light: #dcdddd;
  --color-magenta: #e73562;
  --color-primary: #1f2c33;
}

/* ----------------------------------------------------------------------
 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 Serif JP", 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;
}

input, button, textarea, select {
  color: var(--color);
  font-family: "Noto Serif JP", 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;
  }
}
.mb0 {
  margin-bottom: 0;
}

.tCenter {
  text-align: center;
}

.overflow-hidden {
  overflow: hidden;
}

.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 {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}

@media only screen and (max-width: 750px) {
  .wrapper {
    width: auto;
  }
}
.hover {
  transition: 0.3s;
}

@media only screen and (min-width: 751px) {
  .hover:hover {
    opacity: 0.7;
  }
}
.hover-text {
  text-decoration: none;
}
.hover-text:hover {
  text-decoration: underline;
}

.stix {
  font-family: "STIX Two Text", serif;
}

.color-magenta {
  color: var(--color-magenta);
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  font-feature-settings: "palt";
  letter-spacing: 0.2em;
  height: 50px;
  width: 350px;
  border-radius: 50vh;
  position: relative;
  color: var(--color);
  border: 1px solid var(--color);
}
@media screen and (max-width: 750px) {
  .btn-primary {
    width: 315px;
    font-size: 16px;
  }
}
.btn-primary:after {
  content: "";
  background: url(../img/angle_right.svg) no-repeat center/contain;
  width: 10px;
  aspect-ratio: 1/2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}
.btn-primary.-light {
  color: #dcdddd;
  border: 1px solid #dcdddd;
}
.btn-primary.-light:after {
  background: url(../img/angle_right_light.svg) no-repeat center/contain;
}

.btn-form-send {
  -webkit-appearance: none;
  background-color: transparent;
  font-size: 18px;
  font-feature-settings: "palt";
  letter-spacing: 0.2em;
  height: 50px;
  width: 350px;
  border-radius: 50vh;
  position: relative;
  color: #dcdddd;
  border: 1px solid #dcdddd;
  cursor: pointer;
  background: url(../img/angle_right_light.svg) no-repeat center right 15px/10px;
}
@media screen and (max-width: 750px) {
  .btn-form-send {
    width: 315px;
    font-size: 16px;
  }
}

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

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

.header__logo {
  width: 202px;
}
@media screen and (max-width: 750px) {
  .header__logo {
    width: 142px;
  }
}

.header__navi {
  display: flex;
}
@media screen and (max-width: 750px) {
  .header__navi {
    display: none;
  }
}
.header__navi > li {
  padding: 0 27px;
  border-left: 1px solid #dcdddd;
}
.header__navi > li:first-child {
  border-right: 1px solid #dcdddd;
}
.header__navi > li > a {
  display: block;
  text-align: center;
  color: #dcdddd;
  text-decoration: none;
}
.header__navi > li > a .ja {
  font-size: 13px;
  letter-spacing: 0.3em;
  display: block;
}
.header__navi > li > a .en {
  font-size: 6.4px;
  letter-spacing: 0.2em;
  display: block;
}
.header__navi .hasClass {
  display: flex;
}
.header__navi .sub {
  display: flex;
  gap: 20px;
  align-items: center;
}
.header__navi .sub li {
  font-size: 13px;
}
.header__navi .sub li:before {
  content: "●";
  color: #9fa0a0;
}
.header__navi .sub li a {
  letter-spacing: 0.3em;
  text-decoration: none;
  color: #dcdddd;
}

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

.spContact {
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  z-index: 1200;
  background-color: var(--color-primary);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 751px) {
  .spContact {
    display: none !important;
  }
}
.spContact a {
  color: var(--color-light);
  text-decoration: none;
  text-align: center;
}
.spContact a .ja {
  font-size: 13px;
  font-feature-settings: "palt";
  letter-spacing: 0.15em;
  display: block;
}
.spContact a .en {
  font-size: 6px;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  display: block;
}

.spMenu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0px;
  width: 100%;
  height: calc(100dvh - 140px);
  z-index: 1000;
  background-color: #616f76;
  padding: 36px 15px 40px;
  color: var(--color-light);
  overflow: auto;
}
@media screen and (min-width: 751px) {
  .spMenu {
    display: none !important;
  }
}

.spMenu__close {
  width: 42px;
  margin: 0 auto;
}

.spNavi {
  margin-top: 44px;
  border-top: 1px dashed var(--color-light);
  font-size: 16px;
  font-feature-settings: "palt";
  letter-spacing: 0.15em;
}
.spNavi a {
  text-decoration: none;
  color: inherit;
}

.spNavi__item {
  padding: 24px 0;
  text-align: center;
  border-bottom: 1px dashed var(--color-light);
}

.spNavi__sub li {
  padding: 18px 0 0;
}
.spNavi__sub li a:before {
  content: "●";
  color: #9fa0a0;
  margin-right: 4px;
}
.spNavi__sub li a:after {
  content: "●";
  color: #9fa0a0;
  margin-left: 4px;
}

.footer {
  position: relative;
  z-index: 2;
}

.footer__inner {
  background-color: #4b5a61;
  border-top: 1px solid #dcdddd;
  border-bottom: 1px solid #dcdddd;
  padding: 28px 0 36px;
  text-align: center;
}

.footer__logo img {
  width: 198px;
}
@media screen and (max-width: 750px) {
  .footer__logo img {
    width: 158px;
  }
}

.footer__license {
  font-size: 13px;
  line-height: 2;
  font-feature-settings: "palt";
  color: var(--color-light);
  letter-spacing: 0.12em;
}
@media screen and (max-width: 750px) {
  .footer__license {
    font-size: 11px;
  }
}

.footer__address {
  margin-top: 30px;
  font-size: 16px;
  line-height: 2.2;
  font-feature-settings: "palt";
  letter-spacing: 0.012em;
  color: var(--color-light);
}
@media screen and (max-width: 750px) {
  .footer__address {
    font-size: 14px;
  }
}

.copyright {
  background-color: var(--color-primary);
  color: var(--color-light);
  text-align: center;
  font-size: 13px;
  font-feature-settings: "palt";
  letter-spacing: 0.12em;
  padding: 24px 0;
}
@media screen and (max-width: 750px) {
  .copyright {
    font-size: 10px;
    padding-bottom: 90px;
  }
}

.homeMv {
  height: calc(100vh - 130px);
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 750px) {
  .homeMv {
    height: calc(100vh - 140px);
  }
}

.homeMv__title {
  width: 100%;
  text-align: center;
}
.homeMv__title img {
  width: 618px;
}
@media screen and (max-width: 750px) {
  .homeMv__title img {
    width: 187px;
  }
}

.background {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.background video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.homeIntro {
  padding-top: 180px;
  padding-bottom: 130px;
  background: url(../img/mask_reverse.png) no-repeat center top/2000px;
  border-top: 30px solid var(--color-primary);
}
@media screen and (max-width: 750px) {
  .homeIntro {
    border-style: none;
    background: url(../img/mask_reverse_sp.png) no-repeat center top/100% auto;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.homeIntro__inner {
  max-width: 556px;
  margin: 0 auto;
  display: flex;
  position: relative;
}
@media screen and (max-width: 750px) {
  .homeIntro__inner {
    padding-top: 108vw;
  }
}

.homeIntro__title {
  width: 162px;
}
@media screen and (max-width: 750px) {
  .homeIntro__title {
    width: 27.4vw;
    position: absolute;
    right: 0px;
    top: 25.6vw;
  }
}

.homeIntro__text {
  width: 364px;
  color: var(--color-light);
  font-size: 18px;
  line-height: 2.6;
  font-feature-settings: "palt";
  letter-spacing: 0.2em;
  margin-left: 22px;
  text-align: justify;
}
@media screen and (max-width: 750px) {
  .homeIntro__text {
    background-color: var(--color-primary);
    padding: 56px 15px 0;
    font-size: 16px;
    line-height: 2.56;
    margin-left: 0;
    width: 100%;
  }
}

.homeNews {
  padding-top: 60px;
  padding-bottom: 70px;
  background-color: var(--color-primary);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .homeNews {
    padding: 60px 15px 70px;
  }
}

.homeNews__inner {
  position: relative;
  margin-left: calc((100% - 1000px) / 2);
}
@media screen and (max-width: 750px) {
  .homeNews__inner {
    margin: 0;
  }
}

.homeNews__title {
  position: absolute;
  top: 0px;
  left: 0px;
  color: var(--color-magenta);
  font-size: 50px;
  letter-spacing: 0.2em;
  font-family: "STIX Two Text", serif;
}
@media screen and (max-width: 750px) {
  .homeNews__title {
    position: static;
    font-size: 30px;
  }
}

.homeNewsList__item {
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid #dcdddd;
}
@media screen and (min-width: 751px) {
  .homeNewsList__item:nth-child(1) {
    margin-left: 454px;
  }
  .homeNewsList__item:nth-child(2) {
    margin-left: 340px;
  }
  .homeNewsList__item:nth-child(3) {
    margin-left: 226px;
  }
  .homeNewsList__item:nth-child(4) {
    margin-left: 114px;
  }
}
.homeNewsList__time {
  display: block;
  color: var(--color-magenta);
  font-size: 13px;
  font-feature-settings: "palt";
  letter-spacing: 0.2em;
}

.homeNewsList__title {
  font-size: 16px;
  font-feature-settings: "palt";
  letter-spacing: 0.2em;
  margin-top: 10px;
}
.homeNewsList__title a {
  color: var(--color-light);
  text-decoration: none;
}

.homeNews__btn {
  margin-top: 55px;
  display: flex;
  justify-content: center;
}

.content-header {
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 750px) {
  .content-header {
    height: 240px;
  }
}

.content-header__title {
  font-feature-settings: "palt";
  letter-spacing: 0.3em;
  color: #fff;
  text-align: center;
}
.content-header__title .ja {
  display: block;
  font-size: 18px;
}
@media screen and (max-width: 750px) {
  .content-header__title .ja {
    font-size: 16px;
  }
}
.content-header__title .en {
  display: block;
  font-size: 40px;
}
@media screen and (max-width: 750px) {
  .content-header__title .en {
    font-size: 30px;
  }
}

.homeWorks__inner {
  padding: 80px 0 20px;
  background-color: var(--color-primary);
}
@media screen and (max-width: 750px) {
  .homeWorks__inner {
    padding: 48px 0 20px;
  }
}

.homeWorksList {
  max-width: 1366px;
  margin: 0 auto;
}

.homeWorksList__item {
  display: flex;
  justify-content: space-between;
}
.homeWorksList__item + .homeWorksList__item {
  margin-top: 80px;
}
@media screen and (min-width: 751px) {
  .homeWorksList__item.-reverse {
    flex-direction: row-reverse;
  }
  .homeWorksList__item.-reverse .homeWorksList__title {
    padding-left: calc(100% - 350px);
  }
  .homeWorksList__item.-reverse .homeWorksList__text {
    width: 100%;
    padding-left: calc(100% - 350px);
  }
  .homeWorksList__item.-reverse .homeWorksList__btn {
    padding-left: calc(100% - 350px);
  }
}
@media screen and (max-width: 750px) {
  .homeWorksList__item {
    flex-direction: column;
  }
}

.homeWorksList__thumb {
  width: 58.6%;
}
@media screen and (max-width: 750px) {
  .homeWorksList__thumb {
    width: 100%;
  }
}

.homeWorksList__info {
  width: 38.8%;
  color: var(--color-light);
}
@media screen and (max-width: 750px) {
  .homeWorksList__info {
    width: 100%;
    padding: 20px 15px;
  }
}

.homeWorksList__title {
  font-size: 30px;
  font-feature-settings: "palt";
  letter-spacing: 0.2em;
  padding-bottom: 10px;
  position: relative;
}
.homeWorksList__title:after {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background-color: var(--color-light);
}

.homeWorksList__text {
  width: 350px;
  font-size: 16px;
  line-height: 2.56;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  margin-top: 30px;
  text-align: justify;
}

.homeWorksList__btn {
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  .homeWorksList__btn {
    display: flex;
    justify-content: center;
  }
}

.contact {
  background: url(../img/mask_contact.png) no-repeat center top/2000px;
  position: relative;
  z-index: 2;
  padding-bottom: 90px;
  border-top: 60px solid var(--color-primary);
}
@media screen and (max-width: 750px) {
  .contact {
    border-style: none;
    background: var(--color-primary);
    padding: 70px 15px 40px;
  }
}
.contact:after {
  content: "";
  width: 100%;
  height: calc(100% - 750px);
  background-color: var(--color-primary);
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: -1;
}
@media screen and (max-width: 750px) {
  .contact:after {
    display: none;
  }
}

.contact__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.contact__title {
  font-size: 50px;
  color: var(--color-magenta);
  font-feature-settings: "palt";
  letter-spacing: 0.2em;
}
@media screen and (max-width: 750px) {
  .contact__title {
    font-size: 30px;
  }
}

.contact__read {
  font-size: 16px;
  line-height: 2.56;
  font-feature-settings: "palt";
  letter-spacing: 0.12em;
  margin-top: 20px;
  color: var(--color-light);
  max-width: 740px;
  text-align: justify;
}
@media screen and (max-width: 750px) {
  .contact__read {
    font-size: 16px;
  }
}

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

.contactFormBlock {
  display: flex;
  margin-bottom: 18px;
}
@media screen and (max-width: 750px) {
  .contactFormBlock {
    flex-direction: column;
    border-top: 1px solid #dcdddd;
    padding-top: 10px;
  }
}

.contactFormBlock__left {
  width: 212px;
  padding-top: 10px;
  position: relative;
  font-size: 14px;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  border-top: 1px solid #dcdddd;
  color: var(--color-light);
}
@media screen and (max-width: 750px) {
  .contactFormBlock__left {
    width: 100%;
    border-style: none;
    padding-top: 0;
  }
}

.contactFormBlock__right {
  width: calc(100% - 212px);
}
@media screen and (max-width: 750px) {
  .contactFormBlock__right {
    width: 100%;
    margin-top: 15px;
  }
}

.contactFormBlock .required {
  font-size: 12px;
  width: 58px;
  padding: 1px 0 1px 0.15em;
  text-align: center;
  display: inline-block;
  color: #fff;
  letter-spacing: 0.3em;
  border-radius: 50vh;
  background-color: var(--color-magenta);
  position: absolute;
  right: 4px;
  top: 10px;
}
@media screen and (max-width: 750px) {
  .contactFormBlock .required {
    right: 0;
    top: 0;
  }
}

.contactForm-text {
  width: 100%;
  height: 50px;
  padding: 0 0.5em;
  background-color: #dcdddd;
  border-style: none;
}

.contactForm-textarea {
  width: 100%;
  height: 150px;
  padding: 0.25em 0.5em;
  background-color: #dcdddd;
}

@media screen and (max-width: 750px) {
  .contactForm__btn {
    display: flex;
    justify-content: center;
  }
}

.contact .wpcf7-spinner {
  display: block;
  margin: 0 auto;
}

.privacy__text {
  font-size: 13px;
  line-height: 2;
  font-feature-settings: "palt";
  letter-spacing: 0.011em;
  text-align: justify;
  color: var(--color-light);
  margin-top: 20px;
}

.links__inner {
  padding: 40px 0 100px;
  background-color: var(--color-primary);
}
@media screen and (max-width: 750px) {
  .links__inner {
    padding: 30px 15px;
  }
}

.linksList {
  display: flex;
  justify-content: center;
  gap: 8px;
}
@media screen and (max-width: 750px) {
  .linksList {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4px 0;
  }
}

.linksList__item {
  width: 244px;
  margin-top: 30px;
}
@media screen and (max-width: 750px) {
  .linksList__item {
    width: 49%;
    margin: 0;
  }
}

.pageHero {
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
  border-bottom: 80px solid var(--color-primary);
}
@media screen and (max-width: 750px) {
  .pageHero {
    height: 310px;
    border-bottom-width: 70px;
  }
}

.pageHero__title {
  font-feature-settings: "palt";
  letter-spacing: 0.3em;
  color: #fff;
  text-align: center;
}
.pageHero__title .ja {
  display: block;
  font-size: 18px;
}
@media screen and (max-width: 750px) {
  .pageHero__title .ja {
    font-size: 16px;
  }
}
.pageHero__title .en {
  display: block;
  font-size: 40px;
}
@media screen and (max-width: 750px) {
  .pageHero__title .en {
    font-size: 35px;
  }
}
.pageHero__title .large {
  font-size: 40px;
}
@media screen and (max-width: 750px) {
  .pageHero__title .large {
    font-size: 35px;
  }
}

.company {
  padding: 80px 0 90px;
  background-color: #e9edef;
}
@media screen and (max-width: 750px) {
  .company {
    padding: 45px 15px;
  }
}

.company__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.companyList__item {
  display: flex;
  align-items: center;
}
.companyList__item + .companyList__item {
  margin-top: 10px;
}
@media screen and (max-width: 750px) {
  .companyList__item + .companyList__item {
    margin-top: 20px;
  }
}
@media screen and (max-width: 750px) {
  .companyList__item {
    display: block;
  }
}

.companyList__left {
  display: flex;
  width: 224px;
  height: 60px;
  align-items: center;
  justify-content: center;
  background-color: #76848c;
  color: #fff;
  font-size: 18px;
  font-feature-settings: "palt";
  letter-spacing: 0.2em;
}
@media screen and (max-width: 750px) {
  .companyList__left {
    width: 100%;
  }
}

.companyList__right {
  flex: 1;
  margin-left: 18px;
  font-size: 18px;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media screen and (max-width: 750px) {
  .companyList__right {
    margin: 10px 0 0;
  }
}

.companyMap {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .companyMap {
    margin-top: 40px;
    flex-direction: column;
    gap: 20px;
  }
}

.companyMap__item {
  width: 49.4%;
}
@media screen and (max-width: 750px) {
  .companyMap__item {
    width: 100%;
  }
}

.companyMap__title {
  font-size: 16px;
  line-height: 2.2;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
@media screen and (max-width: 750px) {
  .companyMap__title {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
  }
}

.companyMap__frame iframe {
  width: 100%;
  height: 328px;
}
@media screen and (max-width: 750px) {
  .companyMap__frame iframe {
    height: 240px;
  }
}

.works__inner {
  padding: 80px 0 0;
  background-color: #e9edef;
}
@media screen and (max-width: 750px) {
  .works__inner {
    padding: 45px 0 0;
  }
}

.worksList {
  max-width: 1366px;
  margin: 0 auto;
}

.worksList__item {
  display: flex;
  justify-content: space-between;
}
.worksList__item + .worksList__item {
  margin-top: 80px;
}
@media screen and (min-width: 751px) {
  .worksList__item.-reverse {
    flex-direction: row-reverse;
  }
  .worksList__item.-reverse .worksList__title {
    padding-left: calc(100% - 350px);
  }
  .worksList__item.-reverse .worksList__text {
    width: 100%;
    padding-left: calc(100% - 350px);
  }
  .worksList__item.-reverse .worksList__btn {
    padding-left: calc(100% - 350px);
  }
}
@media screen and (max-width: 750px) {
  .worksList__item {
    flex-direction: column;
  }
}

.worksList__thumb {
  width: 58.6%;
}
@media screen and (max-width: 750px) {
  .worksList__thumb {
    width: 100%;
  }
}

.worksList__info {
  width: 38.8%;
  color: var(--color);
}
@media screen and (max-width: 750px) {
  .worksList__info {
    width: 100%;
    padding: 20px 15px;
  }
}

.worksList__title {
  font-size: 30px;
  font-feature-settings: "palt";
  letter-spacing: 0.2em;
  padding-bottom: 10px;
  position: relative;
}
.worksList__title:after {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background-color: var(--color);
}
@media screen and (max-width: 750px) {
  .worksList__title {
    font-size: 20px;
  }
}

.worksList__text {
  width: 350px;
  font-size: 16px;
  line-height: 2.56;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  margin-top: 30px;
  text-align: justify;
}

.worksList__btn {
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  .worksList__btn {
    display: flex;
    justify-content: center;
  }
}

.worksOther {
  padding: 64px 0 80px;
  background-color: #e9ecee;
}
@media screen and (max-width: 750px) {
  .worksOther {
    padding: 40px 15px 45px;
  }
}

.worksOtherList {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.worksOtherList__item {
  width: calc((100% - 30px) / 3);
  height: 505px;
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .worksOtherList__item {
    width: 100%;
    height: auto;
  }
}

.worksOtherList__title {
  font-size: 24px;
  font-feature-settings: "palt";
  text-align: center;
}

.worksOtherList__text {
  padding: 10px 15px 0;
  font-size: 16px;
  line-height: 2.2;
  font-feature-settings: "palt";
  text-align: justify;
}
@media screen and (max-width: 750px) {
  .worksOtherList__text {
    padding: 10px 15px 30px;
  }
}

.newsArchives {
  padding: 80px 0 90px;
  background-color: #e9edef;
}
@media screen and (max-width: 750px) {
  .newsArchives {
    padding: 45px 15px 45px;
  }
}

.newsArchives__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.newsList {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
@media screen and (max-width: 750px) {
  .newsList {
    gap: 20px;
  }
}

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

.newsList__thumb img {
  width: 100%;
  aspect-ratio: 300/216;
  -o-object-fit: cover;
     object-fit: cover;
}

.newsList__date {
  margin-top: 12px;
  display: block;
  font-size: 13px;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  color: var(--color-magenta);
}

.newsList__title {
  font-size: 16px;
  line-height: 2.2;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  margin-top: 8px;
}

.newsSingle {
  padding: 80px 0 90px;
  background-color: #e9edef;
}
@media screen and (max-width: 750px) {
  .newsSingle {
    padding: 45px 15px 45px;
  }
}

.newsSingle__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.newsSingle__date {
  display: block;
  font-size: 13px;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  color: var(--color-magenta);
}

.newsSingle__title {
  font-size: 25px;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  margin-top: 12px;
}

.newsContent {
  margin-top: 30px;
}

.property {
  padding: 80px 0 90px;
  background-color: #e9edef;
}
@media screen and (max-width: 750px) {
  .property {
    padding: 45px 15px 45px;
  }
}

.property__inner {
  max-width: 1000px;
  margin: 0 auto;
}

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

.propertyList__item {
  width: 100%;
  display: flex;
  text-decoration: none;
  background-color: #4a5960;
  color: var(--color);
}
@media screen and (max-width: 750px) {
  .propertyList__item {
    flex-direction: column;
  }
}

.propertyList__thumb {
  width: 60%;
  position: relative;
}
@media screen and (max-width: 750px) {
  .propertyList__thumb {
    width: 100%;
  }
}
.propertyList__thumb img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 750px) {
  .propertyList__thumb img {
    height: 230px;
  }
}
.propertyList__thumb .pickup {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 144px;
}
.propertyList__thumb .pickup img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 750px){
  .propertyList__thumb .pickup {
    position: absolute;
    width: 100px;
  }
  .propertyList__thumb .pickup {
    height: auto;
  }
}

.propertyList__info {
  width: 40%;
  padding: 30px 30px 0;
}
@media screen and (max-width: 750px) {
  .propertyList__info {
    width: 100%;
    padding: 30px 10px;
  }
}

.propertyList__head {
  display: flex;
  border-radius: 50vh;
  overflow: hidden;
  margin-bottom: 14px;
}

.propertyList__cat {
  width: 138px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-color: #1f2c33;
  font-size: 20px;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
  .propertyList__cat {
    height: 38px;
    font-size: 19px;
  }
}

.propertyList__num {
  flex: 1;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #fff;
  font-size: 20px;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
  .propertyList__num {
    height: 38px;
    font-size: 19px;
  }
}

.propertyList__icon {
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #1f2c33;
  font-size: 20px;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  border-radius: 50vh;
}
@media screen and (max-width: 750px) {
  .propertyList__icon {
    height: 38px;
    font-size: 19px;
  }
}

.propertyList__date {
  font-size: 20px;
  font-feature-settings: "palt";
  letter-spacing: 0.2em;
  color: #dddccf;
}

.propertyList__name {
  font-size: 20px;
  font-feature-settings: "palt";
  letter-spacing: 0.2em;
  margin-top: 20px;
  margin-top: 5px;
  color: #dddccf;
}

.propertyList__price {
  font-size: 20px;
  font-feature-settings: "palt";
  letter-spacing: 0.2em;
  margin-top: 20px;
  margin-top: 5px;
  color: var(--color-magenta);
}

.propertyList__complete {
  font-size: 20px;
  font-feature-settings: "palt";
  letter-spacing: 0.2em;
  margin-top: 20px;
  margin-top: 5px;
  color: var(--color-magenta);
}

.propertyList__area {
  font-size: 20px;
  font-feature-settings: "palt";
  letter-spacing: 0.2em;
  margin-top: 20px;
  margin-top: 5px;
  color: #fff;
}

.propertySingle {
  padding: 80px 0 90px;
  background-color: #e9edef;
}
@media screen and (max-width: 750px) {
  .propertySingle {
    padding: 45px 15px 45px;
  }
}

.propertySingle__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.propertySingle__top {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .propertySingle__top {
    flex-direction: column;
  }
}

.propertySingle__info {
  width: 35%;
}
@media screen and (max-width: 750px) {
  .propertySingle__info {
    width: 100%;
  }
}

.propertySingle__head {
  display: flex;
  border-radius: 50vh;
  overflow: hidden;
  margin-bottom: 14px;
}

.propertySingle__cat {
  width: 138px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-color: #1f2c33;
  font-size: 20px;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
  .propertySingle__cat {
    height: 38px;
    font-size: 19px;
  }
}

.propertySingle__num {
  flex: 1;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #fff;
  font-size: 20px;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
  .propertySingle__num {
    height: 38px;
    font-size: 19px;
  }
}

.propertySingle__icon {
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #1f2c33;
  font-size: 20px;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  border-radius: 50vh;
  margin-bottom: 20px;
}
@media screen and (max-width: 750px) {
  .propertySingle__icon {
    height: 38px;
    font-size: 19px;
  }
}

.propertySingle__date {
  font-size: 20px;
  font-feature-settings: "palt";
  letter-spacing: 0.2em;
}

.propertySingle__name {
  font-size: 20px;
  font-feature-settings: "palt";
  letter-spacing: 0.2em;
  margin-top: 20px;
  margin-top: 5px;
}

.propertySingle__price {
  font-size: 20px;
  font-feature-settings: "palt";
  letter-spacing: 0.2em;
  margin-top: 20px;
  margin-top: 5px;
  color: var(--color-magenta);
}

.propertySingle__complete {
  font-size: 20px;
  font-feature-settings: "palt";
  letter-spacing: 0.2em;
  margin-top: 20px;
  margin-top: 5px;
  color: var(--color-magenta);
}

.propertySingle__area {
  font-size: 20px;
  font-feature-settings: "palt";
  letter-spacing: 0.2em;
  margin-top: 20px;
  margin-top: 5px;
}

.propertySingle__map {
  width: 60%;
}
@media screen and (max-width: 750px) {
  .propertySingle__map {
    width: 100%;
    margin-top: 30px;
  }
}
.propertySingle__map iframe {
  width: 100%;
  height: 320px;
}
@media screen and (max-width: 750px) {
  .propertySingle__map iframe {
    height: 184px;
  }
}

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

.propertyContentList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 0;
}
@media screen and (max-width: 750px) {
  .propertyContentList {
    flex-direction: column;
    gap: 20px;
  }
}

.propertyContentList__item {
  width: 49%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .propertyContentList__item {
    width: 100%;
    display: block;
  }
}
.propertyContentList__item dt {
  width: 224px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  line-height: 1.2;
  font-size: 18px;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #76848c;
}
@media screen and (max-width: 750px) {
  .propertyContentList__item dt {
    width: 100%;
  }
}
.propertyContentList__item dd {
  flex: 1;
  margin-left: 15px;
  font-size: 18px;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  line-height: 1.2;
}
@media screen and (max-width: 750px) {
  .propertyContentList__item dd {
    margin: 10px 0 0;
  }
}

.propertyContent__comment {
  margin-top: 30px;
  font-size: 16px;
  line-height: 2.56;
  text-align: justify;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .propertyContent__comment {
    margin-top: 40px;
  }
}

.propertySlider {
  margin-top: 40px;
}

.propertySliderMain .slick-next {
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: url(../img/next_slide.svg);
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .propertySliderMain .slick-next {
    width: 24px;
    height: 24px;
    right: -12px;
  }
}
.propertySliderMain .slick-prev {
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: url(../img/prev_slide.svg);
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .propertySliderMain .slick-prev {
    width: 24px;
    height: 24px;
    left: -12px;
  }
}
.propertySliderMain .item img {
  max-width: 100%;
  max-height: 670px;
  width: auto;
  height: auto;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 750px){
  .propertySliderMain .item img {
    max-height: 60vw;
  }
}

.propertySliderSub {
  margin-top: 30px;
}
@media screen and (max-width: 750px) {
  .propertySliderSub {
    margin-top: 15px;
  }
}
.propertySliderSub .item img {
  aspect-ratio: 200/133;
  -o-object-fit: cover;
     object-fit: cover;
}