/*
Theme Name: My Custom Theme
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #040000;
  color: #fff;
  font-family:
    "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica,
    sans-serif;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.inner {
  width: 100%;
  max-width: 1920px;
  min-height: 100vh;
  margin: 0 auto;
}

a {
  color: #040000;
  font-size: 16px;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

summary {
  list-style: none;
}

.slider {
  overflow: hidden;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0s ease;
  height: 110px;
}

.header.is-scrolled {
  background: url("../img/pc/header_bg.webp") center no-repeat;
}

.header-container {
  display: flex;
  justify-content: space-between;
  max-width: 1920px;
  height: 100%;
  margin: 0 auto;
  padding-left: clamp(20px, calc((100vw - 1600px) * 0.2 + 20px), 85px);
  padding-right: 20px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 35px;
}

.header-logo a {
  padding-top: 6px;
}

.header-logo p {
  flex-shrink: 0;
  background-color: #e2e2e2;
  padding: 0 20px;
  color: #474645;
  line-height: 2.5;
  letter-spacing: 0.07em;
}

@media (max-width: 1650px) {
  .header-logo p {
    display: none;
  }
}

.header-links {
  display: flex;
  gap: 35px;
}

.header-links nav {
  display: grid;
  grid-template-columns: repeat(6, max-content);
  align-items: center;
  gap: 35px;
  text-align: center;
}

.header-links a {
  color: #fff;
  letter-spacing: 0.07em;
}

.header-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  background-color: #040000;
  margin: auto 0;
  padding: 0 30px;
  line-height: 3.5;
}

@media (max-width: 1410px) {
  .header-logo {
    padding-right: 35px;
  }
  .header-links {
    gap: 0px;
  }
  .header-links nav a:last-child {
    display: none
  }
}

/* Hero */
.hero {
  position: relative;
  background: url("../img/pc/hero_bg.webp") center top / contain no-repeat;
}

.hero-title {
  padding: 190px 0px 70px 0px;
  text-align: center;
  opacity: 0;
  transform: translateY(-50px);
  transition: all 0.8s ease-out;
}

.hero-title.active {
  opacity: 1;
  transform: translateY(0);
}

.hero-title h1 {
  background: url("../img/pc/hero_bg_text.svg") center no-repeat;
  height: 63.5px;
  margin: 20px 0px 30px;
  padding-top: 12px;
  font-size: 26.75px;
  letter-spacing: 0.1em;
}

.hero-title p {
  font-size: 20px;
  font-weight: bold;
  line-height: 2.2;
  letter-spacing: 0.1em;
}

.hero-title span {
  font-size: 24px;
  text-decoration: underline;
  text-decoration-color: #fff000;
  text-underline-offset: 10px;
}

.hero-btn {
  position: absolute;
  top: 25%;
  right: 5%;
}

.slider-hero1 {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll-hero1 50s linear infinite;
}

.slider-hero1 img {
  width: 4676px;
  flex-shrink: 0;
}

@keyframes scroll-hero1 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-4676px - 30px));
  }
}

.hero-premise {
  display: flex;
  gap: 35px;
  width: 95%;
  max-width: 1520px;
  margin: 0 auto;
  padding-top: 150px;
}

.premise-img {
  flex-shrink: 0;
  margin-right: -200px;
}

.premise-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex: 1 0 auto;
  padding-top: 30px;
}

.premise-text h2 {
  font-size: 40.5px;
  letter-spacing: 0.15em;
}

.premise-text p {
  color: #b5b5b5;
  letter-spacing: 0.1em;
  line-height: 2;
}

.float1 {
  position: absolute;
  width: 100%;
  padding-top: 90px;
  margin-top: -90px;
}

.slider-hero2 {
  display: flex;
  gap: 75px;
  width: max-content;
  animation: scroll-hero2 50s linear infinite;
}

.slider-hero2 img {
  width: 1931px;
  flex-shrink: 0;
  translate: 0 -45%;
}

@keyframes scroll-hero2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1931px - 75px));
  }
}

/* Container */
.container {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 35px;
  width: 95%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 150px 0 200px;
}

.container-left {
  position: sticky;
  display: flex;
  flex-direction: column;
  gap: 55px;
  top: 0;
  padding-top: 140px;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.container-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  background-repeat: no-repeat;
  padding-top: 50px;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}

.container-left.active {
  opacity: 1;
  transform: translateX(0);
}

.container-right.active {
  opacity: 1;
  transform: translateX(0);
}

.container {
  letter-spacing: 0.07em;
}

.container p {
  color: #b5b5b5;
  line-height: 2;
}

.container-left h3 {
  padding-left: 5px;
  font-size: 36.5px;
  letter-spacing: 0.12em;
}

.container-left p {
  padding-left: 5px;
}

.container-left-bold {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: bold;
}

.solutions .container-left-bold p {
  color: #dbdcdc;
}

.container-left-flex {
  display: flex;
  padding-bottom: 3px;
}

.container-left-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 155px;
  height: 50px;
  padding-top: 5px;
  background-color: #3e3a39;
  color: #fff;
  font-size: 21px;
  letter-spacing: 0.12em;
}

.container-left-cross {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 2px 0px 3px;
  font-size: 20px;
}

.container-left-bold .margin-not {
  margin-top: 0px;
}

.container-right h2 {
  font-size: 40.5px;
  letter-spacing: 0.1em;
}

/* Solutions */
.solutions span {
  margin-right: 20px;
}

.solutions-card {
  width: 736px;
  height: 407px;
  padding: 70px 0px 0px 75px;
}

.solutions-card h4 {
  padding: 75px 0px 15px 0px;
  color: #629caf;
  font-size: 23px;
  letter-spacing: 0.1em;
}

/*  font-feature-settings: "palt";
  text-spacing-trim: space-first; */

.solutions-card .margin {
  margin-left: -0.4em;
}

.soc1 {
  background-image: url("../img/pc/solutions_frame1.svg");
}

.soc2 {
  background-image: url("../img/pc/solutions_frame2.svg");
}

.soc3 {
  background-image: url("../img/pc/solutions_frame3.svg");
}

/* Contact */
.contact {
  height: 579px;
  padding-top: 90px;
  background: url("../img/pc/contact_bg.webp") center no-repeat;
  font-weight: bold;
}

.contact-title {
  text-align: center;
}

.contact-title p {
  padding-bottom: 30px;
  font-size: 36.5px;
  letter-spacing: 0.07em;
}

.contact-box {
  max-width: 1200px;
  height: 130px;
  margin: 0 auto;
  display: flex;
}

.contact-tel {
  background-color: #f7f7f7;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #040000;
  letter-spacing: 0.1em;
}

.contact-tel a,
.tel-pc {
  pointer-events: none;
  cursor: default;
}

.contact-tel-text {
  font-size: 24.5px;
}

.keitai-1 {
  font-size: 34px;
}

.ieden {
  font-size: 15px;
  font-weight: normal;
}

.contact-etc {
  background: url("../img/pc/contact_bg_border.svg") center bottom no-repeat;
  justify-content: space-between;
  letter-spacing: 0.07em;
}

.contact-box-mini {
  display: flex;
  align-items: center;
  gap: 25px;
}

.contact-box-mini p {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 24.5px;
  letter-spacing: 0.1em;
}

.url-box {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: #fff;
}

.url-box i {
  font-size: 18px;
}

.line {
  background-color: #00b833;
  width: 245px;
  border-radius: 9999px;
  font-size: 18px;
}

.web {
  background: url("../img/pc/contact_bg_text.svg") center no-repeat;
  width: 315px;
}

/* Works */
.works-title {
  text-align: center;
  padding: 115px 0px 40px 0px;
}

.works-title h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 2.5vw, 50px);
  width: 95%;
  max-width: 1720px;
  margin: 0 auto;
}

.works-card {
  position: relative;
  aspect-ratio: 2.018/1;
  overflow: hidden;
}

.works-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.works-button {
  position: absolute;
  bottom: 5.5%;
  right: 4%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background-color: #040000;
  border-radius: 17px;
  padding: 7px 15px 5px;
  color: #b3b3b4;
}

.works-etc {
  background: url("../img/pc/works_fukidashi.svg") center no-repeat;
  height: 72px;
  margin-top: 120px;
  padding-top: 12px;
  font-size: 23.5px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
}

.float2 {
  padding-bottom: 40px;
  margin-bottom: -40px;
}

.slider-works {
  display: flex;
  gap: 15px;
  width: max-content;
  animation: scroll-works 50s linear infinite;
}

.slider-works img {
  width: 2950px; /* height:324px */
  flex-shrink: 0;
  translate: 0 12%;
}

@keyframes scroll-works {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-2950px - 15px));
  }
}

/* Strength */
.strength {
  background-color: #fff;
}

.strength-left {
  gap: 45px;
  padding-top: 130px;
}

.strength-left h3 {
  padding-top: 10px;
  color: #2f4452;
}

.strength-left p {
  color: #474645;
}

.strength-card {
  width: 760px;
  height: 331px;
  padding: 45px 0px 0px 103px;
}

.strength-card h2 {
  padding-bottom: 88px;
}

.stc1 {
  background-image: url("../img/pc/strength_frame1.svg");
}

.stc2 {
  background-image: url("../img/pc/strength_frame2.svg");
}

.stc3 {
  background-image: url("../img/pc/strength_frame3.svg");
}

.stc4 {
  background-image: url("../img/pc/strength_frame4.svg");
}

/* Workflow */
.workflow {
  padding-top: 130px;
  background: url("../img/pc/workflow_bg.webp") center top no-repeat #fff;
}

.workflow-title {
  margin-bottom: 75px;
  text-align: center;
}

.workflow-title h4 {
  padding: 10px 0px 5px;
  font-size: 18px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: calc(380px * 3 + 28px * 2);
  margin: 0 auto;
  gap: 32px 28px;
  align-items: start;
}

.workflow-card {
  display: flex;
  min-height: 408px;
  aspect-ratio: 1/1.071;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  background-repeat: no-repeat;
  overflow: hidden;
}

.workflow-card:nth-child(3n + 2) {
  margin-top: 22px;
}

.workflow-card:nth-child(3n) {
  margin-top: 44px;
}

.workflow-text {
  width: 100%;
  margin-top: auto;
}

.workflow-text h3 {
  font-size: 22px;
  color: #040000;
  letter-spacing: 0.12em;
  text-align: center;
}

.workflow-text p {
  padding: 15px 0px 25px 35px;
  color: #474645;
  line-height: 2;
  letter-spacing: 0.07em;
}

.wfc1 {
  background-image: url("../img/pc/workflow_card1.webp");
}

.wfc2 {
  background-image: url("../img/pc/workflow_card2.webp");
}

.wfc3 {
  background-image: url("../img/pc/workflow_card3.webp");
}

.wfc4 {
  background-image: url("../img/pc/workflow_card4.webp");
}

.wfc5 {
  background-image: url("../img/pc/workflow_card5.webp");
}

.wfc6 {
  background-image: url("../img/pc/workflow_card6.webp");
}

/* Testimonials */
.testimonials {
  background-color: #fff;
  padding-top: 90px;
}

.testimonials-title {
  padding: 33px 0px;
  background: url("../img/pc/testimonials_title.svg") center top no-repeat;
  font-size: 36.5px;
  color: #2f4452;
  font-weight: bold;
  letter-spacing: 0.07em;
  text-align: center;
}

.slider-testimonials {
  display: flex;
  width: max-content;
  gap: 30px;
}

.sct1 {
  animation: scroll-workflow1 50s linear infinite;
  margin-bottom: 30px;
}

.sct2 {
  animation: scroll-workflow2 50s linear infinite;
  margin-bottom: 85px;
}

.slider-testimonials img {
  width: 2200px;
  flex-shrink: 0;
}

@keyframes scroll-workflow1 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-2200px - 30px));
  }
}

@keyframes scroll-workflow2 {
  0% {
    transform: translateX(-120px);
  }
  100% {
    transform: translateX(calc(-120px - 2200px - 30px));
  }
}

/* Service Plans */
.service-plans {
  padding: 100px 0px 70px;
}

.plans-title {
  padding-bottom: 33px;
  text-align: center;
}

.plans-title h4 {
  padding-bottom: 25px;
  font-size: 18px;
}

.plans-subtitle {
  padding: 40px 0px 20px;
  text-align: center;
}

.plans-card {
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 40px 35px 30px;
  background-color: #fff;
  border: 6px solid #2f4452;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.5s ease-out;
}

.plans-card.active {
  opacity: 1;
  transform: translateY(0);
}

.plans-card:last-child {
  padding: 35px;
}

.plans-card-title {
  display: flex;
  justify-content: space-between;
  padding: 0px 15px 20px 25px;
  font-weight: bold;
}

.plans-card-title h2 {
  font-size: 26px;
  letter-spacing: 0.07em;
  color: #231815;
}

.plans-price {
  display: flex;
  align-items: first baseline;
}

.plans-price span {
  display: flex;
}

.plans-page {
  margin-right: 20px;
  font-size: 19px;
  color: #040000;
}

.plans-number {
  margin-right: 5px;
  font-size: 34px;
  color: #2f4452;
}

.plans-yen {
  margin-right: 10px;
  font-size: 20px;
  color: #2f4452;
}

.plans-tax {
  letter-spacing: 0.07em;
  color: #3e3a39;
}

.plans-card p {
  padding: 25px;
  border-top: 1.3px solid #d5dadc;
  color: #474645;
  letter-spacing: 0.07em;
}

.plans-grid /* ul */ {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.plans-grid li {
  background-color: #f7f7f7;
  color: #474645;
  line-height: 2.5;
  text-align: center;
}

.option {
  display: flex;
  align-items: center;
  padding: 0px 10px 15px;
  border-bottom: 1px solid #d5dadc;
  font-weight: bold;
  letter-spacing: 0.07em;
}

.option:not(:first-child) {
  padding-top: 15px;
}

.option-name {
  width: 25%;
  color: #040000;
}

.option-description {
  flex: 1;
  color: #474645;
  font-weight: normal;
}

.option-price {
  width: 25%;
  color: #231815;
  text-align: right;
}

.option-price span {
  margin-right: 10px;
  color: #2f4452;
  font-size: 20px;
}

/* Partnership*/
.partnership {
  background-color: #fff;
  padding: 100px 0px 130px;
}

.ps-content {
  background: url("../img/pc/partnership_bg.webp") center top no-repeat;
  max-width: 1700px;
  margin: 0 auto;
  padding-top: 70px;
}

.ps-title {
  background: url("../img/pc/partnership_bg_text.svg") left center no-repeat;
  padding: 5px 0px 0px 20px;
  line-height: 3;
}

.ps-text {
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding: 35px 0px 90px 85px;
}

.ps-content h4 {
  color: #e3e3e3;
  font-size: 22px;
  letter-spacing: 0.1em;
}

.ps-content h1 {
  font-size: 40.7px;
  letter-spacing: 0.1em;
}

.ps-text p {
  color: #bebebe;
  line-height: 2;
  letter-spacing: 0.07em;
}

.ps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.ps-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  height: 360px;
  color: #474645;
}

.ps-card h5 {
  translate: 0 -50%;
  background-color: #2f4452;
  border-radius: 9999px;
  width: max-content;
  padding: 0 25px;
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  line-height: 2.5;
  letter-spacing: 0.1em;
}

.ps-card h2 {
  translate: 0 -20%;
  color: #2f4452;
  font-size: 36.5px;
  letter-spacing: 0.15em;
}

.ps-card-title {
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: left;
}

.ps-card-flex {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 15px;
  text-align: center;
}

.ps-card-flex p {
  background-color: #f7f7f7;
  width: 335px;
  line-height: 3;
  letter-spacing: 0.05em;
}

.ps-etc {
  padding: 60px 0px;
  color: #474645;
  text-align: center;
}

.ps-etc h3 {
  background: url("../img/pc/partnership_fukidashi.svg") center no-repeat;
  height: 72px;
  padding-top: 3px;
  color: #fff;
  font-size: 23.6px;
  font-weight: bold;
  line-height: 2.5;
  letter-spacing: 0.05em;
}

.ps-etc h1 {
  color: #2f4452;
  padding: 10px 0px 20px;
}

.ps-etc p {
  line-height: 2;
  letter-spacing: 0.05em;
}

.ps-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #040000;
  border: 8px solid #2f4452;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px;
}

.ps-info-logo {
  border-right: 2px solid #3e3a39;
  padding: 7px 35px 3px 20px;
}

.ps-info-logo p {
  padding-bottom: 10px;
  color: #bbb;
  letter-spacing: 0.05em;
}

.ps-info-text {
  color: #bbb;
  line-height: 2;
  letter-spacing: 0.12em;
}

.ps-info a {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #2f4452;
  margin-right: 15px;
  padding: 13px 22px 11px;
  color: #d5d5d5;
  font-size: 18px;
}

/* Message */
.message {
  background-color: #f7f7f7;
  padding-top: 100px;
}

.message-box {
  height: 790px;
  background: url("../img/pc/message_bg.webp") center top no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  font-weight: bold;
}

.message-box h2 {
  translate: 0 50%;
  margin-top: 7px;
  padding: 15px 30px 13px;
  background-color: #fff;
  color: #0c0f11;
  font-size: 29px;
  letter-spacing: 0.05em;
}

.message-text {
  width: 1200px;
  padding: 70px 0px 40px;
  background-color: #040000;
  text-align: center;
}

.message-text-foot {
  padding-top: 20px;
}

.message-text p {
  color: #efefef;
  font-size: 17px;
  letter-spacing: 0.05em;
  line-height: 2.5;
}

.message-text span {
  padding-right: 15px;
  color: #d1d1d1;
  font-size: 14px;
  font-weight: normal;
}

p.message-text-foot {
  font-size: 18px;
}

/* FAQ */
.faq {
  padding: 110px 0 60px;
  background: #f7f7f7;
  color: #040000;
}

.faq-title {
  padding-bottom: 30px;
  text-align: center;
}

.faq-title h4 {
  padding-bottom: 13px;
  font-size: 18px;
}

.accordion-item {
  box-shadow: 0 5px 20px rgb(0, 0, 0, 0.05);
  max-width: 1200px;
  margin: 0 auto 30px;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 20px 30px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.03em;
  user-select: none;
}

.accordion-header div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.accordion-header img {
  margin-top: 3px;
}

.accordion-header i {
  display: inline-block;
}

.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s;
  overflow: hidden;
}

.accordion-content-inner {
  background-color: #fff;
  border-top: 1px solid rgb(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s;
  min-height: 0;
}

.accordion-content-inner p {
  padding: 20px 30px;
  line-height: 1.7;
}

.accordion-item.is-open .accordion-header i {
  transform: rotate(180deg);
}

.accordion-item.is-open .accordion-content {
  grid-template-rows: 1fr;
}

.accordion-item.is-open .accordion-content-inner {
  opacity: 1;
}

/* Form */
.form {
  background-color: #fff;
  padding: 110px 0px 150px;
  color: #040000;
  font-weight: bold;
}

.form-title {
  padding-bottom: 15px;
  font-size: 22px;
  letter-spacing: 0.1em;
  text-align: center;
}

.form-title img {
  translate: 0 -18%;
}

.form-box {
  display: flex;
  max-width: 1200px;
  height: 110px;
  margin: 0 auto;
}

.form-box-mini {
  width: 600px;
  border-right: 3px solid #eeeeef;
  font-size: 19px;
  letter-spacing: 0.07em;
  text-align: center;
}

.form-box-mini:not(:last-child) {
  border-left: 3px solid #eeeeef;
}

.keitai-2 {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size: 26.5px;
  letter-spacing: 0.1em;
}

.keitai-2 svg {
  background-color: #040000;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  padding: 5px;
  fill: #fff;
}

.form-box-mini .line {
  margin: 0 auto;
}

.form-text {
  padding: 50px 0px 45px;
  color: #3e3a39;
  font-weight: normal;
  letter-spacing: 0.07em;
  text-align: center;
}

.submit-wrapper {
  position: relative;
  background: url("../img/pc/form_bg_submit.svg") center no-repeat;
  width: 265px;
  height: 72px;
  margin: 70px auto 0px;
}

.submit-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 30px;
  color: #fff;
  font-size: 22px;
  letter-spacing: 0.1em;
  pointer-events: none;
  transform: translateZ(0);
}

.submit-wrapper input[type="submit"] {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  border: none;
  width: 100%;
  height: 100%;
  color: transparent;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}

/* フォーム */
.wpcf7-not-valid-tip {
  display: none;
}

.wpcf7-form-control-wrap[data-name="tel-1"] .wpcf7-not-valid-tip,
.wpcf7-form-control-wrap[data-name="tel-2"] .wpcf7-not-valid-tip {
  display: none !important;
}

.wpcf7 form.invalid .wpcf7-not-valid-tip {
  display: block;
}

.wpcf7-list-item {
  margin-left: 0;
  margin-right: 30px;
}

.custom-form {
  border-collapse: collapse;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  width: 800px;
  margin: 0 auto;
  color: #3e3a39;
}

.custom-form th {
  background-color: #f5f5f5;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  width: 27%;
  padding-top: 16px;
  padding-left: 40px;
  font-weight: normal;
  vertical-align: top;
  text-align: left;
}

.custom-form .short1 th {
  padding-bottom: 16px;
}

.custom-form td {
  position: relative;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 16px;
  font-weight: normal;
  vertical-align: top;
}

.custom-form input[type="text"],
.custom-form input[type="email"],
.custom-form textarea {
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  padding: 8px;
}

.short1 input[type="text"] {
  width: 52.5%;
}

.short2 input[type="text"] {
  width: 12.5%;
}

.custom-form textarea {
  height: 130px;
}

.required {
  color: #ff4d4d;
}

.small {
  font-size: 13px;
}

/* Footer */
.footer {
  padding: 40px 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.footer-link a {
  display: flex;
  padding-bottom: 15px;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.07em;
}

.footer-logo {
  padding: 70px 0 50px;
  border-top: 1px solid #2f2f2f;
  text-align: center;
}

.footer-link-os {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 600px;
  margin: 0 auto 70px;
  border: 1px solid #2f2f2f;
  color: #b3b3b4;
  line-height: 5;
  letter-spacing: 0.07em;
}

.footer-etc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: #b3b3b3;
  letter-spacing: 0.07em;
}

.footer-etc a {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 15px 20px 15px 30px;
  border: 1px solid #b3b3b3;
  border-radius: 9999px;
  color: #b3b3b3;
}

.footer-border {
  width: 100px;
  height: 20px;
  border-bottom: 1px solid #b3b3b3;
}
