@charset "UTF-8";
html {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #1F2937;
  font-weight: 400;
  letter-spacing: 0.01rem;
  line-height: 1.76;
  height: 100%;
}

@media (max-width: 1280px) {
  html {
    font-size: 1.25vw;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 4.2666666667vw;
  }
}

.u_sp {
  display: none;
}

body,
p {
  font-size: 16px;
}

@media (max-width: 768px) {
  .u_sp {
    display: block !important;
  }
  .u_pc {
    display: none !important;
  }
  p {
    font-size: 14px;
  }
}
/* コンテンツ幅 */
.inner {
  max-width: 1280px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

@media (min-width: 769px) {
  .p-flex {
    display: flex;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  background-color: #FFFFFF;
}

/* フォントファミリー共通クラス
***************************************************************/
.ff-montserrat {
  font-family: "Montserrat", sans-serif;
}

.ff-poppins {
  font-family: "Poppins", sans-serif;
}

.ff-zen-kaku {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  section {
    padding: 40px 0;
  }
}

/* セクションタイトル共通クラス
***************************************************************/
.sec_title {
  font-weight: 500;
  font-size: 48px;
  line-height: 1em;
  text-align: center;
  color: #1F2937;
  margin-bottom: 48px;
  letter-spacing: 0.02em;
  font-family: "Poppins", sans-serif;
}
.sec_title span {
  font-size: 16px;
  line-height: 1em;
  display: block;
  margin-top: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media (max-width: 768px) {
  .sec_title {
    font-size: 36px;
    margin-bottom: 40px;
  }
}

/* h3共通クラス
***************************************************************/
h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4em;
  color: #1F2937;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  h3 {
    font-size: 18px;
  }
}

/* ヘッダー
***************************************************************/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px 0;
  background-color: rgba(255, 255, 255, 0);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  z-index: 100;
}
header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  width: calc(100% - 200px);
  margin: 0 auto;
}
@media screen and (max-width: 1500px) {
  header .header_inner {
    width: calc(100% - 40px);
  }
}
header .header_inner .logo_content .logo {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4em;
  color: #1F2937;
  text-decoration: none;
}

/* ハンバーガーメニュー非表示 */
.toggle-menu {
  display: none;
}

/* ヘッダーリンク */
.header_nav .global_nav ul {
  display: flex;
  gap: 20px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header_nav .global_nav ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5em;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  transition: opacity 0.3s;
}
.header_nav .global_nav ul li a:hover {
  opacity: 0.7;
}
.header_nav__button {
  background-color: #1F2937;
  color: #FFFFFF !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4285714286em;
}
.header_nav__button:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  header {
    padding: 10px 0;
  }
  header .header_inner {
    display: block;
  }
  header .header_inner .logo_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  /* ハンバーガーメニュー */
  .toggle-menu {
    display: inline-block;
    width: 40px;
    height: 30px;
    position: relative;
    z-index: 100;
  }
  .toggle-menu .toggle-line {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    text-indent: -9999px;
    width: 27px;
    height: 1px;
    background-color: #1F2937;
  }
  .toggle-menu .toggle-line::before,
  .toggle-menu .toggle-line::after {
    content: "";
    position: absolute;
    left: 0;
    width: 27px;
    height: 1px;
    background-color: #1F2937;
    transition: 0.3s;
  }
  .toggle-menu .toggle-line::before {
    top: -7px;
  }
  .toggle-menu .toggle-line::after {
    top: 7px;
  }
  .header_nav {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 15px 0;
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 90;
    transform: translateX(100%);
    transition: 0.3s ease-out;
  }
  .header_nav .global_nav {
    margin-top: 80px;
    padding: 0 30px;
  }
  .header_nav .global_nav ul {
    flex-flow: column;
    gap: 20px;
  }
  .header_nav .global_nav ul li a {
    color: #fff;
  }
  .open .toggle-menu {
    transition: all 0.5s linear 1s;
  }
  .open .toggle-menu .toggle-line {
    height: 0;
    background-color: #000;
  }
  .open .toggle-menu .toggle-line::before {
    background-color: #fff;
    transform: rotate(-45deg);
    top: 0;
  }
  .open .toggle-menu .toggle-line::after {
    background-color: #fff;
    transform: rotate(45deg);
    top: 0;
  }
  .open .header_nav {
    transform: translateX(0);
    overflow: auto;
  }
}
/* フッター
***************************************************************/
footer {
  background-color: #1F2937;
  width: 100%;
  padding: 48px 0;
  position: relative;
  z-index: 1;
}
footer .inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer_content {
  text-align: center;
}

.footer_logo {
  font-size: 24px;
  line-height: 1.3333333333em;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.footer_copyright {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5em;
  color: #4B5563;
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0;
  }
  .footer_logo {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .footer_copyright {
    font-size: 14px;
  }
}
.background-block {
  width: 100%;
  height: 100vh;
  background: linear-gradient(145deg, #AEE6D8 0%, #FFD6A5 50%, #CDB4DB 100%);
  position: fixed;
  top: 0;
  left: 0;
}

/* ローディング画面
***************************************************************/
.lock-scroll {
  overflow: hidden;
  height: 100vh;
  touch-action: none;
  /* モバイルタッチ対策 */
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 1000;
}
.loading .loading-circle-wrap {
  position: relative;
  width: 100%;
  height: 40px;
  margin: 0 auto;
  background-color: #ccc;
  top: 50%;
  transform: translateY(-50%);
}
.loading .loading-circle-wrap .loading-circle {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.loading .loading-circle-wrap .loading-circle1 {
  left: 0%;
  background-color: #AEE6D8;
}
.loading .loading-circle-wrap .loading-circle2 {
  left: 33.33%;
  background-color: #FFD6A5;
}
.loading .loading-circle-wrap .loading-circle3 {
  left: 66.66%;
  background-color: #CDB4DB;
}
.loading .loading-circle-wrap .loading-circle4 {
  left: 100%;
  background-color: #FF9B9B;
}

.block {
  width: 100%;
  height: 100vh;
}

.block.active {
  animation: clipPath 5s cubic-bezier(0.33, 0, 0.67, 1) 0s 1 forwards;
}

@keyframes clipPath {
  0% {
    -webkit-clip-path: circle(0 at 50% 50%);
            clip-path: circle(0 at 50% 50%);
  }
  99% {
    -webkit-clip-path: circle(150% at 50% 50%);
            clip-path: circle(150% at 50% 50%);
  }
  100% {
    height: 100vh;
  }
}
/* ヒーローセクション
***************************************************************/
.t-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.t-hero .inner {
  max-width: 100%;
  width: calc(100% - 200px);
}
@media screen and (max-width: 1280px) {
  .t-hero .inner {
    width: calc(100% - 80px);
  }
}
.t-hero__content {
  text-align: center;
  padding: 269px 0;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1921px) {
  .t-hero__content {
    margin-left: 5.2083333333vw;
  }
}
.t-hero__title {
  font-weight: 600;
  font-size: 9.375vw;
  line-height: 1em;
  letter-spacing: 0.1em;
  color: #374151;
  margin-bottom: 26px;
  text-align: left;
}
.t-hero__subtitle {
  font-weight: 500;
  font-size: 3.125vw;
  line-height: 1em;
  letter-spacing: 0.1em;
  color: #374151;
  text-align: left;
}
@media (max-width: 768px) {
  .t-hero__title {
    font-size: 3rem;
  }
  .t-hero__subtitle {
    font-size: 1.75rem;
  }
  .t-hero__bg-item {
    display: none;
  }
}
.t-hero svg {
  width: 41.6666666667vw;
  position: relative;
  right: -5rem;
}

/* Aboutセクション
***************************************************************/
.t-about {
  background-color: rgba(255, 255, 255, 0.2);
}
.t-about__content {
  max-width: 960px;
  margin: 0 auto;
}
.t-about__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .t-about__body {
    gap: 24px;
  }
}
.t-about__text {
  width: 60%;
}
.t-about__heading {
  margin-bottom: 24px;
}
.t-about__paragraph {
  margin-bottom: 24px;
}
.t-about__paragraph p {
  line-height: 1.625em;
}
.t-about__paragraph a {
  text-decoration: underline;
}
.t-about__image img {
  width: 100%;
  height: auto;
}
.t-about__visual {
  flex: 1;
}
.t-about__visual img {
  width: 80%;
  height: auto;
  margin: 0 auto;
  display: block;
}
.t-about__social {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  align-items: center;
}
.t-about__social img {
  width: 24px;
  height: 24px;
}
@media (max-width: 768px) {
  .t-about__body {
    flex-direction: column;
  }
  .t-about__text, .t-about__visual {
    min-width: 100%;
  }
}

/* servicesセクション
***************************************************************/
.t-service__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .t-service__list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .t-service__list {
    flex-direction: column;
  }
}

.service-card {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.service-card__title_wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 12px;
}
.service-card__icon img {
  width: 85px;
  height: 55px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .service-card__icon img {
    width: 50px;
    height: 40px;
  }
}
.service-card__text {
  line-height: 1.5em;
}

/* Worksセクション
***************************************************************/
.t-works__list {
  margin-bottom: 48px;
}
.t-works__button {
  text-align: center;
  padding-top: 48px;
}
.works-swiper {
  position: relative;
  /* プログレスバーの背景色変更 */
  /* プログレスバーの色変更 */
}
.works-swiper .swiper-slide {
  height: auto;
}
@media (min-width: 769px) {
  .works-swiper .swiper-slide {
    transform: scale(0.8);
    transition: transform 0.8s ease-in-out;
  }
  .works-swiper .swiper-slide-active {
    transform: scale(1);
    transition: transform 0.8s ease-in-out;
  }
}
.works-swiper .swiper-slide a {
  width: 100%;
}
.works-swiper .swiper-pagination {
  top: -12px;
  position: relative;
  margin-top: 32px;
  width: 90%;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .works-swiper .swiper-pagination {
    width: 85%;
  }
}
@media (max-width: 768px) {
  .works-swiper .swiper-pagination {
    width: 100%;
  }
}
.works-swiper .swiper-pagination-progressbar {
  background: rgba(75, 85, 99, 0.2) !important;
}
.works-swiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #4B5563 !important;
}
.works-swiper .swiper-button {
  position: absolute;
  bottom: 0;
  top: auto;
  transform: none;
}
.works-swiper .swiper-button-next,
.works-swiper .swiper-button-prev {
  color: #4B5563;
  width: 32px;
  height: 32px;
  border: 1px solid #4B5563;
  border-radius: 50%;
  transition: opacity 0.3s;
}
.works-swiper .swiper-button-next:hover,
.works-swiper .swiper-button-prev:hover {
  opacity: 0.8;
}
.works-swiper .swiper-button-next::after,
.works-swiper .swiper-button-prev::after {
  font-size: 12px;
}
.works-swiper .swiper-button-next {
  left: 50px;
}
.works-swiper .swiper-button-prev {
  left: 0;
}
@media (max-width: 768px) {
  .works-swiper .swiper-button-next,
  .works-swiper .swiper-button-prev {
    display: none;
  }
}

.work-card {
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.work-card__image {
  width: 100%;
  overflow: hidden;
  padding: 24px 24px 0;
}
.work-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.work-card__body {
  padding: 24px;
}
.work-card__title {
  margin-bottom: 8px;
}
.work-card__text {
  line-height: 1.5em;
}
.work-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.work-card__tag {
  font-size: 14px;
  line-height: 1.4285714286em;
  color: #374151;
  padding: 4px 12px;
  border-radius: 9999px;
}
.work-card__tag--primary {
  background-color: rgba(174, 230, 216, 0.2);
}
.work-card__tag--secondary {
  background-color: rgba(255, 214, 165, 0.2);
}
.work-card__tag--tertiary {
  background-color: rgba(205, 180, 219, 0.2);
}
.work-card__tag--quaternary {
  background-color: rgba(255, 155, 155, 0.2);
}
.work-card__tag--quinary {
  background-color: rgba(174, 230, 216, 0.35);
}

.t-works .work-card__text {
  margin-bottom: 16px;
}

/* Priceセクション
***************************************************************/
.t-price__content {
  max-width: 960px;
  margin: 0 auto;
}
.t-price__table {
  overflow-x: auto;
}
.price-table {
  width: 99%;
  border-collapse: collapse;
  background-color: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  margin-bottom: 48px;
}
.price-table td,
.price-table th {
  border-left: none;
  border-right: none;
}
.price-table__header {
  background-color: #1F2937;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5em;
  color: #FFFFFF;
  padding: 20px 24px;
  text-align: center;
}
.price-table__category-title {
  font-size: 24px;
  line-height: 1.5em;
  text-align: center;
  margin-bottom: 24px;
}
.price-table__service {
  line-height: 1.625em;
  color: #1F2937;
  padding: 16px 24px;
  border-bottom: 1px solid #D1D5DB;
}
.price-table__price {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5em;
  color: #1F2937;
  padding: 16px 24px;
  text-align: right;
  border-bottom: 1px solid #D1D5DB;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .price-table__price {
    font-size: 16px;
  }
}
.price-table tbody tr:last-child .price-table__service,
.price-table tbody tr:last-child .price-table__price {
  border-bottom: none;
}
@media (max-width: 768px) {
  .price-table__header {
    padding: 16px 20px;
    font-size: 16px;
  }
  .price-table__category-title {
    font-size: 18px;
  }
  .price-table__service {
    font-size: 14px;
    padding: 12px 20px;
  }
  .price-table__price {
    padding: 12px 20px;
  }
}

/* Flowセクション
***************************************************************/
.t-flow {
  background-color: rgba(255, 255, 255, 0.2);
}
.t-flow__content {
  max-width: 960px;
  margin: 0 auto;
}
.t-flow__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.flow-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.flow-item__number {
  font-weight: 700;
  line-height: 1.5em;
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: #1F2937;
  color: #FFFFFF;
}
.flow-item__body {
  flex: 1;
}
.flow-item__title {
  margin-bottom: 8px;
}
.flow-item__text {
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .flow-item {
    gap: 16px;
  }
}

/* Contactセクション
***************************************************************/
.t-contact__content {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.t-contact__subtitle {
  font-size: 20px;
  line-height: 1.4em;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .t-contact__subtitle {
    font-size: 16px;
  }
}
.t-contact__form {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .t-contact__form {
    padding: 24px;
  }
}
.t-contact__privacy {
  background-color: #FFFFFF;
  border: 1px solid #D1D5DB;
  border-radius: 10px;
  padding: 24px;
  text-align: left;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .t-contact__privacy {
    padding: 12px;
  }
}
.t-contact__privacy-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4em;
  color: #1F2937;
  margin-bottom: 16px;
  text-align: center;
}
.t-contact__privacy-content {
  max-height: 300px;
  overflow-y: auto;
  padding-right: 16px;
}
.t-contact__privacy-content h4 {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5em;
  color: #1F2937;
  margin-top: 8px;
}
.t-contact__privacy-content p {
  font-size: 14px;
  line-height: 1.6em;
  margin-bottom: 8px;
}

/* ボタン
***************************************************************/
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 40px;
  font-weight: 600;
  line-height: 1.5em;
  text-align: center;
  color: #FFFFFF;
  background-color: #1F2937;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}
.btn:hover {
  opacity: 0.8;
}
.btn--submit {
  background: linear-gradient(90deg, #AEE6D8 0%, #FFD6A5 100%);
  color: #1F2937;
}

/* contact-form
***************************************************************/
.form-group {
  line-height: 2;
  width: 100%;
  padding: 16px 0;
}
@media (min-width: 769px) {
  .form-group {
    display: flex;
    gap: 3rem;
  }
}
.form-group label {
  width: 15.625rem;
  min-width: 220px;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .form-group label {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    font-size: 14px;
  }
}
.form-group label .required {
  background-color: #1F2937;
  padding: 0 12px;
  color: #FFFFFF;
  line-height: 2;
  font-size: 12px;
}
@media (max-width: 768px) {
  .form-group label .required {
    font-size: 10px;
  }
}
.form-group textarea.company {
  height: 49px;
}
@media (max-width: 768px) {
  .form-group textarea.company {
    height: 5.25rem;
  }
}
.form-group .wpcf7-form-control-wrap {
  flex: 1;
}
@media (max-width: 768px) {
  .form-group .wpcf7-form-control-wrap {
    width: 100%;
  }
}
.form-group .wpcf7-form-control-wrap input,
.form-group .wpcf7-form-control-wrap select,
.form-group .wpcf7-form-control-wrap textarea,
.form-group .wpcf7-form-control-wrap input[type=email] {
  background-color: #FFFFFF;
  border: 1px solid #D1D5DB;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  width: 100%;
  text-align: left;
}
@media (max-width: 768px) {
  .form-group .wpcf7-form-control-wrap input,
  .form-group .wpcf7-form-control-wrap select,
  .form-group .wpcf7-form-control-wrap textarea,
  .form-group .wpcf7-form-control-wrap input[type=email] {
    font-size: 14px;
  }
}
.form-group .wpcf7-form-control-wrap textarea {
  line-height: 1.6;
}
.form-group .wpcf7-radio,
.form-group .checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 16px;
}
.form-group .wpcf7-radio label,
.form-group .checkbox label {
  width: auto;
  min-width: unset;
}
.form-group .wpcf7-radio label input,
.form-group .checkbox label input {
  padding: 0;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  margin-top: 2px;
}

.massage-wrap {
  align-items: flex-start;
}

.agree-group {
  text-align: center;
  margin: 0 auto;
  margin: 40px 0;
}
@media (max-width: 768px) {
  .agree-group {
    margin: 24px 0;
  }
}
.agree-group a {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .agree-group span {
    font-size: 14px;
  }
}

.submit-btnwrap {
  text-align: center;
  margin: 0 auto;
}
.submit-btnwrap .wpcf7-spinner {
  display: none;
}

.previous-btn,
.top-bk-btn,
input[type=submit] {
  text-align: center;
  border-radius: 40px;
  color: #FFFFFF;
  font-size: 14px;
  padding: 16px 80px;
  background-color: #1F2937;
  border: unset;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .previous-btn,
  input[type=submit] {
    width: 280px;
  }
}

@media (max-width: 768px) {
  .previous-btn {
    margin-bottom: 24px;
  }
}

.previous-btn,
.top-bk-btn {
  cursor: pointer;
}

.previous-btn:hover,
.top-bk-btn:hover,
input[type=submit]:hover {
  background-color: #e6e6e6;
  opacity: 1;
}

.form-btn-wrap {
  margin-top: 40px;
  justify-content: center;
}
@media (min-width: 769px) {
  .form-btn-wrap {
    display: flex;
    gap: 2.5rem;
  }
}
@media (max-width: 768px) {
  .form-btn-wrap {
    text-align: center;
  }
}

.wpcf7-spinner {
  display: none;
}

input[type=checkbox] {
  padding: 0;
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

/* チェックボックスの基本リセット */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  /* デフォルトの矢印を非表示 */
  padding-right: 75px !important;
}
@media (max-width: 768px) {
  select {
    width: 100%;
  }
}

/* セレクトボックスの矢印デザイン変更 */
.dropdown-menu {
  position: relative;
}

input[type=text]::-moz-placeholder, textarea::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder {
  color: #ccc;
  font-weight: 300;
}

input[type=text]::placeholder,
textarea::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder {
  color: #ccc;
  font-weight: 300;
}

.contact-thanks-text {
  text-align: center;
}
.contact-thanks-text .contact-text::before {
  display: none;
}
.contact-thanks-text .top-bk-btn {
  margin-top: 40px;
  display: inline-block;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control-wrap {
  position: relative;
}

.wpcf7-not-valid-tip {
  position: absolute;
  bottom: -20px;
  left: 0;
  font-size: 12px;
}

.a-works__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .a-works__list {
    grid-template-columns: 1fr;
  }
}
.a-works__list .work-card__image {
  padding: 24px 24px 0;
}
.a-works__list .work-card__text {
  margin-bottom: 16px;
}
.a-works__list .work-card__link {
  width: 100%;
}

.t-single__content {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 60px;
}
@media (max-width: 768px) {
  .t-single__content {
    padding: 20px;
  }
}
.t-single__thumbnail {
  margin: 0 auto 60px;
}
@media (max-width: 768px) {
  .t-single__thumbnail {
    margin: 0 auto 30px;
  }
}
.t-single__thumbnail img {
  -o-object-fit: contain;
     object-fit: contain;
}
.t-single h1 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .t-single h1 {
    font-size: 20px;
  }
}
.t-single .work-card__content {
  padding: 24px 8px;
  border-bottom: 1px solid #D1D5DB;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .t-single .work-card__content {
    padding: 16px 8px;
    margin-bottom: 16px;
  }
}
.t-single .work-card__content .work-card__title {
  font-size: 18px;
}
@media (max-width: 768px) {
  .t-single .work-card__content .work-card__title {
    font-size: 16px;
  }
}
.t-single .work-card__content a {
  text-decoration: underline;
}
.t-single__button {
  text-align: center;
  padding-top: 48px;
}

.p-confirm {
  position: relative;
  z-index: 1;
}/*# sourceMappingURL=style.css.map */