@charset "UTF-8";
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,
sup,
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;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* HTML5要素に対するブラウザの既定の表示を変更しない */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* インライン要素でデフォルトのフォントサイズを変更しない */
body {
  -webkit-hyphens: auto;
          hyphens: auto;
  line-break: strict;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* リストスタイルの変更 */
ol,
ul {
  list-style: none;
}

/* ハイパーリンクのスタイルの変更 */
a {
  text-decoration: none;
  color: inherit;
}

/* 要素間の空白を削除 */
pre,
code {
  white-space: pre-wrap;
}

/* テーブルのセル内の余白を削除 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

p,
a,
span,
li,
h1,
h2,
h3,
h4,
th,
td {
  font-family: "Noto Sans", sans-serif;
}

h2 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.1875rem;
}

h1 {
  font-size: clamp(16px, 10vw, 150px);
  line-height: 40%;
  font-weight: 800;
  letter-spacing: 0.625rem;
  color: #ff0000;
  margin: 0 0 5%;
  position: relative;
}

@media screen and (max-width: 770px) {
  h1 {
    line-height: 40px;
    font-weight: 800;
    letter-spacing: 0.625rem;
    color: #ff0000;
    margin: 0 0 40px;
    position: relative;
  }
}
@media screen and (max-width: 440px) {
  h1 {
    line-height: 40px;
    font-weight: 800;
    letter-spacing: 7px;
    color: #ff0000;
    margin: 0;
    position: relative;
  }
}
h2 {
  margin: 0 0 1.25rem;
}

@media screen and (max-width: 440px) {
  h2 {
    font-size: 9vw;
  }
}
h3 {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.125rem;
  margin: 1.25rem 0 0.625rem;
}

p,
a {
  font-size: 0.875rem;
  letter-spacing: 0.0625rem;
  line-height: 1.5625rem;
}

li {
  font-size: 0.875rem;
  letter-spacing: 0.0625rem;
}

.back_to_the_top {
  height: 4.375rem;
  background-color: #EFEFEF;
  border-top: #272727 solid 0.0625rem;
}
.back_to_the_top a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  transition: 0.3s;
}
.back_to_the_top a img {
  position: absolute;
  top: 40%;
  left: 50%;
}
.back_to_the_top a:hover {
  background-color: #D9D6D6;
}

/*デフォルトのマウスカーソルを非表示にする*/
html,
body,
a {
  cursor: none;
}

/*独自のマウスカーソルを作成*/
.cursor {
  position: fixed;
  top: -5px;
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  transition: width 0.5s, height 0.5s, top 0.5s, left 0.5s;
  transform: translate(0, 0);
  pointer-events: none;
}

/*aタグにホバーした時に見た目変化*/
.cursor.cursor--hover {
  top: -20px;
  left: -20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 210, 210, 0.7);
}

header {
  background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url("../img/helo.jpg");
  background-size: cover;
  /* 画像を要素に合わせて拡大・縮小 */
  background-position: center;
  /* 画像を中央に配置 */
  background-repeat: no-repeat;
  /* 画像の繰り返しを無効化 */
  display: flex;
  /* 中身のレイアウト調整用（任意） */
  align-items: center;
  /* 縦中央寄せ（任意） */
  justify-content: center;
  /* 横中央寄せ（任意） */
  padding: 3.75rem 2.5rem;
  height: 100vh;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
header .header_outer {
  margin: 0 auto;
  /*=========================================
  #hamburger
  =========================================*/
  /*=========================================
  #drawer
  =========================================*/
  /* ===============================================
  # 共通
  =============================================== */
}
header .header_outer p {
  font-size: clamp(24px, 4vw, 50px);
  font-weight: 600;
}
header .header_outer .nav_pc {
  display: flex;
  justify-content: space-around;
  padding: 1.25rem 2.5rem;
  background: #fff;
  width: 23.75rem;
  position: fixed;
  top: 1.875rem;
  right: 2.5rem;
  border-radius: 3.75rem;
  z-index: 100;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.25);
}
header .header_outer .nav_pc li {
  padding: 0 2.5rem 0 0;
  font-weight: 600;
}
header .header_outer .nav_pc li a:hover {
  color: #ff0000;
}
header .header_outer .nav_pc :last-child {
  padding: 0;
}
@media screen and (max-width: 770px) {
  header .header_outer .nav_pc {
    display: none;
  }
}
header .header_outer .hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 150;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
header .header_outer .hamburger.is-active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
}
header .header_outer .hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
header .header_outer .hamburger.is-active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
}
header .header_outer .hamburger span {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 2px;
  background-color: #333333;
  transition: transform 0.3s;
}
header .header_outer .hamburger.is-active span {
  background-color: #ffffff;
}
header .header_outer .hamburger span:nth-child(1) {
  top: 30%;
}
header .header_outer .hamburger span:nth-child(2) {
  top: 60%;
}
header .header_outer .hamburger span:nth-child(3) {
  top: 90%;
}
header .header_outer .drawer {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 130;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  transition: opacity 0.3s, visibility 0.3s;
}
header .header_outer .drawer.is-active {
  visibility: visible;
  opacity: 1;
}
header .header_outer .drawer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 20px;
  text-align: center;
}
header .header_outer .drawer__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
header .header_outer .drawer__link {
  color: #ff0000;
}
header .header_outer a {
  color: inherit;
  text-decoration: none;
}
header .header_outer .hello {
  position: relative;
}
header .header_outer .hello img {
  width: 28%;
  display: block;
  margin: 0 auto;
  height: auto;
  background-size: cover;
  background-repeat: no-repeat;
  font-style: italic;
  shape-margin: 0.75rem;
}
header .header_outer .hello::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 18%;
  transform: translateY(-50%);
  width: 24%;
  height: 50%;
  background-image: url("../img/hello.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
header .header_outer .scroll-line {
  width: 2px;
  height: 70px;
  background-color: #333;
  margin: 0 auto;
  animation: scrollMove 1.2s ease-in-out infinite;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
}
header .header_outer .hello_sp {
  display: none;
}
@media screen and (max-width: 770px) {
  header .header_outer .hello {
    display: none;
  }
  header .header_outer .hello_sp {
    display: block;
    position: relative;
  }
  header .header_outer .hello_sp img {
    width: 30vw;
    display: block;
    margin: 0 auto;
    height: auto;
    background-size: cover;
    background-repeat: no-repeat;
    font-style: italic;
  }
  header .header_outer .hello_sp::before {
    content: "";
    position: absolute;
    top: -55%;
    left: 50%;
    transform: translateX(-50%);
    width: 25vw;
    height: 200px;
    background-image: url("../img/hello_sp.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
  header .header_outer .scroll-line {
    width: 2px;
    height: 70px;
    background-color: #333;
    margin: 0 auto;
    animation: scrollMove 1.2s ease-in-out infinite;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
  }
}
@media screen and (max-width: 440px) {
  header .header_outer .hello_sp {
    display: block;
    position: relative;
  }
  header .header_outer .hello_sp img {
    width: 40vw;
    display: block;
    margin: 0 auto;
    height: auto;
    background-size: cover;
    background-repeat: no-repeat;
    font-style: italic;
  }
  header .header_outer .hello_sp::before {
    content: "";
    position: absolute;
    top: -65%;
    left: 50%;
    transform: translateX(-50%);
    width: 35vw;
    height: 200px;
    background-image: url("../img/hello_sp.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
  header .header_outer .scroll-line {
    width: 2px;
    height: 70px;
    background-color: #333;
    margin: 0 auto;
    animation: scrollMove 1.2s ease-in-out infinite;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
  }
}
@keyframes scrollMove {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
header .header_outer .sp-show {
  display: none;
}
@media screen and (max-width: 770px) {
  header .header_outer .sp-show {
    display: block;
  }
  header .header_outer .sp-none {
    display: none;
  }
}
header .header_outer .wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
}
header .header_outer .wrapper .col {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header_outer .scroll-down-box {
  display: block;
  position: relative;
  text-decoration: none;
}
header .header_outer .scroll-down-box svg {
  fill: #272727;
}
header .header_outer .scroll-down-box .scroll-text {
  width: 100px;
  height: auto;
  animation: rotation 10s infinite linear;
}
header .header_outer .scroll-down-box.alt .scroll-text {
  animation: none;
}
header .header_outer .scroll-down-box.alt:hover .scroll-text {
  animation: rotation 10s infinite linear;
}
header .header_outer .scroll-down-box .scroll-icon {
  width: 1.25rem;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease-in;
}
header .header_outer .scroll-down-box.alt .scroll-icon {
  width: 35px;
}
header .header_outer .scroll-down-box:hover .scroll-icon {
  animation: move 1s infinite linear;
}
header .header_outer .scroll-down-box.alt:hover .scroll-icon {
  animation: none;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes move {
  0% {
    transform: translate(-50%, -50%);
  }
  25% {
    transform: translate(-50%, -35%);
  }
  50% {
    transform: translate(-50%, -50%);
  }
  75% {
    transform: translate(-50%, -65%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}
header .header_outer .container {
  padding: 2.5rem;
  position: absolute;
  bottom: 0;
  right: 0;
}
header .header_outer .block {
  width: 160px;
  height: 160px;
  margin: auto;
}
header .header_outer .circleText {
  overflow: visible;
  animation: rotation 20s linear infinite;
}
header .header_outer .circleText__circle {
  fill: none;
}
header .header_outer .circleText__text {
  fill: #fff;
  font-size: 64%;
  font-weight: 700;
  letter-spacing: 0.0625rem;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
header .header_outer input {
  display: none;
}
header .drop-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(-100px);
  animation: dropIn 0.8s ease-out forwards;
}
@keyframes dropIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

main {
  display: flex;
  max-width: 87.5rem;
  margin: 0 auto;
}
main .fade-in {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
main .fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
main nav {
  width: 13.75rem;
  border-right: #272727 solid 0.0625rem;
  padding: 1.25rem;
  position: relative;
}
main nav ul li {
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1.25rem;
}
main nav ul li a {
  font-size: 1.125rem;
}
main nav p {
  position: absolute;
  bottom: 1.25rem;
  left: 0;
  right: 0;
  font-size: 0.75rem;
  text-align: center;
}
main .main_outer {
  width: 100%;
  scrollbar-color: #ff0000;
}
main .main_outer .values {
  background: #272727;
  color: #fff;
  padding: 2% 4%;
}
main .main_outer .values p {
  margin: 1.25rem 0;
}
main .main_outer .main_works {
  margin: 6.25rem 0 0 0;
  padding: 4%;
  position: relative;
}
main .main_outer .main_works h2 {
  position: relative;
}
main .main_outer .main_works h2::before {
  content: "";
  position: absolute;
  top: -70px;
  left: -35px;
  width: 230px;
  height: 200px;
  background-image: url(../img/Design.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}
@media screen and (max-width: 440px) {
  main .main_outer .main_works h2::before {
    position: absolute;
    top: -50px;
    left: -15px;
    width: 150px;
    height: 120px;
  }
}
main .main_outer .main_works .main_works_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
main .main_outer .main_works .main_works_flex .main_works_item {
  margin: 0 0 2.5rem;
  width: 48.2%;
}
main .main_outer .main_works .main_works_flex .main_works_item img {
  width: 100%;
  box-shadow: 0.625rem 0.5rem 0.3125rem #ededed;
}
main .main_outer .main_works .main_works_flex .main_works_item .main_works_text_flex {
  display: flex;
  justify-content: space-between;
}
main .main_outer .main_works .main_works_flex .main_works_item .main_works_text_flex .main_works_text p {
  color: #B2B2B2;
  font-size: 0.875rem;
}
@media screen and (max-width: 770px) {
  main .main_outer .main_works .main_works_flex {
    display: block;
  }
  main .main_outer .main_works .main_works_flex .main_works_item {
    width: 100%;
  }
}
main .main_outer .main_about {
  margin: 3.125rem 0 0;
  padding: 4%;
}
main .main_outer .main_about h2 {
  position: relative;
}
main .main_outer .main_about h2::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -35px;
  width: 230px;
  height: 200px;
  background-image: url(../img/About_me.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}
main .main_outer .main_about .about_content {
  display: flex;
  justify-content: space-between;
}
main .main_outer .main_about .about_content .about_content_img {
  width: 30%;
}
main .main_outer .main_about .about_content .about_content_img img {
  width: 100%;
}
main .main_outer .main_about .about_content .about_content_text {
  width: 62%;
  display: grid;
  place-items: center;
  height: 468px;
}
main .main_outer .main_about .about_content .about_content_text .center .red {
  color: #ff0000;
  font-size: 0.875rem;
  font-weight: 600;
}
main .main_outer .main_about .about_content .about_content_text .center .name {
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 3.125rem;
}
main .main_outer .main_about .about_content .about_content_text .center p {
  line-height: 2;
}
@media screen and (max-width: 770px) {
  main .main_outer .main_about .about_content {
    display: block;
  }
  main .main_outer .main_about .about_content .about_content_img {
    width: 100%;
  }
  main .main_outer .main_about .about_content .about_content_img img {
    width: 100%;
    height: 29.375rem;
    -o-object-fit: cover;
       object-fit: cover;
    margin: 0 0 1.5625rem;
  }
  main .main_outer .main_about .about_content .about_content_text {
    width: 100%;
    height: auto;
  }
  main .main_outer .main_about .about_content .about_content_text .center .red {
    color: #ff0000;
    font-size: 0.875rem;
    font-weight: 600;
  }
  main .main_outer .main_about .about_content .about_content_text .center .name {
    font-size: 2.125rem;
    font-weight: 600;
    line-height: 1;
    margin: 0 0 1.5625rem;
  }
}
main .main_outer .custom-button {
  width: 17.5rem;
  height: 4.4375rem;
  background-color: #fff;
  border: 0.125rem solid #ff0000;
  color: #ff0000;
  font-size: 1.5rem;
  padding: 1.5rem 5rem;
  transition: background-color 0.5s ease, color 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  border-radius: 2.5rem;
  margin: 4.375rem auto 0;
}
main .main_outer .custom-button .arrow {
  display: inline-block;
  transition: color 0.5s ease;
}
main .main_outer .custom-button:hover {
  background-color: #ff0000;
  color: #fff;
}
main .main_outer .custom-button:hover .arrow {
  color: #fff;
}
main .main_outer .image_link {
  display: block;
  position: relative;
  text-decoration: none;
}
main .main_outer .image_link img {
  display: block;
  width: 100%;
}
main .main_outer .image_link:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  background: #272727;
  /*好みの色に変えてください。*/
  opacity: 0;
  transition: 0.3s;
}
main .main_outer .image_link:after {
  content: "View Design";
  /*好みの文章に変更してください。*/
  display: block;
  color: #fff;
  line-height: 3rem;
  width: 11.25rem;
  border: solid 0.0625rem #fff;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -1em;
  margin-left: -5.625rem;
  opacity: 0;
  z-index: 3;
  transition: 0.3s;
  font-weight: bold;
  letter-spacing: 0.2em;
}
main .main_outer .image_link:hover:before {
  opacity: 0.5;
}
main .main_outer .image_link:hover:after {
  opacity: 1;
  margin-top: -0.5em;
}

footer {
  background-color: #272727;
  color: #fff;
  height: 1260px;
  margin: 6.25rem calc(50% - 50vw) 0;
  text-align: center;
  position: relative;
  align-items: center;
  overflow: hidden;
  /* ulタグ */
  /* liタグ */
  /* PCの時のフォントサイズ */
  /* アニメーション */
}
footer .contact {
  background-color: #B2B2B2;
  margin: 0 0 180px;
  padding: 5rem;
}
footer .contact .contact_content h3 {
  margin: 0;
  font-size: 3rem;
  margin: 0 0 1.875rem;
}
footer .contact .contact_content a {
  font-size: 2rem;
  font-weight: 600;
  border: solid 0.0625rem #fff;
  border-radius: 2.5rem;
  padding: 0.9375rem 2.5rem;
  transition: 0.3s;
  display: block;
  width: 440px;
  margin: 0 auto;
}
footer .contact .contact_content a:hover {
  color: #272727;
  background-color: #fff;
}
footer .hello {
  position: relative;
}
footer .hello img {
  width: 16.5625rem;
  display: block;
  margin: 0 auto;
  height: auto;
  background-size: cover;
  background-repeat: no-repeat;
  font-style: italic;
  shape-margin: 0.75rem;
}
footer .hello::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 31%;
  transform: translateY(-50%);
  width: 13%;
  height: 40%;
  background-image: url("../img/thanks.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
footer .thank_you {
  font-size: clamp(30px, 4vw, 60px);
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.25rem;
  margin: 30px 0 0 0;
}
footer .hello_sp {
  display: none;
}
footer .copy {
  position: absolute;
  bottom: 1.25rem;
  left: 0;
  right: 0;
  font-size: 0.75rem;
}
footer .scroll-list {
  display: flex;
  list-style: none;
  padding-inline: 0;
  margin-inline: 0;
  gap: 0;
  overflow: hidden;
  position: absolute;
  bottom: -130px;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  opacity: 0.2;
}
footer .scroll-list li {
  color: #fff;
  font-size: 3em;
  font-weight: bold;
  white-space: nowrap;
  padding: 0 1em 0 0;
  margin: 0 0 2.5rem;
  animation: marquee-left 20s linear infinite;
}
@media (min-width: 600px) {
  footer .scroll-list li {
    font-size: 12.5rem;
  }
}
@keyframes marquee-left {
  100% {
    transform: translateX(-100%);
  }
}

@media screen and (max-width: 770px) {
  footer {
    background-color: #272727;
    color: #fff;
    height: 1060px;
    margin: 6.25rem calc(50% - 50vw) 0;
    text-align: center;
    position: relative;
    align-items: center;
    /* ulタグ */
    /* liタグ */
    /* アニメーション */
  }
  footer .contact {
    background-color: #B2B2B2;
    margin: 0 0 180px;
    padding: 10% 5%;
  }
  footer .contact .contact_content h3 {
    margin: 0;
    font-size: 330%;
    margin: 0 0 1.875rem;
  }
  footer .contact .contact_content a {
    font-size: 16px;
    font-weight: 600;
    border: solid 0.0625rem #fff;
    border-radius: 2.5rem;
    padding: 0.9375rem 2.5rem;
    transition: 0.3s;
    display: block;
    width: 280px;
    margin: 0 auto;
  }
  footer .contact .contact_content a:hover {
    color: #272727;
    background-color: #fff;
  }
  footer .hello {
    position: relative;
  }
  footer .hello img {
    width: 30vw;
    display: block;
    margin: 0 auto;
    height: auto;
    background-size: cover;
    background-repeat: no-repeat;
    font-style: italic;
    shape-margin: 0.75rem;
  }
  footer .hello::before {
    content: "";
    position: absolute;
    top: -55%;
    left: 50%;
    transform: translateX(-50%);
    width: 25vw;
    height: 200px;
    background-image: url("../img/thanks_sp.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
  footer .thank_you {
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.25rem;
    margin: 30px 0 0 0;
    padding: 0 5%;
  }
  footer .copy {
    position: absolute;
    bottom: 1.25rem;
    left: 0;
    right: 0;
    font-size: 0.75rem;
  }
  footer .scroll-list {
    display: flex;
    list-style: none;
    padding-inline: 0;
    margin-inline: 0;
    gap: 0;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    opacity: 0.2;
  }
  footer .scroll-list li {
    color: #fff;
    font-size: 440%;
    font-weight: bold;
    white-space: nowrap;
    padding: 0 1em 0 0;
    margin: 0 0 2.5rem;
    animation: marquee-left 20s linear infinite;
  }
  @keyframes marquee-left {
    100% {
      transform: translateX(-100%);
    }
  }
}
@media screen and (max-width: 440px) {
  footer {
    background-color: #272727;
    color: #fff;
    height: 910px;
    margin: 6.25rem calc(50% - 50vw) 0;
    text-align: center;
    position: relative;
    align-items: center;
    /* ulタグ */
    /* liタグ */
    /* アニメーション */
  }
  footer .contact {
    background-color: #B2B2B2;
    margin: 0 0 180px;
    padding: 10% 5%;
  }
  footer .contact .contact_content h3 {
    margin: 0;
    font-size: 10vw;
    margin: 0 0 1.875rem;
  }
  footer .contact .contact_content a {
    font-size: 16px;
    font-weight: 600;
    border: solid 0.0625rem #fff;
    border-radius: 2.5rem;
    padding: 0.9375rem 2.5rem;
    transition: 0.3s;
    display: block;
    width: 280px;
    margin: 0 auto;
  }
  footer .contact .contact_content a:hover {
    color: #272727;
    background-color: #fff;
  }
  footer .hello {
    position: relative;
  }
  footer .hello img {
    width: 40vw;
    display: block;
    margin: 0 auto;
    height: auto;
    background-size: cover;
    background-repeat: no-repeat;
    font-style: italic;
    shape-margin: 0.75rem;
  }
  footer .hello::before {
    content: "";
    position: absolute;
    top: -65%;
    left: 50%;
    transform: translateX(-50%);
    width: 35vw;
    height: 200px;
    background-image: url("../img/thanks_sp.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
  footer .thank_you {
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.25rem;
    margin: 30px 0 0 0;
    padding: 0 5%;
  }
  footer .copy {
    position: absolute;
    bottom: 1.25rem;
    left: 0;
    right: 0;
    font-size: 0.75rem;
  }
  footer .scroll-list {
    display: flex;
    list-style: none;
    padding-inline: 0;
    margin-inline: 0;
    gap: 0;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    opacity: 0.2;
  }
  footer .scroll-list li {
    color: #fff;
    font-size: 440%;
    font-weight: bold;
    white-space: nowrap;
    padding: 0 1em 0 0;
    margin: 0 0 2.5rem;
    animation: marquee-left 20s linear infinite;
  }
  @keyframes marquee-left {
    100% {
      transform: translateX(-100%);
    }
  }
}
@media screen and (max-width: 440px) {
  .cursor {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */