@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@100;200;300;400;500;600;700;800;900&family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap");
*,
*::after,
*::before {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  font-size: 62.5%;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
}
@media (max-width: 768px) {
  html {
    font-size: min(10px, 1.3vw);
  }
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  font-style: italic;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

td,
th {
  border: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
}

button {
  background: transparent;
  border: 0;
  outline: none;
  padding: 0;
  font-family: inherit;
  color: inherit;
}

div[role="button"],
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}
div[role="button"]:hover,
a:hover {
  opacity: 0.6;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.sp {
  display: none;
}
@media (max-width: 768px) {
  .sp {
    display: initial;
  }
}

.pc {
  display: initial;
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

.lg-sp {
  display: none;
}
@media (max-width: 1080px) {
  .lg-sp {
    display: initial;
  }
}

.lg-pc {
  display: initial;
}
@media (max-width: 1080px) {
  .lg-pc {
    display: none;
  }
}

.xl-sp {
  display: none;
}
@media (max-width: 1200px) {
  .xl-sp {
    display: initial;
  }
}

.xl-pc {
  display: initial;
}
@media (max-width: 1200px) {
  .xl-pc {
    display: none;
  }
}

.container {
  --gap-x: 4rem;
  --max-width: 1300px;
  width: min(100% - var(--gap-x), var(--max-width));
  margin: 0 auto;
}
@media (max-width: 768px) {
  .container {
    --gap-x: 4rem;
  }
}

.animation-left, .animation-up, .animation-right {
  opacity: 0;
  transform: translateX(10rem);
  pointer-events: none;
  visibility: hidden;
  transition: all 2s;
  filter: blur(0.5rem);
}
.animation-left.ani-active, .animation-up.ani-active, .animation-right.ani-active {
  opacity: 1;
  filter: blur(0);
  transform: translate(0rem);
  pointer-events: all;
  visibility: visible;
}
.animation-left.delay, .animation-up.delay, .animation-right.delay {
  transition-delay: 0.8s;
}
.animation-left {
  transform: translateX(-10rem);
}
.animation-up {
  transform: translateY(5rem);
}
@media (max-width: 768px) {
  .animation-right {
    transform: translateX(5rem);
  }
}

.anchor {
  height: 0;
  position: relative;
}
.anchor__inner {
  position: absolute;
  top: -20rem;
}
@media (max-width: 768px) {
  .anchor__inner {
    top: -10rem;
  }
}

.header-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  --btn-color: black;
}
.header-btn .menu-bar-wrap {
  display: grid;
}
.header-btn .menu-btn {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  cursor: pointer;
  z-index: 1;
}
@media (max-width: 768px) {
  .header-btn .menu-btn {
    width: 6rem;
    height: 6rem;
  }
}
.header-btn .menu-btn > span,
.header-btn .menu-btn > span::before,
.header-btn .menu-btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 0.2rem;
  background-color: var(--btn-color);
  transition-duration: .25s;
  border-radius: 0.2rem;
}
.header-btn .menu-btn > span::before {
  content: '';
  top: -0.6rem;
}
@media (max-width: 768px) {
  .header-btn .menu-btn > span::before {
    top: -1.6rem;
  }
}
.header-btn .menu-btn > span::after {
  content: '';
  top: 0.6rem;
}
@media (max-width: 768px) {
  .header-btn .menu-btn > span::after {
    top: 1.6rem;
  }
}
.header-btn.active .menu-btn > span {
  transform: rotate(-45deg);
}
.header-btn.active .menu-btn > span::before {
  top: 0;
  transform: rotate(0);
  opacity: 0;
}
.header-btn.active .menu-btn > span::after {
  top: 0;
  transform: rotate(90deg);
}

.btn {
  background: black;
  transition: all 0.3s;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn:hover {
  background: #c30d23;
  opacity: 1;
}

.text-underline {
  text-decoration: underline;
  text-underline-offset: 0.3em;
  text-decoration-thickness: 0.01em;
}

.title {
  display: flex;
  justify-content: center;
}
.title h2 {
  text-align: center;
}
.title h2 p {
  font-size: clamp(4rem, calc((82 / 1024) * 100 * 1vw), 8.2rem);
  line-height: 1;
  font-family: "League Spartan", sans-serif;
  letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  .title h2 p {
    font-size: 10.1rem;
    letter-spacing: 0.18em;
  }
}
.title h2 .text-small {
  font-size: 1.5rem;
  line-height: 1;
  display: block;
}
@media (max-width: 768px) {
  .title h2 .text-small {
    font-size: 2.4rem;
  }
}

.sections {
  overflow-x: hidden;
}

.splitting .char {
  opacity: 0;
  transform: translateY(30%);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-delay: calc((0.06s * var(--char-index)));
}
.splitting[data-scroll="in"] .char {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slide-in {
  from {
    transform: perspective(1000px) translate3d(0, 70%, 0) rotateX(-90deg);
    opacity: 0;
  }
  to {
    transform: perspective(1000px) translateZ(0);
    opacity: 1;
  }
}
[data-scroll] {
  transition: opacity 1s;
}

[data-scroll="in"] {
  opacity: 1;
}

[data-scroll="out"] {
  opacity: 0;
}

.btn-mv {
  position: absolute;
  z-index: 8;
  bottom: -1rem;
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  right: 4rem;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .btn-mv {
    bottom: 0;
    transform: translateY(100%);
    right: 2rem;
    display: none;
  }
}
.btn-mv .btn-circle {
  width: clamp(6rem, calc((100 / 1300) * 100 * 1vw), 10rem);
  aspect-ratio: 1;
  border: 0.1rem solid #c30d23;
  transform: rotate(90deg);
  cursor: pointer;
  border-radius: 100%;
  background: url(../images/arrow-right-red.png) no-repeat center center;
  background-size: auto;
  background-color: white;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .btn-mv .btn-circle {
    background-size: 40%;
  }
}
.btn-mv .btn-circle:hover {
  opacity: 1;
  background: url(../images/arrow-right-white.png) no-repeat center center;
  background-color: #c30d23;
}
@media (max-width: 768px) {
  .btn-mv .btn-circle:hover {
    background-size: 40%;
  }
}
.btn-mv.active {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  right: 4rem;
  transform: translateX(0);
}
@media (max-width: 768px) {
  .btn-mv.active {
    right: 3rem;
  }
}

.mv-bg {
  position: relative;
}
.mv-bg .bg-one {
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-60%);
  width: 83%;
}
@media (max-width: 768px) {
  .mv-bg .bg-one {
    width: 100%;
    right: 0;
    display: flex;
    justify-content: center;
  }
}
.mv-bg .bg-one img {
  width: 100%;
}
@media (max-width: 768px) {
  .mv-bg .bg-one img {
    width: calc(100% - 4rem);
  }
}
.mv-bg .bg-second {
  width: 100%;
}
.mv-bg .bg-second img {
  width: 100%;
}

.bg-view {
  position: absolute;
  width: 20%;
  z-index: 2;
  aspect-ratio: 1;
  top: 0;
  transform: translateY(-50%);
  box-shadow: 0px 0.8rem 4rem 0px rgba(0, 0, 0, 0.38);
}
@media (max-width: 768px) {
  .bg-view {
    width: 30%;
  }
}
.bg-view .bg-img {
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
}
.bg-view.right {
  right: 0;
  background: #c30d23;
}
.bg-view.left {
  left: 0;
  background: #727171;
}

.relative {
  position: relative;
}

.header {
  width: 100%;
  top: 0;
  padding: 2rem 0;
  z-index: 10;
  position: fixed;
  background-color: white;
}
@media (max-width: 768px) {
  .header {
    padding: 1rem 0;
  }
}
.header .container {
  --max-width: 1440px;
  --gap-x: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 1440px) {
  .header .container {
    width: 100%;
    padding: 0 2rem;
  }
}
.header .logo a img {
  max-width: 23rem;
  width: 100%;
  aspect-ratio: 10 / 3;
}
@media (max-width: 768px) {
  .header .logo a img {
    max-width: 36rem;
    aspect-ratio: 25/5.7;
	  margin-left:-35px;
  }
}
.header .menu-list {
  display: flex;
  align-items: center;
  gap: 6rem;
}
@media (max-width: 1080px) {
  .header .menu-list {
    width: min(100% - var(--gap-x));
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .header .menu-list {
    gap: 10rem;
  }
}
.header .menu-list li a {
  font-family: "League Spartan", sans-serif;
  font-size: 1.9rem;
  font-weight: normal;
  letter-spacing: 0.2em;
}
@media (max-width: 1080px) {
  .header .menu-list li:last-child {
    width: 100%;
  }
}
.header .menu-list li:last-child .btn {
  padding: 0 5rem;
  height: 7rem;
}
@media (max-width: 1080px) {
  .header .menu-list li:last-child .btn {
    margin: 0 auto;
    width: 70%;
  }
}
@media (max-width: 768px) {
  .header .menu-list li:last-child .btn {
    width: 90%;
    height: 12rem;
  }
}
@media (max-width: 1080px) {
  .header .menu {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    filter: blur(2rem);
    transition: all 0.3s;
  }
  .header .menu-list {
    flex-direction: column;
    color: white;
  }
  .header .menu-list li {
    transition: 0.4s all;
    transform: scaleX(0) translateX(-26rem);
    opacity: 0;
  }
  .header .menu-list li a {
    font-size: 2.2rem;
  }
}
@media (max-width: 1080px) and (max-width: 768px) {
  .header .menu-list li a {
    font-size: 4.4rem;
  }
}
@media (max-width: 1080px) {
  .header .menu.active {
    transform: translateY(0);
    visibility: visible;
    pointer-events: all;
    opacity: 1;
    filter: blur(0rem);
  }
  .header .menu.active .menu-list li {
    opacity: 1;
    transform: scaleX(1) translateX(0);
    transition: all 0.3s ease-out;
    transition-delay: 0.1s;
  }
  .header .menu.active .menu-list li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .header .menu.active .menu-list li:nth-child(2) {
    transition-delay: 0.2s;
  }
  .header .menu.active .menu-list li:nth-child(3) {
    transition-delay: 0.3s;
  }
  .header .menu.active .menu-list li:nth-child(4) {
    transition-delay: 0.4s;
  }
  .header .menu.active .menu-list li:nth-child(5) {
    transition-delay: 0.5s;
  }
  .header .menu.active .menu-list li:nth-child(6) {
    transition-delay: 0.6s;
  }
  .header .menu.active .menu-list li:nth-child(7) {
    transition-delay: 0.7s;
  }
  .header .menu.active .menu-list li:nth-child(8) {
    transition-delay: 0.8s;
  }
  .header .menu.active .menu-list li:nth-child(9) {
    transition-delay: 0.9s;
  }
  .header .menu.active .menu-list li:nth-child(10) {
    transition-delay: 1s;
  }
}
.header.active {
  box-shadow: 0px 0.8rem 4rem 0px rgba(0, 0, 0, 0.15);
}
.header .header-left {
  align-items: center;
  gap: 2.5rem;
  display: none;
}
@media (max-width: 1080px) {
  .header .header-left {
    display: flex;
  }
}
.header .header-left .email-box {
  background-color: black;
  min-width: 8.5rem;
  width: 100%;
  display: grid;
  place-content: center;
  aspect-ratio: 1;
}
.header .header-left .email-box img {
  width: 3.8rem;
}
.header .header-btn {
  display: none;
}
@media (max-width: 1080px) {
  .header .header-btn {
    display: flex;
    width: 4rem;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .header .header-btn {
    width: auto;
  }
}
.header .header-btn.active {
  position: fixed;
  z-index: 99;
  top: 2rem;
  right: 2rem;
  --btn-color: white;
}

.mv {
  position: relative;
}
@media (max-width: 768px) {
  .mv {
    padding-top: 6rem;
  }
}
.mv .inner .mv-text {
  position: absolute;
  width: 100%;
  top: 66%;
}
@media (max-width: 768px) {
  .mv .inner .mv-text {
    position: unset;
  }
}
.mv .inner .mv-text .title {
  justify-content: start;
}
@media (max-width: 768px) {
  .mv .inner .mv-text .title {
    margin-top: -14rem;
  }
}
.mv .inner .mv-text .title h2 {
  text-align: start;
}
@media (max-width: 768px) {
  .mv .inner .mv-text .title h2 p {
    font-size: 11.5rem;
  }
}
.mv .inner .mv-text .content {
  margin-top: 1rem;
}
.mv .inner .mv-text .content p {
  font-size: 1.92rem;
  line-height: 2.1;
  letter-spacing: 0.3em;
}
@media (max-width: 768px) {
  .mv .inner .mv-text .content p {
    font-size: 2.5rem;
  }
}

.service {
  padding: clamp(8rem, calc((140 / 1024) * 100 * 1vw), 14rem) 0;
}
@media (max-width: 768px) {
  .service {
    padding-top: 14rem;
    padding-bottom: 18rem;
  }
}
.service .container .content {
  margin-top: 10rem;
}
@media (max-width: 768px) {
  .service .container .content {
    margin-top: 6rem;
  }
}
.service .container .content .list .item {
  display: flex;
  align-items: center;
  gap: 5rem;
}
@media (max-width: 1080px) {
  .service .container .content .list .item {
    flex-wrap: wrap;
    gap: clamp(8rem, calc((190 / 920) * 100 * 1vw), 19rem);
  }
}
.service .container .content .list .item .item-image {
  flex-shrink: 0;
  position: relative;
  width: 52%;
  transform: translateX(4rem);
}
@media (max-width: 1080px) {
  .service .container .content .list .item .item-image {
    width: 100%;
    transform: unset;
  }
}
@media (max-width: 768px) {
  .service .container .content .list .item .item-image {
    justify-content: center;
  }
}
.service .container .content .list .item .item-image .img {
  position: relative;
  width: fit-content;
}
@media (max-width: 1080px) {
  .service .container .content .list .item .item-image .img {
    width: clamp(0px, 94vw, 88%);
    margin: 0 auto;
  }
}
.service .container .content .list .item .item-image .img img {
  position: relative;
  z-index: 2;
  top: 0;
  left: 0;
  width: clamp(40rem, calc((584 / 1400) * 100 * 1vw), 58.4rem);
  height: 100%;
  box-shadow: 2.5rem 0.8rem 3rem -2rem #434343;
}
@media (max-width: 1080px) {
  .service .container .content .list .item .item-image .img img {
    width: 100%;
  }
}
.service .container .content .list .item .item-image .bg-red {
  width: 100%;
  position: absolute;
  background-color: #c30d23;
  height: 100%;
  top: clamp(3rem, calc((50 / 768) * 100 * 1vw), 5rem);
  left: clamp(-4rem, -5vw, -2rem);
}
.service .container .content .list .item .item-image .bg-grey {
  position: absolute;
  width: 56%;
  aspect-ratio: 34 / 16;
  background: rgba(0, 0, 0, 0.2);
  bottom: 0;
  right: -4rem;
  transform: translateY(70%);
  z-index: 4;
}
@media (max-width: 1080px) {
  .service .container .content .list .item .item-image .bg-grey {
    transform: translateY(65%);
  }
}
@media (max-width: 768px) {
  .service .container .content .list .item .item-image .bg-grey {
    right: clamp(-4rem, -5vw, -2rem);
  }
}
.service .container .content .list .item .item-content {
  flex: 1;
}
.service .container .content .list .item .item-content .item-title {
  font-size: clamp(2.2rem, calc((32 / 1024) * 100 * 1vw), 3.2rem);
  letter-spacing: 0.09em;
}
@media (max-width: 768px) {
  .service .container .content .list .item .item-content .item-title {
    font-size: 4.4rem;
  }
}
.service .container .content .list .item .item-content .item-text {
  margin-top: 1.8rem;
  font-size: 1.7rem;
  line-height: 1.778;
}
@media (max-width: 768px) {
  .service .container .content .list .item .item-content .item-text {
    font-size: 2.5rem;
  }
}
.service .container .content .list .item:nth-child(even) {
  margin-top: 18rem;
}
@media (max-width: 1080px) {
  .service .container .content .list .item:nth-child(even) {
    margin-top: clamp(7rem, calc((140 / 1440) * 100 * 1vw), 14rem);
  }
}
.service .container .content .list .item:nth-child(even) .item-image {
  transform: translateX(5rem);
}
@media (max-width: 1080px) {
  .service .container .content .list .item:nth-child(even) .item-image {
    order: 1;
    transform: unset;
  }
}
@media (max-width: 1080px) {
  .service .container .content .list .item:nth-child(even) .item-content {
    order: 2;
  }
}
.service .container .content .list .item:nth-child(3) {
  margin-top: clamp(10rem, calc((150 / 1024) * 100 * 1vw), 15rem);
}
@media (max-width: 1080px) {
  .service .container .content .list .item:nth-child(3) {
    margin-top: clamp(7rem, calc((140 / 1440) * 100 * 1vw), 14rem);
  }
}

.company {
  padding: clamp(8rem, calc((120 / 1024) * 100 * 1vw), 12rem) 0;
  background: black;
  color: white;
}
@media (max-width: 768px) {
  .company .bg-view {
    width: 40%;
  }
}
@media (max-width: 768px) {
  .company {
    padding-top: 20rem;
    padding-bottom: 12rem;
  }
}
.company .container {
  --max-width: 1024px;
}
.company .container .title h2 .text-small {
  margin-top: 1rem;
}
.company .container .content {
  margin-top: clamp(8rem, calc((100 / 1024) * 100 * 1vw), 10rem);
}
.company .container .content .list .item {
  display: flex;
  align-items: center;
  font-size: 1.9rem;
  padding: 2.5rem 3rem;
  border-bottom: 0.1rem solid #676767;
}
@media (max-width: 768px) {
  .company .container .content .list .item {
    flex-wrap: wrap;
    row-gap: 2rem;
    font-size: 3rem;
    padding: 2.8rem 2.4rem;
  }
}
.company .container .content .list .item:first-child {
  border-top: 0.1rem solid #676767;
}
.company .container .content .list .item-left {
  width: 21%;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .company .container .content .list .item-left {
    width: 100%;
  }
}
.company .container .content .list .item-right .map {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.company .container .content .list .item-right .map iframe {
  width: 61rem;
  aspect-ratio: 61 / 36;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}
@media (max-width: 768px) {
  .company .container .content .list .item-right .map iframe {
    width: 100%;
    aspect-ratio: 1.07;
  }
}

.news {
  padding: clamp(8rem, calc((100 / 1024) * 100 * 1vw), 10rem) 0;
}
@media (max-width: 768px) {
  .news {
    padding: 15rem 0;
  }
}
.news .bg-view {
  width: 22.22%;
  aspect-ratio: 320/190;
  transform: translateY(-30%);
}
@media (max-width: 768px) {
  .news .bg-view {
    width: 35%;
    transform: translateY(-50%);
    aspect-ratio: 270/180;
  }
}
.news .container .content {
  margin-top: clamp(8rem, calc((100 / 1024) * 100 * 1vw), 10rem);
}
.news .container .content .list .item:first-child .item-wrap {
  border-top: 0.1rem solid #dcdcdc;
}
.news .container .content .list .item .item-wrap {
  border-bottom: 0.1rem solid #dcdcdc;
  display: flex;
  align-items: center;
  padding: 4rem 5rem 4rem 5rem;
  gap: 1rem;
  position: relative;
}
@media (max-width: 768px) {
  .news .container .content .list .item .item-wrap {
    padding: 3rem 0 3rem 0rem;
    flex-wrap: wrap;
    gap: 2rem;
  }
}
.news .container .content .list .item .item-wrap .item-left {
  width: 15%;
  font-size: 1.2rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .news .container .content .list .item .item-wrap .item-left {
    width: 100%;
    font-size: 1.9rem;
  }
}
.news .container .content .list .item .item-wrap .item-right {
  font-size: 1.7rem;
  line-height: 1.55;
}
@media (max-width: 768px) {
  .news .container .content .list .item .item-wrap .item-right {
    font-size: 3rem;
  }
}
.news .container .content .list-more {
  display: flex;
  justify-content: end;
}
.news .container .content .list-more .list-more-link {
  padding: 4rem 0;
  cursor: pointer;
  padding-right: 3.5rem;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  gap: 2.8rem;
}
@media (max-width: 768px) {
  .news .container .content .list-more .list-more-link {
    padding: 3rem 0;
  }
  .news .container .content .list-more .list-more-link .arrow-icon img {
    width: 3rem;
  }
}
@media (max-width: 768px) and (max-width: 375px) {
  .news .container .content .list-more .list-more-link .arrow-icon img {
    width: 2rem;
  }
}

.contact {
  color: white;
  background: black;
  padding: clamp(8rem, calc((120 / 1024) * 100 * 1vw), 12rem) 0;
  transition: background 2s;
  --btn-width: 46rem;
  --btn-height: 9rem;
  --btn-color: black;
  --btn-bg: white;
  --btn-arrow: url(../images/arrow-right-red.png);
}
@media (max-width: 768px) {
  .contact {
    padding: 16rem 0;
    --btn-height: 12rem;
    --btn-width: 90%;
  }
}
.contact .bg-view {
  aspect-ratio: 290/240;
  transform: translateY(-25%);
}
@media (max-width: 768px) {
  .contact .bg-view {
    transform: translateY(-50%);
    width: 31%;
    aspect-ratio: 1;
  }
}
.contact .content {
  margin-top: 2rem;
}
.contact .content .content-paragraphs {
  text-align: center;
  line-height: 1.55;
  font-size: 1.7rem;
}
@media (max-width: 768px) {
  .contact .content .content-paragraphs {
    font-size: 2.6rem;
    margin-top: 6rem;
  }
}
.contact .content .btn-contact {
  display: flex;
  justify-content: center;
  margin-top: 6rem;
}
.contact .content .btn-contact .btn {
  width: var(--btn-width);
  padding: 0;
  height: var(--btn-height);
  background: var(--btn-bg);
  color: var(--btn-color);
  position: relative;
  font-size: 1.7rem;
  transition: all 1s;
}
@media (max-width: 768px) {
  .contact .content .btn-contact .btn {
    font-size: 2.9rem;
  }
}
.contact .content .btn-contact .btn:hover {
  background: #c30d23;
}
.contact .content .btn-contact .btn::after {
  content: "";
  background: var(--btn-arrow) no-repeat center center/contain;
  position: absolute;
  width: 3.4rem;
  aspect-ratio: 34/26;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .contact .content .btn-contact .btn::after {
    right: 3rem;
  }
}
@media (max-width: 375px) {
  .contact .content .btn-contact .btn::after {
    width: 2rem;
  }
}
.contact:hover {
  background: url(../images/contact-hover-bg.png) no-repeat center center/cover;
background-attachment: fixed;
  color: black;
  --btn-width: 36rem;
  --btn-height: 7rem;
  --btn-color: white;
  --btn-bg: black;
  --btn-arrow: url(../images/arrow-right-white.png);
}

.footer {
  background: black;
  color: white;
  padding-top: clamp(8rem, calc((130 / 768) * 100 * 1vw), 13rem);
  padding-bottom: 4rem;
  border-top: 0.1rem solid #6d6d6d;
}
@media (max-width: 768px) {
  .footer {
    padding-top: 20rem;
    padding-bottom: 8rem;
  }
}
.footer .bg-view {
  aspect-ratio: 300/150;
  transform: translateY(-60%);
}
@media (max-width: 768px) {
  .footer .bg-view {
    aspect-ratio: 230/150;
  }
}
.footer-top .container {
  --max-width: 1024px;
  display: flex;
}
@media (max-width: 768px) {
  .footer-top .container {
    flex-wrap: wrap;
    row-gap: 4rem;
  }
}
.footer-top .container .left {
  width: 50%;
}
@media (max-width: 768px) {
  .footer-top .container .left {
    width: 85%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .footer-top .container .left .logo {
    width: 100%;
  }
}
.footer-top .container .left .text {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .footer-top .container .left .text {
    margin-top: 3rem;
  }
}
.footer-top .container .left .text p {
  font-size: 1.3rem;
  font-weight: normal;
}
@media (max-width: 768px) {
  .footer-top .container .left .text p {
    font-size: 2.5rem;
  }
}
.footer-top .container .right {
  width: 50%;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .footer-top .container .right {
    width: 100%;
    justify-content: center;
    margin-top: 20rem;
  }
}
.footer-top .container .right .menu-list {
  display: flex;
  flex-direction: column;
  row-gap: clamp(3rem, calc((60 / 768) * 100 * 1vw), 6rem);
  padding-left: clamp(0rem, calc((70 / 1024) * 100 * 1vw), 7rem);
}
@media (max-width: 768px) {
  .footer-top .container .right .menu-list {
    padding-left: 0;
    align-items: center;
    row-gap: 10rem;
  }
}
.footer-top .container .right .menu-list li a {
  font-size: 2.5rem;
  font-weight: normal;
  font-family: "League Spartan", sans-serif;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .footer-top .container .right .menu-list li a {
    font-size: 4.4rem;
  }
}
.footer-copyright {
  margin-top: clamp(6rem, calc((120 / 768) * 100 * 1vw), 12rem);
}
@media (max-width: 768px) {
  .footer-copyright {
    margin-top: 20rem;
  }
}
.footer-copyright .container {
  --max-width: 1024px;
  text-align: center;
}
.footer-copyright .container p {
  font-size: 1.3rem;
  font-family: "League Spartan", sans-serif;
  font-weight: normal;
  letter-spacing: 0.5em;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .header .header-left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 17rem;
  }
}

/*# sourceMappingURL=style.css.map */
