/*
Theme Name: ooyama
Theme URI: 
Author: Planperfect
Description: このテーマは大山歯科医院用に作成されました。
Version: 1.0
*/

@charset "utf-8";

body {
  font-family: "Shippori Mincho", serif !important;
  letter-spacing: 2px;
  line-height: 1.5;
  color: #010621 !important;
}

/* body:not(.loaded) {
  overflow: hidden;
} */

.loading-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loading-content {
  text-align: center;
  max-width: 300px;
  width: 100%;
}

.load_top_text {
  font-size: 16px;
  font-weight: 200;
  margin-bottom: 20px;
  letter-spacing: 2px;
  opacity: 0;
  color: #ffb6c1;
  transform: scale(0.8);
  animation: logoAppear 1s ease-out 0.5s forwards;
}

.loading-logo {
  width: 120px;
  height: auto;
  opacity: 0;
  transform: scale(0.8);
  animation: logoAppear 1s ease-out 0.5s forwards;
  filter: drop-shadow(0 4px 8px rgba(61, 99, 55, 0.2));
}

.loading-progress {
  margin-top: 30px;
}

.loading-bar {
  width: 100%;
  height: 6px;
  background: #e9ecef;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 15px;
  position: relative;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.loading-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffb6c1 0%, #f28fa3 100%);
  border-radius: 3px;
  width: 0%;
  transition: width 0.1s ease;
  position: relative;
  box-shadow: 0 1px 3px rgba(61, 99, 55, 0.3);
}

.loading-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: shimmer 1.5s infinite;
}

.loading-text {
  font-size: 18px;
  color: #ffb6c1;
  font-weight: 100;
  letter-spacing: 1px;
  font-family: "Shippori Mincho", serif;
}

.loading-percentage {
  font-size: 24px;
  font-weight: 700;
  color: #ffb6c1;
}

@keyframes logoAppear {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.hd_container {
  width: 100%;
  max-width: 100%;
  padding: 0 4.5%;
}

#ball {
  background: #ffb6c1;
}

header {
  position: fixed;
  width: 95%;
  left: 0;
  top: 0;
  z-index: 1000;
  box-sizing: border-box;
  background: transparent;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.header_flex {
  margin: 0 auto;
  padding: 40px 150px 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100vw;
  box-sizing: border-box;
  width: 100%;
  overflow-x: hidden;
}

.header_left {
  width: 6%;
}

.header_logo {
  min-width: 100px;
}

.header_list {
  display: flex;
  gap: 0 35px;
  /* color: #fff; */
  justify-content: space-between;
}

.tp-offcanvas-2-wrapper .right-box {
  padding: 0;
  background-image: url("img/nav_img.webp");
  background-size: cover;
}

.d-inline-block {
  margin: 30px 30px 0 0;
}

.tp-header-logo img {
  width: 13%;
}

.nv_sv_icon {
  width: 5%;
  object-fit: cover;
  aspect-ratio: 1/1;
  margin-right: 15px;
}

.tp-offcanvas-2-area .tp-offcanvas-menu > nav > ul > li > a::after {
  color: #b2a863;
}

.tp-offcanvas-2-area.offcanvas-2-white-bg
  .tp-offcanvas-menu
  > nav
  > ul
  > li
  > ul
  > li
  > a {
  color: #f28fa3;
  font-size: 1.3vw;
}

.tp-offcanvas-2-area.offcanvas-2-white-bg
  .tp-offcanvas-menu
  > nav
  > ul
  > li.is-active
  > a {
  color: #ffb6c1;
}

.tp-offcanvas-2-area .tp-offcanvas-menu > nav > ul > .menu_item > a {
  font-size: 1.8vw;
}

/* コンタクトバー */
.contact_bar {
  z-index: 1000;
  background: #ffffff;
  width: 90px;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  text-align: center;
  font-size: 12px;
}

.contact_list_item {
  aspect-ratio: 1/1;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: solid 0.5px #261803;
}

.contact_list_item:first-child {
background: #ffdbdf;
background: linear-gradient(
    90deg,
    rgb(255, 197, 203) 0%,
    rgb(251, 147, 165) 100%
);
  color: #fff;
}

.contact_list_logo {
  width: 60%;
  margin-bottom: 3px;
}

.contact_list_item_text {
  font-size: 14px;
  color: #010621;
  margin-bottom: 0;
  font-family: "Shippori Mincho", serif !important;
}

.contact_list_item:first-of-type .contact_list_item_text {
  color: #fff;
}

@media (max-width: 1024px) {
  .contact_bar {
    position: fixed;
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100vw;
    height: 150px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 -2px 16px rgba(61, 99, 55, 0.07);
    border-top: 1px solid #eee;
  }
  .contact_list {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    justify-content: space-evenly;
    align-items: stretch;
    margin: 0;
    padding: 0;
  }
  .contact_list_item {
    flex: 1 1 0;
    /* min-width: 54px;
    max-width: 120px; */
    border-bottom: none;
    border-right: solid 0.5px #261803;
    padding: 20px;
    aspect-ratio: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: none;
  }
  .contact_list_item:last-child {
    border-right: none;
  }
  .contact_list_logo {
    width: 32px;
    max-width: 42px;
    margin-bottom: 2px;
  }
  .contact_list_item_text {
    font-size: 12px;
    margin-bottom: 0;
    text-align: center;
  }
  .contact_list_item:first-child {
    color: #fff;
  }
  .contact_list_item:first-of-type .contact_list_item_text {
    color: #fff;
  }
}
@media (max-width: 600px) {
  .contact_bar {
    height: 80px;
  }
  .contact_list_logo {
    width: 22px;
    max-width: 30px;
  }
  .contact_list_item {
    padding: 0;
  }
  .contact_list_item_text {
    font-size: 10px;
  }
}



.burger_menu {
  display: none;
  position: absolute;
  top: 35px;
  right: 35px;
  z-index: 2001;
  width: 52px;
  height: 52px;
  /* background: #fff; */
  border: none;
  border-radius: 8px;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.burger_bar {
  display: block;
  width: 32px;
  height: 2px;
  margin: 8px auto;
  background: #ffb6c1;
  border-radius: 2px;
  transition: all 0.3s;
}

.burger_menu[aria-expanded="true"] .burger_bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.burger_menu[aria-expanded="true"] .burger_bar:nth-child(2) {
  opacity: 0;
}
.burger_menu[aria-expanded="true"] .burger_bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* バーガーメニュー ナビゲーション */
.burger_nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  /* height: 100vh; */
  background: #fff;
  box-shadow: -2px 0 12px rgba(0, 0, 0, 0.08);
  z-index: 2000;
  padding-top: 150px;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.burger_nav[aria-hidden="false"] {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.burger_nav_list {
  list-style: none;
  padding: 0 60px;
  margin: 0;
}

.burger_nav_item {
  margin-bottom: 32px;
  font-size: 1.3rem;
  color: #ffb6c1;
  font-weight: 600;
  text-align: left;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.4s 0.1s, transform 0.4s 0.1s;
}

.burger_nav[aria-hidden="false"] .burger_nav_item {
  opacity: 1;
  transform: translateX(0);
}

.burger_nav_item a {
  color: #ffb6c1;
  text-decoration: none;
  transition: color 0.2s;
}

.burger_nav_item a:hover {
  color: #af9d5b;
}

/* トップビュー */
main {
  width: 96%;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 1.8px;
  line-height: 1.5;
  font-weight: 400;
  font-style: normal;
}

#top_visual {
  position: relative;
}
video {
  height: 100vh;
  object-fit: cover;
  width: 105%;
  position: relative;
}

.vide_over {
  width: 105%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* background: rgba(106, 196, 106, 0.01); */
  background: linear-gradient(
    180deg,
    rgba(255, 219, 223, 0.3) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  z-index: 1;
}

.top_visual_inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.top_visual_message_box {
  width: 30vw;
  position: absolute;
  top: 50%;
  right: 10%;
}

.top_visual_title {
  font-size: 2.5vw;
  margin-bottom: 15px;
  color: #fff;
}

.top_visual_text {
  color: #fff;
}

.top_visual_bottom_text {
  width: 100%;
  position: absolute;
  overflow: hidden;
  bottom: 5px;
  opacity: 0;
  line-height: normal;
  font-family: "Shippori Mincho", serif;
  font-size: 8vw;
  color: #fb93a5;
  /* background: linear-gradient(
    to right,
    rgb(186, 248, 186) 0%,
    rgb(77, 166, 77) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  left: 40px;
}

.tp-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news_container {
  width: 74%;
  margin: 0 auto;
  height: auto;
  position: relative;
  padding: 0 2vw;
  box-sizing: border-box;
}

.news_top_title {
  letter-spacing: 2px;
  color: #010621;
  font-size: 3vw;
  font-family: "Shippori Mincho", serif;
  font-weight: 100;
}

.news_cr {
  display: inline-block;
  font-size: 1.8vw;
  color: #f28fa3;
  transition: 0.5s;
}

.tp-btn-yellow-green.green-solid {
  background-color: #ffb6c1;
  color: #fff;
  letter-spacing: 1.5px;
}

.dgm-blog-title-sm {
  color: #010621;
  letter-spacing: 2px;
  font-weight: 100;
  font-size: 1.2vw;
}

.dgm-blog-item:hover .blog-thumb img {
  transform: scale(1.05);
}

.dgm-blog-item:hover .news_cr {
  transform: scale(1.5);
}

.blog_link {
  display: inline-block;
  transition: 0.8s;
}

.dgm-blog-item:hover .blog_link {
  transform: translateX(8px);
}

.blog-thumb img {
  width: 75%;
  aspect-ratio: 2/1;
  height: auto;
  transition: 0.8s;
}

.dgm-blog-meta span {
  letter-spacing: 6px;
}

.tp-btn-yellow-green.green-solid.btn-60 span span.text-2 {
  color: #fff;
}

.tp-btn-yellow-green.green-solid.btn-60 i svg:last-child {
  color: #fff;
}

.nw_all_btn {
  font-size: 16px;
  color: #b2a863;
  letter-spacing: 2px;
}

.tp-section-title-dirtyline {
  letter-spacing: normal;
  text-align: left;
  line-height: 1;
}

.tp_text_invert_2 > div {
  background-image: linear-gradient(to right, #ffb6c1 50%, #f7eef5 50%);
}

.tp_text_invert_2 {
  font-size: 3vw;
}

.tp_text_invert_2 span {
  font-size: 4vw;
  margin: 0 5px;
}

.des-about-area {
  max-width: 55%;
  margin: 0 auto;
  padding-top: 8vw;
  padding-bottom: 3vw;
}

.design-project-content {
  padding-left: 60px;
}

.des-about-text p {
  text-align: left;
  font-size: 1.5vw;
  line-height: 1.8;
  letter-spacing: 2px;
}

.tp_text_invert_3 {
  opacity: 0;
}

.tp_text_invert_3 > div {
  background-image: linear-gradient(to right, #010621 50%, #f7eef5 50%);
}

.tp_text_invert_3_name_box {
  text-align: right;
}

.tp_text_invert_3_name {
  font-family: "Shippori Mincho", serif;
  font-size: 1.2vw;
  color: #010621;
  letter-spacing: 2px;
  opacity: 0;
}

.tp-banner-img {
  border-top: none;
}

.tp-text-slide-wrapper.pink-bg {
  background-color: #ffb6c1;
}

.design-project-title-box p {
  max-width: 550px;
  margin-top: 20px;
  font-family: "Shippori Mincho", serif;
  color: #a9a9a9;
  font-size: 20px;
}

.design-project-title {
  color: #ffb6c1;
}

.design-project-content {
  padding-left: 0;
}

.design-project-content span {
  color: #010621;
}

.design-project-thumb img {
  border-radius: 0%;
}

.design-project-title {
  font-size: 2.5vw;
  line-height: normal;
}

.design-project-content span {
  max-width: 550px;
  font-size: 1.2vw;
  line-height: 1.8;
}

.design-project-thumb img {
  width: 90%;
  aspect-ratio: 1.7/1;
  object-fit: cover;
}

.tp_reveal_anim span {
  display: block;
  margin-bottom: 0;
  font-size: 1.5vw;
  font-weight: 100;
  color: #b2a863;
  font-family: "Shippori Mincho", serif;
}

.design-project-area {
  padding: 0 3vw;
  margin-bottom: 0;
  padding-bottom: 50px;
  background-image: url("img/sk_ms_bg.svg");
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.7);
  background-blend-mode: lighten;
}
.tp-career-title {
  font-family: "Shippori Mincho", serif;
  font-weight: 100;
  font-size: 3vw;
  margin-top: 50px;
  color: #010621;
}

.ar-about-us-4-title-box .tp-section-subtitle {
  color: #f28fa3;
}

.tp-section-subtitle.pre::before {
  background-color: #f28fa3;
}

.studio-showcase-area {
  background: inherit;
}

.studio-showcase-item {
  width: 33.333%;
}

.dgm-service-area {
  width: 80%;
  padding: 0 2vw;
  background: #fff;
  margin: 150px auto;
}

.tp-section-subtitle {
  color: #f28fa3;
}

.dgm-service-title-sm {
  color: #f28fa3;
  line-height: 1;
  font-weight: 100;
  letter-spacing: 2px;
  margin-left: 30px;
  font-size: 1.5vw;
  margin-bottom: 0;
}

.tp-section-title-grotesk {
  font-size: 2.3vw;
  margin-top: 20px;
}

.dgm-service-item {
  border-top: none;
  margin-top: 30px;
  padding: 15px 0;
}

.dgm-service-item:hover .dgm-service-link {
  color: #fff;
  background: #ffb6c1;
}

.dgm-service-wrap .row [class*="col-"] .dgm-service-item:last-child {
  border-bottom: 1px solid #f28fa3;
}

.dgm-service-link {
  height: 50px;
  width: 50px;
  line-height: 52px;
  color: #f28fa3;
  border: 1px solid #f28fa3;
  margin-right: 30px;
}

.hl_flex {
  display: flex;
  align-items: flex-start;
}

.hl_left {
  width: 30%;
}

.hl_right {
  width: 70%;
}

.hl_target {
  position: relative;
}

.tp-section-subtitle.border-bg.bg-color {
  border: none;
  box-shadow: none;
  padding: 0;
}

.tp-section-title-platform.fs-84 {
  font-size: 2.5vw;
  margin-top: 20px;
}

.hl-area {
  height: 80vh;
}

.hl-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-top: 60px;
}

.hl_name {
  margin: 30px 0 0;
  position: relative;
  z-index: 2;
  text-align: center;
  /* 名前が画像の上に来るように調整 */
}

.tp-section-subtitle.border-bg.bg-color {
  color: #b2a863;
}

.app-faq-wrap
  .ai-faq-accordion-wrap
  .accordion
  .accordion-items
  .accordion-header
  .accordion-buttons {
  font-size: 1.2vw;
  color: #ffb6c1;
  font-family: "Shippori Mincho", serif;
  font-weight: 100;
}

.app-faq-wrap
  .ai-faq-accordion-wrap
  .accordion
  .accordion-items
  .accordion-body
  p {
  color: #010621;
  font-size: 1.2vw;
  line-height: 1.6;
  letter-spacing: 2px;
  font-family: "Shippori Mincho", serif;
}

.app-faq-wrap
  .ai-faq-accordion-wrap
  .accordion
  .accordion-items
  .accordion-header
  .accordion-buttons
  .accordion-icon::before,
.app-faq-wrap
  .ai-faq-accordion-wrap
  .accordion
  .accordion-items
  .accordion-header
  .accordion-buttons
  .accordion-icon::after {
  background-color: #fff;
}

.app-faq-wrap
  .ai-faq-accordion-wrap
  .accordion
  .accordion-items
  .accordion-header
  .accordion-buttons
  .accordion-icon {
  background-color: #ffb6c1;
}

.app-faq-wrap
  .ai-faq-accordion-wrap
  .accordion
  .accordion-items
  .accordion-header
  .accordion-buttons {
  padding: 20px 0px 20px 0px;
}

.app-faq-wrap .ai-faq-accordion-wrap .accordion {
  box-shadow: none;
}

.app-faq-wrap
  .ai-faq-accordion-wrap
  .accordion
  .accordion-items
  .accordion-body {
  padding-left: 15px;
}

.app-faq-wrap .ai-faq-accordion-wrap .accordion .accordion-items {
  border-bottom: none !important;
  box-shadow: none !important;
}

.hl_item {
  margin-bottom: 10px;
  font-size: 1.2vw;
}

.hl_item_icon {
  color: #f28fa3;
  margin-right: 10px;
}

.hl_item_sub_text {
  font-size: 15px !important;
  padding-bottom: 5px !important;
  color: #a9a9a9 !important;
}

.hl_item:last-of-type {
  margin-bottom: 0;
}

/* フッター */
footer {
    position: relative;
    z-index: 100;
  background: #ffb6c1;
  /* background: linear-gradient(
    90deg,
    rgba(61, 99, 55, 1) 0%,
    rgba(43, 89, 43, 1) 100%
  ); */
  padding: 5vw 5vw 5vw 1vw;
  background-image: url("img/ms_sakura_bg.jpg");
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.6);
  background-blend-mode: lighten;
  background-position: center;
}

.ft_inner {
  width: 90%;
  margin: 0 auto;
}

.ft_flex {
  display: flex;
  align-items: center;
  align-items: flex-start;
  justify-content: space-between;
}

.ft_nav_item {
  margin-bottom: 10px;
  font-family: "Shippori Mincho", serif;
  color: #fff;
}

.ft_flex_right {
  width: 250px;
}

.sns_list {
  display: flex;
  justify-content: space-between;
  margin-right: 10px;
}

.sns_item {
  width: 30%;
  padding: 0 10px;
}

.ft_big_text {
  font-size: 8vw;
  text-align: center;
  color: #010621;
  font-family: "Shippori Mincho", serif;
}

.ft_copy_box {
  margin-top: 15px;
  padding-top: 30px;
  border-top: 1px solid #af9d5b;
}

.ft_copy_text {
  font-size: 0.8vw;
  font-family: "Shippori Mincho", serif;
  color: #010621;
}

.tp-section-subtitle-gradient {
  background: none;
  -webkit-text-fill-color: #ffb6c1;
}

.tp-section-title.fs-54 {
  color: #010621;
}

.tp-section-title.fs-54.fs-60 {
  letter-spacing: 2px;
  font-size: 3vw;
  font-family: "Shippori Mincho", serif;
  font-weight: 100;
}

.ai-service-top-text p {
  color: #010621;
}

.ai-service-top-text {
  margin-top: 20px;
  padding-left: 10px;
}

.ai-service-top-text p {
  font-size: 1.2vw;
  letter-spacing: 1.5px;
  font-family: "Shippori Mincho", serif;
  line-height: 1.3;
}

.sv_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.sv_item {
  width: 30%;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  /* opacity: 1; */
  transform: translateY(50px);
}

.sv_item a {
  display: flex;
  align-items: center;
  position: relative;
  text-decoration: none;
}

.top_sv_icon {
  width: 20%;
  transition: transform 0.3s ease;
}

.sv_icon img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.sv_item a:hover .sv_icon {
  transform: scale(1.02); /* 5%拡大 */
}

.sv_text {
  width: 70%;
  font-size: 1.2vw;
  margin-left: 20px;
  transition: transform 0.3s ease;
}

.sv_arrow {
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
  margin-left: auto; /* 右端に寄せる */
  font-size: 1.2em;
}

/* ホバー時のアニメーション */
.sv_item a:hover .sv_text {
  transform: translateX(5px);
}

.sv_item a:hover .sv_arrow {
  opacity: 1;
  transform: translateX(0);
}

/* グッズ */
#goods {
  width: 75%;margin:100px auto 100px;
  height: auto;
  position: relative;
  padding: 0 2vw;
  box-sizing: border-box;
}

/* グッズ：レイアウト＆デザイン調整 */
.gos_flex {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  gap: 2vw;
}

.gos_left {
  width: 38%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gos_left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(136, 156, 123, 0.09);
}

.gos_right {
  width: 60%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3vw 3vw 3vw 2vw;
  background: #f8f9fa;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(61,99,55,0.04);
}

.gos_title {
  font-size: 2.1vw;
  color: #502c3b;
  margin-bottom: 1.1vw;
  font-family: "Shippori Mincho", serif;
  position: relative;
  z-index: 1;
}

.gos_text {
  font-size: 1.1vw;
  color: #010621;
  margin-bottom: 2vw;
  line-height: 1.8;
  font-family: "Shippori Mincho", serif;
  position: relative;
  z-index: 1;
}

.gos_btn {
  width: 55%;
  text-align: center;
}
@media (max-width: 1024px) {
  #goods {
    margin-top: 100px;
    margin-bottom: 0;
  }
  .gos_btn {
    width: 100%;
  }
}

/* レスポンシブ対応 */
@media (max-width: 950px) {
  #goods {
    margin-top: 100px;
    margin-bottom: 0;
  }
  .gos_flex {
    flex-direction: column;
    gap: 22px;
  }
  .gos_left, .gos_right {
    width: 100%;
    max-width: 100%;
  }
  .gos_right {
    padding: 4vw 5vw 4vw 5vw;
    min-height: 180px;
  }
  .gos_title {
    font-size: 1.6em;
  }
  .gos_text {
    font-size: 16px;
    margin-top: 0px;
  }
  .gos_btn {
    width: 100%;
    font-size: 16px;
    padding: 12px 32px;
    margin-top: 10px;
  }
  .gos_right::before {
    width: 170px;
    height: 170px;
    right: 3vw;
  }
}
@media (max-width: 600px) {
  #goods {
    width: 97vw;
    padding: 0 2vw;
  }
  .gs_right {
    padding: 22px 5vw 22px 5vw;
    border-radius: 12px;
  }
  .gs_right::before {
    width: 110px;
    height: 110px;
    right: 4vw;
  }
  .gs_title {
    font-size: 1.17em;
    margin-bottom: 10px;
  }
  .gs_text {
    font-size: 0.97em;
    margin-bottom: 18px;
  }
  .gs_btn {
    font-size: 1em;
    padding: 10px 22px;
    border-radius: 28px;
  }
}

/* アクセス */
#access {
  width: 75%;
  margin: 0 auto;
  height: auto;
  position: relative;
  padding: 0 2vw;
  box-sizing: border-box;
}

.access_bg_text {
  position: absolute;
  font-size: 10vw;
  bottom: 0px;
  color: #ccc;
  opacity: 0.2;
  left: 5.5vw;
  z-index: -1;
}

.access_flex {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  /* background-color: #af9d5b; */
}
.access_left {
  width: 45%;
}

.access_right {
  width: 50%;
}
.access_left iframe {
  width: 100%;
  height: 450px;
}
table {
  border-collapse: collapse;
  width: 100%;
  text-align: center;
}
th,
td {
  text-align: center;
  border: 1px solid #ddd;
  padding: 6px;
  color: #303030;
}
th {
  background-color: #ccc;
  color: #303030;
}

.schedule-table {
  font-size: 16px;
}

.ac_text_list {
  margin: 50px 0;
  font-size: 18px;
}
.ac_text_item {
  margin-bottom: 15px;
}
.ac_text_item p {
  font-family: "Shippori Mincho", serif;
  line-height: 1.5;
}
.ac_text_bar {
  margin: 30px 0;
  border: solid 1px #af9d5b;
}
.ac_text_item {
  display: flex;
  align-items: center;
}

.ac_text_item img {
  width: 7%;
  margin-right: 8px;
  margin-top: -9px;
}

.ac_btn_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ac_btn_item {
  width: 48%;
}

.ac_btn_item a {
  width: 100%;
  display: inline-block;
  background-color: #ffb6c1;
  text-align: center;
  padding: 20px 20px;
  font-weight: 600;
  outline: 0.5px solid #fff;
  outline-offset: -10px;
  border-radius: 6px;
  color: #fff;
  font-size: 1.2vw;
}

.ac_btn_item:first-child a {
  background-color: #a9a9a9;
}

.ac_btn_item:nth-child(2) a {
  background: #ffb6c1;
  background: linear-gradient(90deg, #ffb6c1 0%, #f28fa3 100%);
}

.pp-service-details-overview-ptb {
  background-color: #ffb6c1;
}

.nav_q_title {
  font-size: 2vw;
  margin-bottom: 30px;
}

.des-brand-item-inner {
  padding: 0;
  overflow: hidden;
  border-radius: 0;
}

.tp-section-title-teko {
  font-size: 3vw;
  color: #ffb6c1;
  letter-spacing: normal;
  line-height: 1.5;
  font-weight: 100;
}

.tp-section-title-teko span {
  font-size: 5vw;
  color: #ffb6c1;
  font-weight: bold;
}

.rc_container {
  width: 80%;
  margin: 0 auto 100px;
  padding: 200px 2vw;
  box-sizing: content-box;
}

.tp-btn-yellow-border {
  letter-spacing: 2px;
  font-size: 1.2vw;
  color: #ffb6c1;
  border: 1px solid #ffb6c1;
  border-radius: 0;
}

.crp-project-title-sm {
  font-size: 1.2vw;
  line-height: 1.5;
  letter-spacing: 1.5px;
  color: #010621;
}

.crp-project-thumb img {
  width: 100%;
  aspect-ratio: 2.5/1;
  object-fit: cover;
}

.crp-project-item {
  background-color: #fff;
  border: 1px solid #ffb6c1;
  border-radius: 0;
}

.text-2 {
  color: #ffb6c1;
}

.crp-project-meta {
  font-family: "Shippori Mincho", serif;
}

.crp-project-meta::after {
  z-index: -1;
  width: 90%;
}

.crp-project-meta span {
  background: #fff;
  color: #ffb6c1;
  padding: 0 15px;
}

.ad_container {
  width: 80%;
  margin: 0 auto;
  padding: 0 2vw;
  box-sizing: content-box;
}

.ai-service-area {
  padding: 160px 0 0;
}

.sy_container {
  width: 80%;
  margin: 0 auto;
  padding: 0 2vw;
  box-sizing: content-box;
}

.news_list {
  height: 400px;
  overflow-y: scroll;
}

/* レスポンシブ */
@media (max-width: 1200px) {
  .header_logo {
    min-width: 80px;
  }
  .top_visual_bottom_text {
    font-size: 8.5vw;
  }
  .header_list_item {
    font-size: 1.2vw;
  }
  .top_visual_message_box {
    width: 40%;
    top: 45%;
  }
  .fe_flex_item_num {
    font-size: 2vw;
  }
  .service_title {
    font-size: 1.5vw;
  }
  .service_text {
    font-size: 1.2vw;
  }
  .ac_text_item {
    font-size: 1.2vw;
  }
  .ac_text_item img {
    width: 8%;
  }
  .ac_btn_item {
    font-size: 1.2vw;
  }
  .ft_nav_item {
    font-size: 1.2vw;
  }
  .sns_item {
    font-size: 1.2vw;
  }
}

@media (max-width: 1024px) {
  .sp_sns_list {
    display: none;
  }
  .contact_bar {
    /* display: none; */
  }
  .header_right {
    display: none;
  }
  .burger_menu {
    display: block;
  }
  .burger_nav {
    border-radius: 0 0 0 5vw;
    overflow: hidden;
  }
  .top_visual_bottom_text {
    font-size: 9vw;
  }
  .top_visual_message_box {
    width: 80%;
    top: 73%;
  }
  .top_visual_title {
    font-size: 4vw;
  }
  .top_visual_text {
    font-size: 2vw;
  }
  .top_visual_bottom_text {
    bottom: 5%;
  }
  #message {
    height: auto;
    padding: 10vw 5vw 3vw;
  }
  .ms_flex {
    display: block;
    position: relative;
    width: 90%;
    top: 0;
    left: 0;
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
  .ms_left {
    width: 70%;
  }
  .ms_left_title_en {
    font-size: 32px;
  }
  .ms_left_title_ja {
    font-size: 14px;
  }
  .ms_left_text {
    font-size: 16px;
  }
  .ms_right {
    width: 80%;
    height: 30%;
    margin-left: 23%;
  }
  .ms_right img {
    height: 35vw;
    margin-top: 60px;
  }
  .fe_flex_item_title {
    font-size: 18px;
  }
  .fe_flex_item_text {
    font-size: 14px;
  }
  .fe_textbox {
    font-size: 14px;
  }
  .fe_slider {
    margin: 50px 0;
  }
  .service_top_box {
    margin-bottom: 50px;
  }
  .service_top_title {
    font-size: 25px;
  }
  .service_item {
    width: 45%;
    margin-bottom: 50px;
  }
  .service_top_text {
    font-size: 14px;
  }
  .service_title_sub {
    font-size: 10px;
  }
  .service_text {
    font-size: 14px;
    margin: 10px 0;
  }
  #gallery {
    height: 50vh;
  }
  .sp_contact_box {
    display: flex;
    flex-wrap: wrap;
    margin-top: 90px;
  }
  .contact_list_item {
    width: 50%;
    border: 1px solid #eee;
    text-align: center;
  }
  .contact_list_logo {
    width: 85%;
  }
  .contact_list_item_text {
    font-size: 18px;
  }
  #access {
    padding: 9vw 5vw 9vw 1vw;
  }
  .ac_btn_item a {
    font-size: 14px;
  }
  footer {
    padding: 30px 60px;
    padding-bottom: 200px;
  }
  .ft_inner {
    text-align: center;
    width: 100%;
  }
  .ft_copy_text {
    font-size: 10px;
  }
}

@media (max-height: 700px) {
  .top_visual_message_box {
    top: 55%;
  }
}

@media (max-width: 768px) {
  html,
  body {
    width: 100vw;
  }
  header {
    width: 100vw;
    left: 0;
    right: 0;
  }
  .header_flex {
    max-width: 100vw;
    width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  .top_visual_bottom_text {
    left: 30px;
  }
  #service {
    padding: 5vw 0vw;
  }
  .service_item {
    width: 46%;
  }
  .service_title {
    font-size: 18px;
  }
  #features {
    padding: 5vw 0vw;
  }
  .fe_textbox_left {
    width: 45%;
  }

  .access_flex {
    display: block;
  }

  .access_left {
    width: 100%;
    margin-bottom: 50px;
  }
  .access_right {
    width: 100%;
  }

  .ac_text_item {
    font-size: 14px;
  }

  .ac_btn_item a {
    font-size: 16px;
  }
  .access_bg_text {
    font-size: 26vw;
    bottom: 70px;
  }
  .access_left iframe {
    height: 250px;
  }
}

@media (max-width: 576px) {
  html,
  body {
    width: 100vw;
  }
  header {
    width: 100vw;
    left: 0;
    right: 0;
  }
  .header_flex {
    padding: 15px 20px;
    max-width: 100vw;
    width: 100vw;
  }
  .burger_menu {
    top: 10px;
    right: 15px;
  }
  .burger_nav {
    width: 68%;
    padding-top: 100px;
  }
  .burger_nav_list {
    padding: 0 40px;
  }
  .burger_nav_item {
    margin-bottom: 15px;
    font-size: 15px;
  }
  .sp_contact_box {
    margin-top: 30px;
  }
  .contact_list_logo {
    width: 50%;
  }
  .contact_list_item_text {
    font-size: 14px;
  }
  .burger_bar {
    width: 28px;
    margin: 7px auto;
  }
  .header_logo {
    min-width: 50px;
  }

  .sp_sns_list {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: 50px auto 0;
  }

  .sp_sns_item {
    width: 19%;
  }

  section {
    height: auto;
  }

  video {
    height: 85vh;
  }

  .top_visual_inner {
    height: 85vh;
  }

  .top_visual_title {
    font-size: 25px;
  }

  .top_visual_text {
    font-size: 16px;
  }

  .top_visual_message_box {
    bottom: 8%;
    top: auto;
  }

  .top_visual_bottom_text {
    left: 5%;
    top: 10%;
    font-size: 20vw;
    line-height: 1.1;
  }
  #message {
    background-size: 130%;
  }
  .ms_left {
    width: 100%;
  }

  .ms_right {
    width: 100%;
    margin-left: 0;
  }

  .ms_right img {
    height: 55vw;
  }

  #features {
    padding: 40px 0 80px;
  }

  .fe_flex_item {
    width: 100%;
    margin-top: 25px;
  }

  .fe_flex_item_num {
    font-size: 18px;
  }

  .fe_textbox {
    flex-wrap: wrap;
  }

  .fe_textbox_left {
    width: 100%;
  }

  .fe_textbox_right {
    width: 100%;
    margin-top: 40px;
  }

  #service {
    padding: 80px 0;
  }

  .service_top_box {
    width: 100%;
  }
  .service_item {
    width: 100%;
  }

  #access {
    padding: 60px 0;
  }

  .ac_btn_list {
    flex-wrap: wrap;
  }

  .ac_btn_item {
    width: 100%;
  }
  .access_bg_text {
    bottom: 30%;
  }

  .ac_text_bar {
    margin: 15px 0;
  }

  .ac_btn_item:first-child {
    margin-bottom: 20px;
  }

  footer {
    padding: 40px 20px;
  }

  .ft_big_text {
    font-size: 7.3vw;
  }
}
.tp-blog-heading-wrap .tp-section-subtitle {
  color: #ffb6c1;
}

.tp-blog-title {
  color: #ffb6c1;
  font-size: 3vw;
  font-family: "Shippori Mincho", serif !important;
  letter-spacing: 2px;
  line-height: 1.5;
  font-weight: 100;
}

.tp-blog-list-item-tags p {
  color: #ffb6c1;
}

.tp-blog-list-item-title {
  color: #ffb6c1;
}

.tp-blog-heading-wrap .tp-section-subtitle.pre::before {
  background-color: #f28fa3;
}

.news_page_nation {
  display: flex;
  margin: 40px 0;
}

.news_page_nation .page-numbers {
  margin: 0 6px;
  font-size: 16px;
  padding: 10px 16px;
  font-weight: 500;
  color: #010621;
  background: #f9f9f9;
  transition: all 0.3s ease;
  text-decoration: none;
}

.news_page_nation .page-numbers:hover {
  background: #ffb6c1;
  color: #fff;
}

.news_page_nation .page-numbers.current {
  background: #f28fa3;
  color: #fff;
  font-weight: 700;
}

.news_page_nation .page-numbers.prev,
.news_page_nation .page-numbers.next {
  font-size: 16px;
  padding: 10px 16px;
  background: #eee;
}

.news_page_nation .page-numbers.prev:hover,
.news_page_nation .page-numbers.next:hover {
  background: #ffb6c1;
  color: #fff;
}

.postbox-details-item {
  padding: 0;
}

.postbox-title {
  color: #ffb6c1;
  font-family: "Shippori Mincho", serif !important;
  letter-spacing: 2px !important;
  line-height: 1.5;
  font-weight: 100;
}

.postbox-meta i svg {
  fill: #b2a863;
}

.postbox-meta span {
  color: #b2a863;
}

.postbox-details-text {
  padding-bottom: 60px;
}

.postbox-details-text p {
  color: #010621;
  font-family: "Shippori Mincho", serif !important;
  letter-spacing: 2px !important;
  line-height: 1.5;
  font-weight: 100;
}

.post_thum {
  height: auto;
}

.post_thum img {
  width: 100%;
  object-fit: cover;
  margin: 50px 0 100px;
}

.single_container {
  width: 80%;
  margin: 0 auto 100px;
  padding: 0 2vw;
  box-sizing: content-box;
}

.postbox-details-text {
  width: 70%;
  margin: 0 auto;
}

.post_all_btn {
  width: 100%;
  /* text-align: center; */
  margin-top: 50px;
}

.post_all_btn a {
  font-size: 1.2vw;
  padding: 15px 40px;
  background: inherit;
  border: 1px solid #f28fa3;
  transition: 0.5s;
}

.post_all_ar {
  margin-right: 10px;
  color: #f28fa3;
  transition: 0.5s;
}

.post_all_btn a:hover {
  background: #f28fa3;
  color: #fff;
}

.post_all_btn a:hover .post_all_ar {
  display: inline-block;
  transform: translateX(-8px);
  color: #fff;
}

.place_top {
  width: 95%;
}

.tp-portfolio-masonry-ptb {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  background: linear-gradient(
    315deg,
    rgba(255, 255, 255, 0) 69%,
    rgb(255, 223, 230) 100%
  );
}

.tp-blog-heading-wrap {
  margin-bottom: 100px;
}

.tp-portfolio-masonry-wrap {
  width: 95%;
  margin: 0 auto;
}

.place_wrapper {
  padding-top: 3.5vw;
}

.place_top_text_sub {
  display: flex;
  align-items: center;
  font-size: 2vw;
  font-family: "Shippori Mincho", serif;
  margin-left: 15%;
}

.place_top_text_sub span {
  display: inline-block;
  width: 40%;
  height: 1.5px;
  background-color: #b2a863;
  margin: 8px 0 0 4%;
}

.tp-portfolio-masonry-big-text {
  color: #ffb6c1;
  font-family: "Shippori Mincho", serif;
  font-weight: 100;
  font-size: 13vw;
  line-height: 1;
  /* letter-spacing: 2px; */
}

.place_list_title_box {
  align-items: center;
}

.tp-portfolio-masonry-top-right {
  width: 85%;
}

.tp-portfolio-masonry-top-right p {
  line-height: 1.8;
  letter-spacing: 2px;
  color: #ffb6c1;
  font-size: 1.2vw;
  font-family: "Shippori Mincho", serif;
}

.pl_f_title .tp_text_invert > div {
  font-size: 2.5vw;
  letter-spacing: 1px;
  line-height: 1.5;
  font-family: "Shippori Mincho", serif;
  background-image: linear-gradient(to right, #ffb6c1 50%, #e4e4e4 50%);
}

.tp-service-content p {
  color: #010621;
  font-size: 1.2vw;
  letter-spacing: 2px;
  line-height: 1.5;
  font-family: "Shippori Mincho", serif;
}

.tp-service-number span {
  color: #b2a863;
  font-size: 1.2vw;
}

.pl_f_img img {
  width: 90%;
  aspect-ratio: 1/1.2;
  object-fit: cover;
}

/* .pl_f_container {
  width: 80%;
  margin: 0 auto;
  padding: 0 2vw;
  box-sizing: content-box;
} */

.ar-about-us-4-text-title {
  color: #b2a863;
  font-family: "Shippori Mincho", serif;
  font-weight: 100;
}

.ar-about-us-4-text-title {
  display: flex;
  align-items: center;
}

.pl_tf_icon {
  font-size: 2.5vw;
  margin: 0 20px;
  margin-top: 8px;
}

.ar-about-us-4-text-area {
  overflow: hidden;
  margin: 100px 0;
}

.ar-award-title {
  font-size: 1.2vw;
  letter-spacing: 2px;
  line-height: 1.6;
  font-weight: 100;
  color: #010621;
}

.st-award-wrapper
  .ar-award-right-wrap
  .ar-award-item
  .ar-award-box-left
  .ar-award-year {
  font-family: "Shippori Mincho", serif;
}

.st-award-title {
  font-size: 1.2vw;
  letter-spacing: 2px;
  line-height: 1.6;
  font-weight: 100;
  color: #010621;
}

.ar-award-item:hover {
  border-color: #ffb6c1;
}
/* 
.pl_sl_img {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
} */

.pl_sl_img img {
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
}

.pl_st {
  background: #ffffff;
  margin-top: 0;
  padding: 90px 0 200px;
  border-radius: 0;
  letter-spacing: 2px;
  font-weight: 100;
  position: relative;
}

.pl_st_title {
  color: #ffb6c1 !important;
  font-size: 2vw;
  font-weight: 100;
}

.pl_st_title_text {
  color: #010621 !important;
  letter-spacing: 1px;
  line-height: 1.5;
  font-family: "Shippori Mincho", serif;
}

.pl_st_arrow button {
  width: 80px;
  height: 80px;
  line-height: 1;
  margin-left: 8px;
  border-radius: 100vh;
  text-align: center;
  position: relative;
  background-color: #ffb6c1;
  color: #fff;
}

.pl_st_text p {
  font-size: 1.5vw;
  margin-bottom: 30px;
  color: #010621;
  font-family: "Shippori Mincho", serif;
  font-weight: 100;
  letter-spacing: 2px;
}

.pl_st_text_sub span {
  font-size: 1.2vw;
  color: #b2a863;
  font-family: "Shippori Mincho", serif;
  font-weight: 100;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.ar-award-item::after {
  background-color: #ffb6c1 !important;
}

.pl_f_title_mini {
  font-size: 1.5vw;
  color: #ffb6c1;
}

.st-award-list-thumb-wrap {
  width: 95%;
}

.st-award-list-thumb-1,
.st-award-list-thumb-2,
.st-award-list-thumb-3,
.st-award-list-thumb-4,
.st-award-list-thumb-5 {
  border-radius: 0;
  top: -30px;
}

.place_btn_box {
  width: 80%;
  margin: 0 auto 100px;
  padding: 0 2vw;
  box-sizing: content-box;
  text-align: right;
}

.place_btn_box a {
  width: 100%;
  text-align: center;
  padding: 40px;
  font-size: 2vw;
  font-weight: 100;
}

.dc_info_right {
  justify-content: space-between;
}

.dc_img_base {
  width: 100%;
  object-fit: cover;
}

.it-about-thumb img,
.it-about-thumb-inner {
  border-radius: 0 !important;
}

.dc_info_text p {
  width: 90%;
  font-size: 1.2vw;
  line-height: 1.6;
  letter-spacing: 1.5px;
  margin-top: 60px;
  font-family: "Shippori Mincho", serif;
  font-weight: 100;
  color: #010621;
  padding-right: 0;
}

.dc_img01 {
  width: 526px;
  height: 729px;
}

.dc_img02 {
  width: 510px;
  height: 340px;
}

.dc_img03 {
  width: 360px;
  height: 620px;
}

.dc_more_btn {
  background-color: #ffb6c1;
}

.ucl_img_base {
  width: 100%;
  object-fit: cover;
}

.ucl_img01 {
  width: 480px;
  height: 280px;
  margin-bottom: -120px;
  margin-left: -200px;
  object-fit: cover;
}
.ucl_img02 {
  width: 470px;
  height: 705px;
  object-fit: cover;
}
.ucl_img03 {
  margin-top: 30px;
  width: 430px;
  height: 270px;
  left: -20%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.ucl_text_jp {
  font-size: 1.2vw;
  line-height: 1.6;
  letter-spacing: 1.5px;
  font-family: "Shippori Mincho", serif;
  font-weight: 100;
  margin-bottom: 60px;
}

.ucl_text_en {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 1.5px;
  font-family: "Shippori Mincho", serif;
  font-weight: 100;
  color: #a9a9a9;
}

.ucl_wp {
  margin-left: 36px;
}

.ucl_more_btn {
  background: #ffb6c1;
  color: #fff;
}

.ucl_more_btn .text-2 {
  color: #fff;
}

#preloader {
  background-position: center;
  background: #ffdbdf;
  background: radial-gradient(
    circle,
    rgba(255, 197, 203) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.pp-skill-list-title {
  line-height: 1;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  color: #010621;
}

.dcp {
  background: #ffffff;
  background: linear-gradient(
    132deg,
    rgba(255, 255, 255, 0) 69%,
    rgb(255, 223, 230) 100%
  );
}

.dcp_pl_name_en {
  font-size: 18px;
  color: #010621;
}

.dcp_pl_name_sub {
  font-size: 16px;
  margin-bottom: 18px;
  line-height: 1.6;
  letter-spacing: 1.5px;
  font-family: "Shippori Mincho", serif;
  color: #b2a863;
}

.dcp_pl_img {
  height: 380px;
  object-fit: cover;
}

.pp-skill-list ul {
  padding-left: 0;
}

.pp-skill-list ul li {
  margin-bottom: 15px;
  font-size: 16px;
  color: #010621;
}

.dcp_gl_img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1.4/1;
}

.dcp_slide {
  margin-right: 10px !important;
}

.dcm_title_sub {
  color: #010621;
  font-size: 1.2vw;
  line-height: 1.6;
  letter-spacing: 1.5px;
  font-family: "Shippori Mincho", serif;
}

.dcm_title {
  font-size: 3vw;
  letter-spacing: 2px;
  font-family: "Shippori Mincho", serif;
}

.dcm_list {
  margin-top: 80px;
}

.dcm_list_title {
  color: #ffb6c1;
  font-size: 1.5vw;
  line-height: 1.6;
  letter-spacing: 1.5px;
  font-family: "Shippori Mincho", serif;
}

.dcm_list_text {
  color: #010621;
  font-size: 1.2vw;
  line-height: 1.5;
  letter-spacing: 1.5px;
  font-family: "Shippori Mincho", serif;
}

.dcm_list_img img {
  display: inline-block;
  aspect-ratio: 2/1;
  object-fit: cover;
  transition: 0.5s;
}

.dcm_list_img:hover .dcm_list_img img {
  transform: scale(1.2);
}

.cdc_top_title p {
  font-size: 1.3vw !important;
  color: #ffb6c1;
  font-size: 1.2vw;
  line-height: 1.8;
  letter-spacing: 2px;
  font-family: "Shippori Mincho", serif;
}

.cdc_gl_item img {
  width: 100%;
  border-radius: 0;
  aspect-ratio: 1/1;
  object-fit: cover;
  /* border-radius: 100vh; */
}

.dc_cta_title {
  width: 100%;
  margin: 0 auto;
  /* text-align: left; */
  font-size: 4.8vw !important;
  color: #ffb6c1;
  font-size: 1.2vw;
  line-height: 1.8;
  letter-spacing: 2px;
  font-family: "Shippori Mincho", serif;
}

.pl_wrapper {
  width: 90%;
  margin: 0 auto;
}

.it-about-area {
  width: 90%;
  margin: 0 auto;
}

.res_img_box img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.res_img_item {
  padding: 0 5px;
}

.rec_left .inner-service-1-left .rec_left_sub {
  font-size: 12px;
  color: #b2a863;
  line-height: 1.8;
  letter-spacing: 2px;
  font-family: "Shippori Mincho", serif;
}

.rec_left .inner-service-1-left ul li span {
  font-size: 1.2vw;
  color: #ffb6c1;
  line-height: 1.8;
  letter-spacing: 2px;
  font-family: "Shippori Mincho", serif;
}

.rec_right_big_num h1 {
  font-size: 400px;
  font-weight: 600;
  line-height: 0.7;
  color: #ffdbdf !important;
  margin-bottom: 0;
  margin-top: 7px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: "Shippori Mincho", serif !important;
}

.inner-service-1-right .rec_right_item .rec_right_item_title {
  font-size: 2vw;
  color: #ffb6c1;
  line-height: 1.8;
  letter-spacing: 2px;
  font-family: "Shippori Mincho", serif;
}

.inner-service-1-right .rec_right_cat span {
  font-size: 1.2vw;
  color: #ffb6c1;
  line-height: 1.8;
  letter-spacing: 2px;
  font-family: "Shippori Mincho", serif;
}

.inner-service-1-right .rec_right_item p {
  font-size: 1.2vw;
  color: #010621;
  line-height: 1.5;
  letter-spacing: 2px;
  font-family: "Shippori Mincho", serif;
}

.rec_point {
  width: 80%;
  margin: 0 auto;
}

.rec_right_item .inner-service-1-text {
  margin-bottom: 0;
}

.rec_right_cat {
  padding: 0;
}

.rec_right_cat span::before {
  content: none;
}

.rec_point_img_wrapper {
  border-radius: 0 !important;
}

.rec_point_img {
  aspect-ratio: 1.4/1;
  object-fit: cover;
  border-radius: 0 !important;
}

.rec_gl_img img {
  aspect-ratio: 1.4/1;
  object-fit: cover;
}

.rec_op_wrapper {
  height: 60vh;
}

.rec_options {
  width: 80%;
  height: auto;
  margin: 0 auto;
}

.rec_op_img img {
  aspect-ratio: 1.4/1;
  object-fit: cover;
}

.rec_op_title {
  color: #010621;
  font-size: 1.5vw;
  line-height: 1.5;
  letter-spacing: 2px;
  font-family: "Shippori Mincho", serif;
}

.rec_flow {
  background-color: #fff;
}

.rec_op_title_sub {
  color: #b2a863;
  font-size: 1.2vw;
  line-height: 1.5;
  letter-spacing: 2px;
  font-family: "Shippori Mincho", serif;
  margin-bottom: 0;
}

.it-faq-wrap .rec_flow_item i {
  font-size: 1.2vw;
  color: #ffb6c1;
  letter-spacing: 2px;
  line-height: 1.5;
  font-family: "Shippori Mincho", serif;
  margin-bottom: 0;
}

.it-faq-wrap .rec_flow_item span {
  font-size: 1.2vw;
  color: #010621;
  letter-spacing: 2px;
  line-height: 1.5;
  font-family: "Shippori Mincho", serif;
}

.it-faq-wrap .rec_flow_item p {
  font-size: 1.2vw;
  color: #010621;
  letter-spacing: 2px;
  line-height: 1.5;
  font-family: "Shippori Mincho", serif;
}

.it-faq-wrap .rec_flow_item:not(:last-child) {
  margin-bottom: 30px;
}
.it-faq-wrap .rec_flow_item {
  padding-left: 90px;
}

.it-step-thumb {
  margin-left: 0px;
}

.rec_flow_wp .accordion-body {
  padding: 25px 0 0 0;
}

.rec_flow_img img {
  width: 100%;
  aspect-ratio: 1 / 1.4;
  object-fit: cover;
  border-radius: 0;
}

.rec_flow_wp .it-faq-accordion .faq-active::before {
  background-color: #f28fa3;
  border-radius: 0;
}

.rec_flow_wp::after {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 0;
}

.rec_flow_eq {
  font-size: 0.9vw !important;
  margin-top: 8px;
  color: #c26262 !important;
}

.sv_top_big_text {
  font-size: 11vw;
}

.sv_icon {
  width: 60%;
}

.sv_flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sv_flex_left {
  width: 50%;
}

.sv_ov_wrapper {
  background-color: #fff;
}

.sv_ov_title_box {
  border-bottom: none;
  margin-bottom: 30px;
}

.sv_ov_title {
  letter-spacing: 2px;
  line-height: 1.5;
  font-family: "Shippori Mincho", serif;
  color: #ffb6c1;
}

.sv_ov_text_box p {
  font-size: 1.2vw;
  letter-spacing: 2px;
  line-height: 1.5;
  font-family: "Shippori Mincho", serif;
  color: #010621;
}

.sv_ov_list_box ul li {
  width: 100%;
  font-size: 1.2vw;
  color: #ffb6c1;
}

.sv_ov_list_box ul li span {
  border: 1px solid #f28fa3;
}

.sv_ov_list_box ul li span svg path {
  fill: #f28fa3;
}

.sv_price {
  background-color: #ffb6c1;
}

.ar-about-us-4-title-box .sv_price_title_sub {
  color: #fff;
}
.tp-service-5-price-heading.service-details .sv_price_title {
  font-size: 2.3vw;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1.5;
  font-weight: 100;
  margin-top: 0px;
  font-family: "Shippori Mincho", serif;
}

.sv_price_table_item {
  display: flex;
  align-items: center;
}

.sv_price_table_title {
  font-size: 1.2vw;
  color: #fff;
  letter-spacing: 2px;
  font-weight: 100;
  margin-top: 0px;
  font-family: "Shippori Mincho", serif;
}

.sv_price_table_title_sub {
  font-size: 0.8vw;
  color: #fff;
  letter-spacing: 2px;
  font-weight: 100;
  margin-top: 0px;
  font-family: "Shippori Mincho", serif;
}

.sv_price_table_content {
  font-size: 1.2vw;
  color: #fff;
  letter-spacing: 2px;
  font-weight: 100;
  margin-top: 0px;
  font-family: "Shippori Mincho", serif;
}

.sv_price_table_num h4 {
  font-size: 2vw;
  color: #fff;
  letter-spacing: 2px;
  font-weight: 100;
  margin-top: 0px;
  font-family: "Shippori Mincho", serif;
}

.cta_wrapper {
  width: 100%;
  padding: 200px 5vw;
  background-image: url(img/dt_39.webp);
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.3);
  background-blend-mode: darken;
  background-position: center;
}

.cta_list {
  width: 50%;
  margin: 0 auto;
  text-align: center;
}

.cta_title {
  font-size: 3vw;
  color: #fff;
  font-weight: 100;
  font-family: "Shippori Mincho", serif;
}

.cta_title_sub {
  font-size: 1.5vw;
  color: #fff;
  font-weight: 100;
  font-family: "Shippori Mincho", serif;
  margin-bottom: 50px;
}

.cta_btn_box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 40px;
}

.cta_btn_item {
  text-align: center;
  width: 30%;
}

.cta_btn_item a {
  display: flex;
  gap: 0 10px;
  padding: 15px 40px;
  box-sizing: border-box;
  justify-content: center;
  font-size: 1.3vw;
  letter-spacing: 2px;
  align-items: center;
  background: #ffb6c1;
  color: #fff;
}

.cta_btn_item:first-child a {
  background: #b2a863;
}

.cta_btn_item a img {
  width: 15%;
}

.sv_qa_top_title {
  font-size: 2vw !important;
}

.c_sv_icon {
  width: 60%;
}

.pl_st_arrow {
  display: flex;
  justify-content: space-between;
}

.pl_slide_btn_box {
  /* margin-top: 30px; */
  width: 40%;
  z-index: 100;
  position: absolute;
  bottom: -1vw;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.dgm-project-title-sm {
  font-size: 1.2vw;
}

.rc_know_text p {
  font-family: "Shippori Mincho", serif;
}

.rec_her_text {
  font-family: "Shippori Mincho", serif;
}

/* ラップトップ */
@media (max-width: 1366px) {
  .design-project-content span {
    font-size: 16px;
  }
  .ar-about-thumb {
    height: 390px;
    width: 300px;
  }

  .ai-service-top-text p {
    font-size: 16px;
    line-height: 1.3;
  }

  .sv_text {
    font-size: 16px;
  }

  .dc_info_text p {
    font-size: 16px;
  }

  .it-about-thumb-inner {
    height: 400px;
  }

  .dc_img01 {
    width: 410px;
    height: 729px;
  }

  .dc_img02 {
    width: 450px;
    height: 270px;
  }
  .dc_img03 {
    width: 330px;
    height: 470px;
  }
  .studio-showcase-wrap {
    height: 800px;
  }

  .tp-btn-yellow-border span span.text-1 {
    font-size: 16px;
  }

  .crp-project-title-sm {
    font-size: 16px;
  }

  .rc_container {
    padding: 200px 2vw 0;
  }

  .ac_btn_item a {
    font-size: 16px;
  }

  .tp-offcanvas-2-area .tp-offcanvas-menu > nav > ul > .menu_item > a {
    font-size: 20px;
  }

  .tp-offcanvas-2-area.offcanvas-2-white-bg
    .tp-offcanvas-menu
    > nav
    > ul
    > li
    > ul
    > li
    > a {
    font-size: 18px;
    display: flex;
    align-items: center;
    line-height: 1.3;
  }

  .tp-offcanvas-2-area .tp-offcanvas-menu ul > li:not(:last-child) {
    margin-bottom: 25px;
  }

  .tp-offcanvas-2-area .tp-offcanvas-menu ul li .submenu li:not(:last-child) {
    margin-bottom: 20px;
  }

  .tp-service-content .tp-section-title {
    margin-bottom: 30px;
  }

  .tp-service-content p {
    font-size: 16px;
  }

  .tp-portfolio-masonry-top-right p {
    font-size: 16px;
  }

  .pl_f_img img {
    height: 300px;
  }

  .st-award-title {
    font-size: 16px;
  }

  .st-award-wrapper
    .ar-award-right-wrap
    .ar-award-item
    .ar-award-box-left
    .ar-award-title {
    font-size: 18px;
  }

  .st-award-area {
    margin-bottom: 100px;
  }

  .pl_st_title_text {
    font-size: 16px;
  }

  .cta_title {
    font-size: 32px;
  }

  .cta_title_sub {
    font-size: 18px;
  }

  .place_wrapper {
    padding-top: 100px;
    padding-bottom: 0;
  }

  .place_top {
    width: 100%;
  }

  .dcm_list_text {
    font-size: 16px;
  }

  .pp-skill-list-title {
    font-size: 25px;
  }

  .tp-section-title-grotesk {
    margin-bottom: 40px;
  }

  .dc_promis {
    padding-top: 0;
  }

  .dcp {
    padding-top: 0;
  }

  .news_title {
    padding-bottom: 0;
    margin-bottom: 60px;
  }

  .postbox-title.fs-80 {
    font-size: 40px;
  }

  .rec_ms {
    padding-top: 0;
    padding-bottom: 0px;
  }

  .rec_right_big_num h1 {
    font-size: 300px;
  }

  .rc_know_text p {
    width: 90%;
    font-size: 15px;
  }

  .rec_left .inner-service-1-left ul li span {
    font-size: 16px;
  }

  .inner-service-1-right .rec_right_item p {
    font-size: 16px;
  }

  .inner-service-1-right .rec_right_cat span {
    font-size: 16px;
  }

  .rec_flow_wp .accordion-body {
    padding: 15px 0 0 0;
  }

  .it-faq-wrap .rec_flow_item:not(:last-child) {
    margin-bottom: 15px;
  }

  .rec_flow_img img {
    height: 500px;
  }

  .it-faq-wrap .rec_flow_item p {
    font-size: 16px;
  }

  .rec_flow_title_box {
    padding-bottom: 40px;
  }

  .rec_her {
    padding-top: 120px;
  }

  .rec_her_text {
    width: 90%;
    font-size: 15px;
  }

  .c_sv_icon {
    width: 50%;
  }

  .sv_price .container {
    width: 70%;
  }

  .sv_price_table_content {
    font-size: 16px;
  }

  .app-faq-wrap
    .ai-faq-accordion-wrap
    .accordion
    .accordion-items
    .accordion-body
    p {
    font-size: 16px;
  }
}

/* --- Tablet: 1024px以下でカード/リストを2列化、CTAを並べ替え --- */
@media (max-width: 1024px) {
  header {
    width: 100%;
  }
  main {
    width: 100%;
  }

  .top_ms_item {
    width: 80%;
    margin: 0 auto 50px;
  }

  .design-project-thumb img {
    width: 70%;
  }

  .ucl_img01 {
    height: 220px;
    object-fit: cover;
    margin-bottom: -160px;
    margin-left: -250px;
  }

  .ucl_img02 {
    width: 220px;
    height: 360px;
  }

  .ucl_text_jp {
    font-size: 16px;
  }

  .sv_text {
    font-size: 16px;
  }

  .blog_wp {
    padding-bottom: 0px;
  }

  .blog_link {
    font-size: 16px;
  }

  .dgm-blog-meta span {
    font-size: 12px;
  }

  .ac_text_item p {
    font-size: 15px;
  }

  .rc_container .row {
    display: block;
  }

  .tp-section-title-teko {
    margin-bottom: 20px !important;
  }

  .crp-project-title-box {
    margin-bottom: 60px;
  }

  .crp-project-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .crp-project-meta span {
    font-size: 16px;
  }

  .crp-project-item {
    width: 48%;
  }

  #access {
    padding: 100px 0 0;
  }

  .rc_container {
    padding: 0 2vw;
  }

  .ac_text_item {
    font-size: 16px;
  }

  .c_sv_icon {
    width: 35%;
  }

  .sv_flex_right {
    text-align: center;
  }

  .sv_ov_text_box p {
    font-size: 16px;
  }

  .sv_ov_list_box ul li {
    font-size: 16px;
  }

  .sv_price_table_title_sub {
    font-size: 12px;
  }

  .sv_price_table_title {
    font-size: 16px;
  }

  .rec_flow,
  .faq_wp {
    width: 80%;
    margin: 0 auto;
  }

  .sv_ov_wrapper,
  .rec_flow,
  .faq_wp {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 100px;
  }

  .sv_flow_title {
    padding-bottom: 40px;
  }

  .rec_flow_img img {
    height: 320px;
  }

  .svc_flow_list {
    margin-left: 0;
  }

  .it-faq-wrap .rec_flow_item i {
    font-size: 12px;
  }

  .it-faq-wrap .rec_flow_item span {
    font-size: 16px;
  }

  .it-faq-wrap .rec_flow_item:not(:last-child) {
    margin-bottom: 5px;
  }

  .app-faq-wrap
    .ai-faq-accordion-wrap
    .accordion
    .accordion-items
    .accordion-header
    .accordion-buttons {
    font-size: 16px;
  }

  .st-award-wrapper
    .ar-award-right-wrap
    .ar-award-item
    .ar-award-box-right
    .ar-award-category {
    font-size: 16px;
  }

  .st-award-wrapper
    .ar-award-right-wrap
    .ar-award-item
    .ar-award-box-left
    .ar-award-title {
    font-size: 16px;
  }

  .pl_st_text p {
    font-size: 16px;
  }

  .pl_st_text_sub span {
    font-size: 16px;
  }

  .pl_slide_btn_box {
    width: 48%;
    bottom: 15px;
  }

  .dgm-project-top-wrap {
    width: 80%;
    margin: 0 auto 45px;
  }

  .pl_st_arrow button {
    width: 60px;
    height: 60px;
  }

  .pl_st {
    padding: 90px 0 0;
  }

  .plc_wp {
    padding-top: 0;
  }

  .dcc_pl_left {
    width: 30%;
  }

  .dcc_pl_right {
    width: 65%;
  }

  .pp-skill-list ul li {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .dcp_pl_img {
    height: 300px;
    width: 85%;
  }

  .dc_cta_title {
    font-size: 3.5vw !important;
  }

  .dcm_list {
    margin-top: 40px;
  }

  .dcm_list_title {
    font-size: 16px;
  }

  .dc_promis {
    padding-bottom: 40px;
  }

  .pp-skill-list-title {
    font-size: 20px;
  }

  .dcp_pl_name_en {
    font-size: 16px;
  }

  .rec_right_big_num h1 {
    font-size: 150px;
    margin-bottom: 50px;
  }

  .rec_right_item_wp {
    width: 70%;
    margin-left: 40px;
  }

  .inner-service-1-right .rec_right_item .rec_right_item_title {
    font-size: 23px;
  }

  .rec_flow_wp {
    margin-left: 0;
  }

  .rec_flow_eq {
    font-size: 16px !important;
  }

  .rec_her {
    padding-top: 60px;
  }

  .rec_opt_text_wp {
    width: 80%;
    margin: 0 auto;
  }

  .rec_op_wrapper {
    height: 40vh;
  }

  .rec_op_title {
    font-size: 16px;
  }
}

/* --- Tablet & Phone: タイポグラフィをpx基準へ補正（vwが小さ過ぎる箇所） --- */
@media (max-width: 768px) {
  .tp-header-logo img {
    width: 20%;
  }

  video {
    height: 90vh;
  }
  .des-about-area {
    max-width: 80%;
  }
  .des-about-text p {
    font-size: 16px;
  }
  .tp_text_invert_3_name {
    font-size: 16px;
  }

  .design-project-title {
    font-size: 23px;
  }

  .ar-about-thumb img {
    margin-top: 40px;
  }

  .ucl_img02 {
    width: 100%;
    height: 300px;
  }

  .ucl_wp {
    margin-left: 0;
  }

  .ar-about-thumb img {
    margin-top: 45px;
  }

  .ucl_text_jp {
    font-size: 16px;
  }

  .pl_wrapper {
    padding-bottom: 0;
  }

  .ai-service-area {
    padding-top: 80px;
  }

  .top_sv_title_box {
    margin-bottom: 0;
  }

  .sv_item {
    width: 45%;
  }

  .it-about-area {
    padding-top: 150px;
  }

  .top_dc_gl_fst {
    width: 100%;
    height: auto;
  }

  .dc_info_text p {
    margin-top: 30px;
  }

  .dc_img_base {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .top_show_ar {
    display: none;
  }

  .blog_wp {
    padding-top: 0;
  }

  .news_container {
    width: 90%;
  }

  .tp-section-title-grotesk {
    font-size: 23px;
  }

  .top_news_box {
    justify-content: space-between;
    align-items: center !important;
  }
  .tp-btn-yellow-green.green-solid {
    width: 100%;
  }

  .top_news_btn_box {
    width: 50%;
  }

  .top_news_text_box {
    width: 50%;
  }

  .blog-thumb {
    display: none;
  }

  .top_blog_item_left {
    min-width: 25%;
  }

  #access {
    width: 85%;
  }

  .tp-section-title-teko {
    font-size: 32px;
    margin-top: 80px;
  }

  .crp-project-item {
    width: 100%;
  }

  .tp-btn-yellow-border span span.text-1 {
    font-size: 16px;
  }

  .crp-project-meta span {
    font-size: 18px;
  }

  .cta_list {
    width: 70%;
  }

  footer {
    padding: 50px 40px 100px;
  }

  .ft_flex {
    justify-content: center;
  }

  .sns_list {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .rc_container {
    padding: 0;
  }

  .top_re_wp {
    margin-bottom: 75px;
  }

  .place_top_text_sub {
    margin-left: 50px;
  }

  .tp-portfolio-masonry-top-right p {
    width: 80%;
    margin-left: 200px;
  }

  .pl_f_title_mini {
    font-size: 23px;
  }

  .pl_st {
    padding: 0;
  }

  .st-award-area {
    width: 85%;
    margin: 0 auto 80px;
  }

  .pl_slide_btn_box {
    width: 70%;
  }

  .dgm-project-title-sm {
    font-size: 16px;
  }

  .pl_st_text_sub {
    font-size: 12px;
  }

  #access {
    padding-top: 60px;
  }

  .access_flex {
    padding-bottom: 60px;
  }

  .dgm-project-top-wrap {
    width: 85%;
  }

  .rec_left_box {
    display: none;
  }

  .rec_hero_text_wp {
    width: 85%;
    margin: 0 auto;
  }

  .rec_right_item_wp {
    width: 100%;
    margin-left: 0;
    margin-top: 50px;
  }

  .rec_op_wrapper {
    flex-wrap: wrap;
    height: auto;
  }

  .rec_options_slide_item {
    width: 45%;
    margin-bottom: 30px;
  }

  .ar-about-us-4-text-area {
    margin: 0px 0 100px;
  }

  .sv_ov_wrapper,
  .rec_flow,
  .faq_wp {
    padding-bottom: 50px;
  }
}

@media (min-width: 577px) {
  .top_ms_frist_pc {
    display: block;
  }
  .top_ms_frist_sp {
    display: none;
  }
}

/* --- Phone: 576px以下で1列化とタップ領域の最適化 --- */
@media (max-width: 576px) {
  .top_visual_bottom_text {
    top: initial;
    bottom: 0;
  }

  .top_ms_frist_sp {
    display: block;
  }
  .top_ms_frist_pc {
    display: none;
  }

  .top_ms_frist_sp_title {
    color: #ffb6c1;
    font-size: 23px;
    font-family: "Shippori Mincho", serif !important;
    letter-spacing: 2px;
    line-height: 1.5;
    margin-top: 40px;
  }

  .top_ms_frist_sp_title_big {
    display: inline-block;
    font-size: 30px;
    margin: 0 5px;
  }

  .des-about-text p {
    font-size: 18px;
  }

  .top_ms_item {
    width: 90%;
  }

  .news_container {
    margin-top: 80px;
  }

  .top_news_box {
    display: block;
  }

  .top_news_text_box {
    width: 100%;
  }

  .top_news_text_box_top {
    width: 100%;
  }

  .top_news_text_box_bottom {
    width: 100%;
  }

  .tp-section-title-teko {
    margin-top: 0;
  }

  .cta_list {
    width: 90%;
  }

  .tp-section-title.fs-54.fs-60 {
    font-size: 23px;
  }

  .sp_br_tgt {
    display: none;
  }

  .place_top_text_sub {
    width: 85%;
    font-size: 23px;
    margin: 0 auto;
  }

  .sv_flex_right {
    width: 40%;
  }

  .sv_price .container {
    width: 80%;
  }

  .tp-service-5-price-heading.service-details .sv_price_title {
    font-size: 23px;
  }

  .sv_price_table_title {
    font-size: 18px;
  }

  .sv_price_table_num h4 {
    font-size: 16px;
  }

  .it-faq-wrap .rec_flow_item {
    padding-left: 40px;
  }

  .sv_ov_wrapper,
  .rec_flow,
  .rec_flow {
    padding-top: 100px;
  }

  .sv_ov_wrapper,
  .rec_flow,
  .faq_wp {
    padding-top: 0px;
    padding-bottom: 100px;
  }

  .sv_qa_top_title {
    font-size: 23px !important;
  }

  .sv_price_item {
    padding-top: 23px;
    padding-bottom: 23px;
  }

  .tp-section-title-grotesk {
    margin-bottom: 0;
  }

  .tp-portfolio-masonry-top-right p {
    margin: 40px auto;
  }

  .pl_f_title .tp_text_invert > div {
    font-size: 18px;
  }

  .tp-service-number span {
    font-size: 12px;
  }

  .tp-service-item {
    padding: 40px 35px;
  }

  .pl_f_img img {
    width: 100%;
    margin-top: 10px;
  }
  .pl_slide_btn_box {
    width: 90%;
    bottom: 95px;
  }

  .dcm_list_title {
    font-size: 18px;
  }

  .dcc_pl_left {
    width: 100%;
    margin: 30px 0;
  }
  .dcp_pl_img {
    width: 100%;
  }
  .dcc_pl_right {
    width: 100%;
  }

  .studio-team-thumb-4 {
    width: 100%;
  }

  .tp-blog-title {
    font-size: 18px;
  }

  .tp-career-title {
    line-height: 1.3;
    font-size: 23px;
    margin-top: 25px;
  }
  .rec_flow_title_box {
    padding-bottom: 20px;
  }

  .rec_her {
    padding-top: 0;
  }

  .rec_options_slide_item {
    width: 100%;
  }

  .rec_op_title_sub {
    font-size: 12px;
  }

  .rec_op_title {
    font-size: 18px;
  }

  .rec_op_img img {
    aspect-ratio: 2 / 1;
  }

  .design-project-area {
    padding-bottom: 0;
  }

  .ai-service-top-text p {
    padding-bottom: 0;
  }

  .sv_item {
    width: 100%;
  }

  .top_blog_item_left {
    min-width: 100%;
  }

  .dgm-blog-item {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .dgm-blog-title-box {
    margin-bottom: 0;
  }

  .crp-project-item {
    padding: 40px 20px;
  }

  .cta_title {
    font-size: 23px;
  }

  .cta_title_sub {
    font-size: 16px;
    text-align: left;
    line-height: 1.5;
  }

  .des-about-area {
    padding-top: 60px;
  }

  .des-about-text p {
    margin-bottom: 20px;
  }

  .ucl_text_jp {
    margin-bottom: 30px;
  }

  .tp-btn-yellow-green.green-solid {
    margin-top: 30px;
  }

  .access_flex {
    padding-bottom: 0;
  }

  .cta_wrapper {
    padding: 100px 5vw;
  }

  .ar-about-us-4-title-box .tp-section-subtitle {
    font-size: 16px;
  }

  .accordion-icon {
    display: none;
  }

  .tp-portfolio-masonry-top-right {
    width: 100%;
  }

  .sv_top_tex_sub {
    display: none;
  }

  .postbox-title.fs-80 {
    font-size: 28px;
  }

  .post_thum img {
    aspect-ratio: 2 / 1;
    height: 200px;
    object-fit: cover;
    margin: 0px 0 50px;
  }

  .postbox-details-text {
    width: 100%;
  }

  .tp-blog-details-ptb {
    padding-top: 0;
  }

  .tp-header-logo img {
    width: 25%;
  }
  .ar-about-us-4-text-title {
    font-size: 45px;
    letter-spacing: 1px;
  }
}
