@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Old+Mincho&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hind+Madurai:wght@300;400;500;600;700&display=swap");
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

ul,
ol,
li {
  list-style: none;
}

a {
  text-decoration: none;
}

button {
  margin: 0px;
  padding: 0px;
}

body {
  position: relative;
  width: 100%;
  height: 100vh;
  font-family: "Noto Serif JP", serif;
  color: #3b3b3b;
  font-weight: 400;
}

.inner {
  padding: 48px 24px 64px;
}

.title {
  display: flex;
  flex-direction: column;
  font-size: 48px;
  font-family: "Bitter", "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.08em;
  padding-top: 32px;
  padding-bottom: 32px;
  position: relative;
  z-index: 2;
}
.title span {
  font-family: "Noto Serif JP";
  font-size: 16px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.08em;
}

.bg__svg {
  position: absolute;
  top: 48px;
  right: 0;
  width: 228px;
  height: 112px;
  z-index: 1;
}
@media (max-width: 425px) {
  .bg__svg {
    width: 180px;
    height: auto;
  }
}

.white {
  background: #fff;
}

.gray {
  background: #F4F4F4;
}

.wrap {
  position: relative;
}
.wrap::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(./img/wrap-bg.png);
  background-size: cover;
}
.wrap__decoration {
  position: fixed;
  bottom: 0;
  left: 0;
  width: calc(100% - (480px + (100% - (1010px + 10%)) / 2));
  z-index: 1;
  pointer-events: none;
}
.wrap__decoration img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 1200px) {
  .wrap__decoration {
    width: calc(100% - (480px + (100% - (950px + 5%)) / 2));
  }
}
@media (max-width: 1024px) {
  .wrap__decoration {
    display: none;
  }
}
@media (max-width: 480px) {
  .wrap::before {
    display: none;
  }
}

.header {
  position: fixed;
  top: 16%;
  left: calc((100% - (1010px + 10%)) / 2);
  width: 530px;
  z-index: 100;
}
.header__inner {
  display: flex;
  flex-direction: column;
}
.header__inner__nav {
  width: 100%;
  height: 258px;
  background: #f4f4f4;
  padding: 40px 60px;
  border: 1px solid #3b3b3b;
  margin-bottom: 24px;
}
.header__inner__nav__logo {
  width: 108px;
  height: auto;
  text-align: center;
  margin: 0 auto;
}
.header__inner__nav__logo img {
  width: 100%;
  height: auto;
  display: block;
}
.header__inner__nav__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.header__inner__nav__links__item {
  border-bottom: 1px solid #fff;
}
.header__inner__nav__links__item:hover a {
  color: #3b3b3b;
  font-weight: 700;
}
.header__inner__nav__links__item.active a {
  color: #3b3b3b;
  font-weight: 700;
  position: relative;
}
.header__inner__nav__links__item.active a::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #E01515;
  border-radius: 50%;
  z-index: 10;
}
.header__inner__nav__links__item a {
  display: block;
  color: #8C8C8C;
  font-size: 14px;
  line-height: 185.714%;
  letter-spacing: 0.08em;
  padding: 8px 14px 8px;
  transition: all 0.3s ease;
  position: relative;
}
.header__inner__cta {
  position: relative;
  background-image: url(./img/cta-bg.png);
  background-size: cover;
  width: 100%;
  height: 287px;
}
.header__inner__cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  padding: 32px 30px;
}
.header__inner__cta__inner__title {
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 185.714%;
  letter-spacing: 0.08em;
  padding-bottom: 4px;
  border-bottom: 1px solid #fff;
}
.header__inner__cta__inner img {
  width: 100%;
  height: auto;
  padding: 16px 0;
}
.header__inner__cta__inner__button {
  background: #E01515;
  font-size: 14px;
  font-weight: 500;
  line-height: 185.714%;
  letter-spacing: 0.08em;
  padding: 10px 32px;
  border-radius: 30px;
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}
.header__inner__cta__inner__button:hover {
  background: #fff;
  color: #E01515;
  gap: 20px;
  padding-right: 24px;
}
.header__inner__cta__inner__button:hover:after {
  background: #E01515;
}
@media (max-width: 480px) {
  .header__inner__cta__inner__button:hover {
    background: #E01515;
    color: #fff;
    gap: 12px;
    padding-right: 32px;
  }
  .header__inner__cta__inner__button:hover:after {
    background: #fff;
  }
}
.header__inner__cta__inner__button:after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 1px;
  background: #fff;
}
.header__inner__cta__inner__notice {
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: 8px;
  font-weight: 500;
  line-height: 187.5%;
  letter-spacing: 0.08em;
  margin-top: 8px;
}
.header__sp {
  display: none;
}
@media (max-width: 1200px) {
  .header {
    width: 450px;
    left: calc((100% - (950px + 5%)) / 2);
  }
  .header__inner__nav {
    height: 226px;
    padding: 24px 30px;
  }
}
@media (max-width: 1024px) {
  .header {
    position: fixed;
    top: 0;
    left: calc((100% - 480px) / 2);
    width: 480px;
    height: 56px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .header__inner {
    display: none;
  }
  .header__sp {
    display: block;
  }
  .header__sp__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 20px;
  }
  .header__sp__inner__logo img {
    height: 36px;
    width: auto;
  }
  .header__sp__inner__hamburger {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
  }
  .header__sp__inner__hamburger__text {
    font-size: 14px;
    color: #333;
  }
  .header__sp__inner__hamburger__icon {
    width: 30px;
    height: 20px;
    position: relative;
  }
  .header__sp__inner__hamburger__icon span {
    display: block;
    width: 100%;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    transform-origin: center;
  }
  .header__sp__inner__hamburger__icon.active span:nth-child(1) {
    transform: rotate(-45deg) translate(0, 8px);
  }
  .header__sp__inner__hamburger__icon.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .header__sp__inner__hamburger__icon.active span:nth-child(3) {
    transform: rotate(45deg) translate(0, -8px);
  }
  .header__sp__inner__nav {
    position: fixed;
    top: 60px;
    left: calc((100% - 480px) / 2);
    width: 480px;
    height: calc(100vh - 60px);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 90;
  }
  .header__sp__inner__nav.active {
    opacity: 1;
    visibility: visible;
  }
  .header__sp__inner__nav__links {
    width: 232px;
    padding: 48px 40px;
    border: 1px solid #3b3b3b;
    margin: 107px auto 164px;
    background: #f4f4f4;
  }
  .header__sp__inner__nav__links__item {
    border-bottom: 1px solid #fff;
    padding: 8px 14px;
  }
  .header__sp__inner__nav__links__item a {
    display: block;
    width: 100%;
    color: #3b3b3b;
    font-size: 14px;
    line-height: 185.714%;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .header__sp__inner__nav__links__item a:hover {
    color: #3b3b3b;
  }
  .header__sp__inner__nav__links__item:hover a {
    color: #3b3b3b;
    font-weight: 700;
  }
  .header__sp__inner__nav__links__item.active a {
    color: #3b3b3b;
    font-weight: 700;
  }
  .header__sp__cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: space-between;
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1024px) and (min-width: 481px) {
  .header__sp__cta {
    display: none !important;
  }
}
@media (max-width: 1024px) and (max-width: 480px) {
  .header__sp__cta {
    display: flex;
  }
}
@media (max-width: 1024px) {
  .header__sp__cta__phone, .header__sp__cta__access {
    background: #3b3b3b;
    border: 1px solid #fff;
    color: #fff;
    height: 70px;
  }
  .header__sp__cta__phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 30%;
    padding: 11px 9px;
    font-size: 12px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
  }
  .header__sp__cta__phone img {
    width: 25px;
    height: 25px;
  }
  .header__sp__cta__access {
    position: relative;
    text-align: center;
    color: #fff;
    width: 69%;
    padding: 8px 20px;
  }
  .header__sp__cta__access__title {
    font-size: 8px;
    font-weight: 500;
    line-height: 175%;
    letter-spacing: 0.08em;
    border-bottom: 1px solid #fff;
  }
  .header__sp__cta__access__text {
    font-size: 12px;
    font-weight: 500;
    line-height: 150%;
    margin-top: 3px;
    margin-bottom: 4px;
  }
  .header__sp__cta__access__text span {
    color: #f3d225;
  }
  .header__sp__cta__access__btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #E01515;
    color: #fff;
    padding: 2px 15px;
    border-radius: 30px;
    font-size: 8px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto 8px;
  }
  .header__sp__cta__access__btn:after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 1px;
    background: #fff;
  }
  .header__sp__cta__access__btn:hover {
    background: #fff;
    color: #E01515;
    gap: 12px;
  }
  .header__sp__cta__access__btn:hover:after {
    background: #E01515;
  }
  .header__sp__cta__access__notice {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 6px;
    line-height: 100%;
    letter-spacing: -0.02em;
  }
}
@media (max-width: 480px) {
  .header {
    width: 100%;
    left: 0;
  }
  .header__sp__inner__nav {
    width: 100%;
    left: 0;
  }
  .header__sp__cta {
    display: flex;
  }
}

main {
  position: absolute;
  right: calc((100% - (1010px + 10%)) / 2);
  width: 480px;
  color: #3b3b3b;
  overflow: hidden;
}
main .section__fv {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
main .section__fv__slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
main .section__fv__slider__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
main .section__fv__slider__item.active {
  opacity: 1;
}
@media (max-width: 480px) {
  main .section__fv__slider__item:nth-child(1) {
    background-image: url(./img/sp-fv-bg1.png) !important;
  }
}
@media (max-width: 480px) {
  main .section__fv__slider__item:nth-child(2) {
    background-image: url(./img/sp-fv-bg2.png) !important;
  }
}
@media (max-width: 480px) {
  main .section__fv__slider__item:nth-child(3) {
    background-image: url(./img/sp-fv-bg3.png) !important;
  }
}
main .section__fv__inner {
  position: relative;
  z-index: 10;
  color: #fff;
  text-shadow: 0 2px 4px rgba(26, 26, 26, 0.5);
  padding-top: 164px;
}
main .section__fv__inner__title {
  font-size: 40px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.08em;
  margin-left: 24px;
}
main .section__fv__inner__text {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  margin-left: 19px;
}
main .section__fv__inner__line {
  width: 346px;
  height: 1px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(26, 26, 26, 0.5);
  margin-top: 16px;
}
main .section__fv__inner__date {
  font-size: 16px;
  line-height: 162.5%;
  letter-spacing: 0.08em;
  margin-top: 36px;
  margin-right: 44px;
  margin-left: 24px;
}
main .section__fv__inner__date p {
  text-align: end;
  font-size: 24px;
  font-weight: 500;
  line-height: 125%;
  letter-spacing: 0.08em;
}
@media (max-width: 480px) {
  main .section__fv__inner {
    display: flex;
    flex-direction: column;
    padding-top: 120px;
  }
  main .section__fv__inner__title {
    order: 1;
  }
  main .section__fv__inner__line {
    order: 2;
  }
  main .section__fv__inner__text {
    order: 4;
  }
  main .section__fv__inner__date {
    order: 3;
    margin-top: 16px;
  }
}
@media (max-width: 425px) {
  main .section__fv__inner__title {
    font-size: 32px;
  }
  main .section__fv__inner__line {
    width: 288px;
  }
}
main .section__concept {
  position: relative;
}
main .section__concept__inner {
  padding: 80px 0 64px 24px;
  position: relative;
}
main .section__concept__inner__bg {
  position: absolute;
  top: 48px;
  right: -35px;
  width: 339px;
  height: 133px;
  z-index: 1;
}
@media (max-width: 425px) {
  main .section__concept__inner__bg {
    top: 60px;
    width: 288px;
    height: auto;
  }
}
main .section__concept__inner__img {
  width: 100%;
  height: auto;
}
main .section__concept__inner__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.08em;
  margin-top: 16px;
  margin-right: 24px;
}
main .section__concept__inner__text {
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 0.08em;
  margin-top: 16px;
  margin-right: 24px;
}
@media (max-width: 425px) {
  main .section__concept__inner__text {
    font-size: 14px;
  }
}
main .section__cta {
  background-image: url(./img/cta-bg.png);
  background-size: cover;
}
main .section__cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  padding: 32px 24px 24px;
}
main .section__cta__inner.dush {
  padding-bottom: 24px;
}
main .section__cta__inner__title {
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 185.714%;
  letter-spacing: 0.08em;
  padding-bottom: 4px;
  border-bottom: 1px solid #fff;
  height: 28px;
}
main .section__cta__inner img {
  width: 100%;
  height: auto;
  padding: 16px 15px 18px;
}
main .section__cta__inner__button {
  background: #E01515;
  font-size: 14px;
  font-weight: 500;
  line-height: 185.714%;
  letter-spacing: 0.08em;
  padding: 10px 32px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}
main .section__cta__inner__button:hover {
  background: #fff;
  color: #E01515;
  gap: 20px;
  padding-right: 24px;
}
main .section__cta__inner__button:hover:after {
  background: #E01515;
}
@media (max-width: 480px) {
  main .section__cta__inner__button:hover {
    background: #E01515;
    color: #fff;
    gap: 12px;
    padding-right: 32px;
  }
  main .section__cta__inner__button:hover:after {
    background: #fff;
  }
}
main .section__cta__inner__button:after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 1px;
  background: #fff;
}
main .section__cta__inner__notice {
  font-size: 8px;
  font-weight: 500;
  line-height: 187.5%;
  letter-spacing: 0.08em;
  margin-top: 8px;
}
main .section__cta__inner__text {
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.08em;
  padding: 16px;
  border: 1px solid #fff;
  margin-top: 16px;
  height: 116px;
  overflow-y: auto;
}
main .section__cta__inner__text::-webkit-scrollbar {
  width: 4px;
}
main .section__cta__inner__text::-webkit-scrollbar-track {
  background: transparent;
}
main .section__cta__inner__text::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 2px;
  min-height: 40px;
}
main .section__cta__inner__text::-webkit-scrollbar-thumb:hover {
  background: #f0f0f0;
}
@media (max-width: 425px) {
  main .section__cta__inner__text {
    font-size: 12px;
  }
}
main .section__modelhouse {
  position: relative;
}
main .section__modelhouse__inner {
  padding-top: 48px;
}
main .section__modelhouse__inner__title {
  padding-left: 24px;
}
main .section__modelhouse__inner__text {
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 0.08em;
  padding: 0 24px;
  margin-bottom: 40px;
}
main .section__modelhouse__inner__contents__tabs {
  display: flex;
  justify-content: center;
}
main .section__modelhouse__inner__contents__tabs__tab {
  background: #fff;
  border-top: 1px solid #3b3b3b;
  border-left: 1px solid #3b3b3b;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.3s ease;
}
main .section__modelhouse__inner__contents__tabs__tab.active {
  background: #3b3b3b;
  color: #fff;
  border-color: #3b3b3b;
}
main .section__modelhouse__inner__contents__tabs__tab:last-child {
  border-right: 1px solid #3b3b3b;
}
main .section__modelhouse__inner__contents__item {
  padding: 40px 24px 32px;
  border-top: 1px solid #3b3b3b;
  border-bottom: 1px solid #3b3b3b;
}
main .section__modelhouse__inner__contents__item__img {
  width: 100%;
  height: auto;
  padding-bottom: 24px;
}
main .section__modelhouse__inner__contents__item__img img {
  width: 100%;
  height: auto;
}
main .section__modelhouse__inner__contents__item__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
main .section__modelhouse__inner__contents__item__text {
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 0.08em;
}
@media (max-width: 425px) {
  main .section__modelhouse__inner__contents__tabs__tab {
    padding: 14px 24px;
    font-size: 14px;
  }
}
main .section__plan {
  position: relative;
}
main .section__plan__inner__plan-info {
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 0.08em;
  padding: 40px 48px;
}
main .section__plan__inner__floor-plan {
  position: relative;
  margin: 40px 48px 24px;
}
main .section__plan__inner__floor-plan__img {
  width: 100%;
  height: auto;
}
main .section__plan__inner__floor-plan__tabs__tab {
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}
main .section__plan__inner__floor-plan__tabs__tab img {
  width: 100%;
  height: 100%;
}
main .section__plan__inner__contents__item {
  padding: 32px 24px;
}
main .section__plan__inner__contents__item__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.08em;
  padding-top: 5px;
  padding-bottom: 5px;
}
main .section__plan__inner__contents__item__title img {
  width: 40px;
  height: 40px;
}
main .section__plan__inner__contents__item__img {
  width: 100%;
  height: auto;
  margin-top: 16px;
  margin-bottom: 16px;
}
main .section__plan__inner__contents__item__img img {
  width: 100%;
  height: auto;
}
main .section__plan__inner__contents__item__text {
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 0.08em;
}
@media (max-width: 425px) {
  main .section__plan__inner__contents__item__title {
    font-size: 18px;
  }
  main .section__plan__inner__contents__item__text {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  main .section__plan__inner__plan-info {
    padding: 40px 24px;
  }
}
@media (max-width: 425px) {
  main .section__plan__inner__plan-info {
    font-size: 13px;
    padding: 40px 20px;
  }
  main .section__plan__inner__floor-plan {
    margin: 40px 24px 24px;
  }
  main .section__plan__inner__floor-plan__tabs__tab {
    width: 32px;
    height: 32px;
  }
}
main .section__access {
  position: relative;
}
main .section__access__inner__map {
  width: 100%;
}
main .section__access__inner__map iframe {
  width: 100%;
  height: 243px;
}
main .section__access__inner__info__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.08em;
  padding-top: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid #3b3b3b;
}
main .section__access__inner__info__list {
  margin: 16px 0;
}
main .section__access__inner__info__list__item {
  font-size: 14px;
  line-height: 185.714%;
  letter-spacing: 0.08em;
}
main .section__access__inner__info__notice {
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.08em;
}
main .section__works {
  position: relative;
}
main .section__works__slider {
  margin: 32px 0;
}
main .section__works__slider .main-swiper {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}
main .section__works__slider .main-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
main .section__works__slider .main-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
main .section__works__slider .main-swiper .swiper-button-next,
main .section__works__slider .main-swiper .swiper-button-prev {
  color: #FFFFFF;
  background: #3B3B3B;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
main .section__works__slider .main-swiper .swiper-button-next:hover,
main .section__works__slider .main-swiper .swiper-button-prev:hover {
  background: #fff;
  color: #3B3B3B;
  transform: scale(1.1);
}
main .section__works__slider .main-swiper .swiper-button-next:after,
main .section__works__slider .main-swiper .swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
}
main .section__works__slider .main-swiper .swiper-button-next {
  right: 10px;
}
main .section__works__slider .main-swiper .swiper-button-prev {
  left: 10px;
}
main .section__works__slider .thumbnail-swiper {
  width: 100%;
  height: auto;
}
main .section__works__slider .thumbnail-swiper .swiper-slide {
  width: calc((100% - 12px) / 4);
  height: auto;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
main .section__works__slider .thumbnail-swiper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
main .section__works__slider .thumbnail-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
main .section__form {
  position: relative;
}
main .section__form__inner__form {
  width: 100%;
}
main .section__form__inner__form .form-common__inner--cnt .clearfix {
  margin-bottom: 24px;
}
main .section__form__inner__form .form-common__inner--cnt--left {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-direction: row-reverse;
  font-size: 16px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 1.28px;
  margin-bottom: 8px;
}
main .section__form__inner__form .form-common__inner--cnt--left .form-common__inner--label {
  background: #c2c2c2;
  color: #fff;
  padding: 3px 21px;
}
main .section__form__inner__form .form-common__inner--cnt--left .form-common__inner--label.label-required {
  background: #3B3B3B;
}
main .section__form__inner__form .form-common__inner--cnt--right {
  margin-bottom: 8px;
}
main .section__form__inner__form .form-common__inner--cnt--right input {
  color: #3b3b3b;
  font-size: 14px;
  line-height: 185.714%;
  letter-spacing: 0.08em;
  padding: 8px 16px;
}
main .section__form__inner__form .form-common__inner--cnt--right input::-moz-placeholder {
  color: #c0c0c0;
}
main .section__form__inner__form .form-common__inner--cnt--right input::placeholder {
  color: #c0c0c0;
}
main .section__form__inner__form .form-common__inner--cnt--mail {
  font-size: 13px;
  line-height: 185.714%;
  letter-spacing: 0.08em;
}
main .section__form__inner__form .form-common__inner--privacy--text {
  background: #fff;
  height: 200px;
  overflow-y: auto;
  font-size: 14px;
  line-height: 185.714%;
  letter-spacing: 0.08em;
  padding: 16px;
  margin-bottom: 24px;
}
main .section__form__inner__form .form-common__inner--privacy--check {
  text-align: center;
  margin-bottom: 24px;
}
main .section__form__inner__form .form-common__inner--privacy--check input[type=checkbox] {
  margin-right: 16px;
}
main .section__form__inner__form .form-common__inner--privacy--check span {
  font-size: 14px;
  line-height: 171.429%;
  letter-spacing: 0.05em;
  color: #3b3b3b;
}
main .section__form__inner__form .form-common__inner--btn {
  text-align: center;
  margin: 0 16px;
}
main .section__form__inner__form .form-common__inner--btn .form_btn01 {
  width: 100%;
  display: block;
  background: #3b3b3b;
  color: #fff;
  border: none;
  padding: 16px 18px;
  border-radius: 30px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 500;
  line-height: 162.5%;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
}
main .section__form__inner__form .form-common__inner--btn .form_btn01:hover {
  background: #fff;
  color: #3b3b3b;
  transform: translateY(-2px);
}
main .section__form__inner__form .form-common__inner--btn .form_btn01:active {
  transform: translateY(0);
}
main .section__form__inner__form .wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-form-control {
  width: 100%;
  font-size: 14px;
  line-height: 1.5;
}
main .section__form__inner__form .wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-form-control:focus {
  outline: none;
  border-color: #E01515;
  box-shadow: 0 0 0 2px rgba(224, 21, 21, 0.1);
}
main .section__form__inner__form .wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-text {
  background: #fff;
}
main .section__form__inner__form .wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-textarea {
  background: #fff;
  height: 140px;
  overflow-y: auto;
  padding: 8px 16px;
}
main .section__form__inner__form .wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-not-valid {
  border-color: #dc3545;
}
main .section__form__inner__form .wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  display: none;
}
main .section__form__inner__form .wpcf7 .wpcf7-form .wpcf7-response-output {
  margin-top: 16px;
  padding: 12px;
  border-radius: 4px;
}
main .section__form__inner__form .wpcf7 .wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
main .section__form__inner__form .wpcf7 .wpcf7-form .wpcf7-response-output.wpcf7-validation-errors {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
main .section__reason {
  position: relative;
}
main .section__reason__inner {
  padding-top: 48px;
}
main .section__reason__inner__title {
  padding-left: 24px;
}
main .section__reason__inner__contents__tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}
main .section__reason__inner__contents__tabs__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #f4f4f4;
  color: #3b3b3b;
  width: 122px;
  height: 103px;
  border: 1px solid #3b3b3b;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.08em;
}
main .section__reason__inner__contents__tabs__tab p {
  text-align: center;
  padding-bottom: 8px;
}
main .section__reason__inner__contents__tabs__tab svg path {
  stroke: #3b3b3b;
}
main .section__reason__inner__contents__tabs__tab.active {
  background: #E01515;
  color: #fff;
}
main .section__reason__inner__contents__tabs__tab.active svg path {
  stroke: #fff;
}
main .section__reason__inner__contents__item {
  padding: 40px;
  color: #fff;
  background-size: cover;
}
main .section__reason__inner__contents__item__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.08em;
  padding-bottom: 8px;
  border-bottom: 1px solid #fff;
}
main .section__reason__inner__contents__item__text {
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 0.08em;
  margin-top: 16px;
}
@media (max-width: 425px) {
  main .section__reason__inner__contents__item {
    padding: 32px;
  }
  main .section__reason__inner__contents__item__title {
    font-size: 18px;
  }
  main .section__reason__inner__contents__item__text {
    font-size: 14px;
  }
}
@media (max-width: 425px) {
  main .section__reason__inner__contents__tabs__tab {
    width: 100px;
    height: 93px;
    font-size: 14px;
  }
}
main .section__company {
  position: relative;
}
main .section__company__inner__lists {
  border-top: 1px solid #3b3b3b;
}
main .section__company__inner__lists__item {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 16px;
  padding: 24px;
  border-bottom: 1px solid #3b3b3b;
}
main .section__company__inner__lists__item__title, main .section__company__inner__lists__item__text {
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 0.08em;
}
main .section__company__inner__lists__item__title {
  font-weight: 500;
}
@media (max-width: 425px) {
  main .section__company__inner__lists__item {
    gap: 12px;
    padding: 18px;
  }
  main .section__company__inner__lists__item__title, main .section__company__inner__lists__item__text {
    font-size: 14px;
  }
}
main .section__company__inner__character {
  position: absolute;
  top: -48px;
  right: 24px;
  width: 120px;
  height: auto;
  z-index: 3;
}
main .section__company__inner__character img {
  width: 100%;
  height: auto;
}
@media (max-width: 425px) {
  main .section__company__inner__lists__item {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  main .section__company__inner__character {
    width: 98px;
    top: -36px;
    right: 12px;
  }
}
main .footer {
  position: relative;
}
main .footer__inner {
  padding: 48px 76px 90px;
}
main .footer__inner__logo {
  width: 103px;
  height: auto;
  text-align: center;
  margin: 0 auto;
}
main .footer__inner__logo img {
  width: 100%;
  height: auto;
}
main .footer__inner__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  -moz-column-gap: 24px;
       column-gap: 24px;
  margin-top: 24px;
}
main .footer__inner__links__item {
  border-bottom: 1px solid #fff;
}
main .footer__inner__links__item a {
  display: block;
  font-size: 14px;
  line-height: 185.714%;
  letter-spacing: 0.08em;
  padding: 8px 14px 8px;
}
main .footer__inner__copy {
  display: block;
  text-align: center;
  font-size: 10px;
  line-height: 150%;
  letter-spacing: 0.08em;
  margin-top: 24px;
}
main .footer__inner__top-btn {
  position: absolute;
  bottom: 24px;
  right: 24px;
}
main .footer__inner__top-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 50px;
  height: 50px;
  background: #E01515;
  color: #fff;
  transition: all 0.3s ease;
}
main .footer__inner__top-btn a svg {
  margin-top: 8px;
  transition: all 0.3s ease;
}
main .footer__inner__top-btn a:hover {
  background: #fff;
  color: #E01515;
  transform: translateY(-2px);
}
main .footer__inner__top-btn a:hover path {
  stroke: #E01515;
}
main .footer__inner__character {
  position: absolute;
  top: -50px;
  left: 8px;
  width: 98px;
  height: auto;
  z-index: 3;
}
main .footer__inner__character img {
  width: 100%;
  height: auto;
}
@media (max-width: 480px) {
  main .footer__inner {
    padding: 48px 50px 90px;
  }
  main .footer__inner__character {
    width: 80px;
    top: -28px;
    left: 4px;
  }
}
@media (max-width: 425px) {
  main .footer__inner__links {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
  }
}
@media (max-width: 1200px) {
  main {
    right: calc((100% - (950px + 5%)) / 2);
  }
}
@media (max-width: 1024px) {
  main {
    right: calc((100% - 480px) / 2);
  }
}
@media (max-width: 480px) {
  main {
    width: 100%;
    right: 0;
  }
}/*# sourceMappingURL=page-client.css.map */