* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "noto sans", sans-serif;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

ul {
    list-style: none;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading-logo {
  transform: rotate(180deg);
  display: block;
  width: 100%;
  height: auto;
}

.logo-content {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  -webkit-mask-size: 100% 0%;
  mask-size: 100% 0%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  animation: revealLogo 1.5s ease-out forwards;
  width: 100%;
}

@keyframes revealLogo {
  to {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
}

.logo-content img {
  width: 150px;
  height: auto;
  transform: rotate(180deg);
}

.logo-text {
    transform: rotate(180deg);
  font-size: 32px;
  color: #000;
  font-family: "MuseoModerno", sans-serif;
}

.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(-50px);
}

.image-reveal-left,
.image-reveal-right {
  opacity: 0;
  transition: clip-path 1s ease, opacity 1s ease;
}

.image-reveal-left {
  clip-path: inset(0 100% 0 0); /* 左から表示 */
}

.image-reveal-left.active {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

.image-reveal-right {
  clip-path: inset(0 0 0 100%); /* 右から表示 */
}

.image-reveal-right.active {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

.blur-in {
  opacity: 1;
  filter: blur(10px);
  transition: none;
}

.main-visual-link {
    opacity: 0;
}

.main-visual-link a{
    position: absolute;
    top: 90%;
    left: 80%;
    font-size: 16px;
    color: #ffffff;
    transition: all 0.5s ease;
    width: 200px;
    height: 50px;
    line-height: 50px;
    border: #ffffff solid 2px;
    border-radius: 20px;
    text-align: center;
    font-weight: bold;
}

.main-visual-link a:hover{
    background-color: #000;
    color: #fff;
    border: #000000 solid 2px;
    transition: all 0.5s ease;
}

.message {
  opacity: 0;
  filter: blur(8px);
  transition: opacity 1s ease, filter 1s ease;
}

.message.blur-in {
  opacity: 1;
  filter: blur(0);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    transition: all 0.5s ease;
    z-index: 99;
}
.header {
        opacity: 0;
}

header.active {
    background-color: black;
    transition: all 0.5s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

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

.header-logo-img img{
    display: block;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
}

.header-logo-text a{
    font-size: 46px;
    font-family: "MuseoModerno", sans-serif;
    color: #000;
    transition: all 0.5s ease;
}

header.active .header-logo-text a{
    color: #fff;
    transition: all 0.5s ease;
}

.header-nav span {
    display: block;
    width: 48px;
    height: 2px;
    background-color: #000;
    margin-bottom: 10px;
    transition: all 0.5s ease;
}

.header-nav.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    transition: all 0.5s ease;
    background-color: #fff;
}
.header-nav.active span:nth-child(2) {
    opacity: 0;
    transition: all 0.5s ease;
}
.header-nav.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    transition: all 0.5s ease;
    background-color: #fff;
}

.global-nav {
    position: fixed;
    top: 113px;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: #000000;
    transition: all 0.5s ease;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    text-align: center;
    z-index: 99;
}

.global-nav ul {
    margin-top: 100px;
}

.global-nav li {
    margin-bottom: 20px;
}                                   

.global-nav.show {
    opacity: 1;
    pointer-events: auto;
}
.main-visual {
    position: relative;
    height: 100vh;
    z-index: 2;
}

.main-visual-images img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}  

.main-visual-images img.mv-img {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: absolute;
}

.main-visual-images img.mv-img.active {
  opacity: 1;
  position: relative;
}


.main-visual-title,
.main-visual-message {
  opacity: 0;
  position: relative;
  left: 500px;
}

.main-visual-text {
    position: absolute;
    top: 50vh;
    left: 5%;
    z-index: 1;
}

.main-visual-text h1 {
    font-size: 150px;
    font-family: "Inter", sans-serif;
    color: #ffffff;
    transition: all 0.5s ease;
    font-style: italic;
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
}

.main-visual-text p {
    font-size: 32px;
    font-family: "Inter", sans-serif;
    color: #ffffff;
    transition: all 0.5s ease;
    font-style: italic;
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
}   

.header-nav-contact a{
    font-size: 18px;
    color: #000000;
    transition: all 0.5s ease;
    text-align: center;
    width: 400px;
    max-width: 100%;
    margin: 50px auto;
    margin-top: 20px;
    background-color: #fff;
    padding: 25px 0;
    border-radius: 10px;
    transition: all 0.5s ease;
    display: block;
}

.header-nav-contact a:hover {
    background-color: rgb(177, 177, 177);
    transition: all 0.5s ease;
}

.global-nav ul li a {
    position: relative;
    color: #fff;
    font-size: 24px;
    transition: all 0.5s ease;
    font-family: "MuseoModerno", sans-serif;
}

.global-nav ul li a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.5s ease;
    transform: scaleX(0);
    transform-origin: left;
}

.global-nav ul li a:hover::after {
    transform: scaleX(1.0);
    transition: all 0.5s ease;
}

.header-nav-logo-text {
    font-size: 46px;
    font-family: "MuseoModerno", sans-serif;
    color: #ffffff;
}

.concept {
    background-color: #000000;
    position: relative;
}

.concept-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 150px 30px;
    color: #fff;
}

.title {
    font-size: 86px;
    font-family: "MuseoModerno", sans-serif;
}

.title-sub {
    font-size: 20px;
    position: relative;
    top: -18px;
    opacity: 0;
}

.title-sub-top {
    font-size: 20px;
    position: relative;
    top: -18px;
    opacity: 0;
}

.message {
    display: block;
    font-size: 46px;
    line-height: 1.5;
    margin-top: 70px;
    margin-bottom: 70px;
}

.italic {
    font-style: italic;
}

.message-text {
    font-size: 24px;
    line-height: 2;
}

#wrapper {
  position: absolute;
  top: 0;
  left: 30%;
  width: 100%;
  height: 100%;
}
.scroll {
  width: 100%;
  height: 100%;
  position: absolute;
  svg {
    margin-top: 20px;
    width: 18px;
    height: 18px;
    animation: scroll 0.95s ease-in-out alternate infinite;
    fill: none;
  }
}

.circle {
  width: 20px;
  height: 20px;
  border-radius: 40%;
  opacity: 0;
  margin: -19px auto;
  transition: transform 1s cubic-bezier(0.14, 0.15, 0.13, 0.99);
}


.service-top-message {
    max-width: 1440px;
    margin: 0 auto;
    padding: 150px 30px;
    color: #000000;
}

.service-top-text {
    font-size: 24px;
    line-height: 2;
}

.service-top-list-item {
    position: relative;
    margin-bottom: 100px;
}

.service-top-list-item img {
    width: 100%;
    object-fit: cover;
    max-height: 800px;
    min-height: 650px;
}

.service-top-list-item-text-left {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 50%;
    height: 100%;
    padding: 20px 50px;
    background-color: rgba(255, 255, 255, 0.5);
}

.service-top-list-item-text-right {
    position: absolute;
    top: 0%;
    left: 50%;
    width: 50%;
    height: 100%;
    padding: 20px 50px;
    background-color: rgba(255, 255, 255, 0.5);
}

.service-top-list-item-text-inner-wrapper {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.service-top-list-item-text-inner {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.service-top-list-item-text-inner.active {
  opacity: 1;
  transform: translateY(0);
}

.service-top-list-item-text-left h3,
.service-top-list-item-text-right h3 {
    font-size: 64px;
    margin-bottom: 75px;
}

.service-top-list-item-text-left p,
.service-top-list-item-text-right p {
    font-size: 24px;
    margin-bottom: 75px;
}

.viewbtn {
    position: relative;
    color: #000;
    font-size: 18px;
    transition: all 0.5s ease;
    width: 400px;
    max-width: 100%;
    margin: 50px auto;
    font-weight: bold;
    padding: 25px 0;
    border-radius: 10px;
    border: #000 solid 1px;
    transition: all 0.5s ease;
    display: block;
    text-align: center;
}

.viewbtn:hover {
    background-color: #000;
    color: #fff;
    transition: all 0.5s ease;
}

.works-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 150px 30px 0px 30px;
    color: #000000;
}

.list-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    margin: 50px auto;
    gap: 50px;
}


.list-item {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  transition: all 0.5s ease;
  width: 30%;
}

.list-item.active {
  opacity: 1;
  transform: translateY(0);
}

.list-item:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
    opacity: 0.8;
}

.list-item a {
    display: block;
    color: #000;
    transition: all 0.5s ease;
}

.list-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.list-item-text {
    padding: 20px;
    font-size: 16px;
    width: 100%;
}

.list-item-category { 
    font-size: 16px;
    margin: 20px 0;
}

.list-item-title {
    font-size: 24px;
    margin: 20px 0;
    word-break: break-word;
    font-weight: bold;
}    

.list-item-excerpt {
    font-size: 16px;
    margin: 20px 0;
}

.list-item-date {
    font-size: 16px;
}


.contact-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 150px 30px;
    color: #000000;
}

.contact-text {
    font-size: 24px;
    text-align: center;
    margin: 50px 0;
}

footer {
    background-color: #000000;
    padding: 140px 0;
    text-align: center;
}

.footer-logo {
    font-size:46px;
    color: #fff;
    font-family: "MuseoModerno";
}

.footer-nav ul{
    display: flex;
    justify-content: center;
    margin: 50px 0;
    gap: 50px;
}

.footer-nav ul li a {
    position: relative;
    transition: all 0.5s ease;
    font-size: 24px;
    color: #fff;
    font-family: "MuseoModerno";
}

.footer-nav ul li a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.5s ease;
    transform: scaleX(0);
    transform-origin: left;
}

.footer-nav ul li a:hover::after {
    transform: scaleX(1);
    transition: all 0.5s ease;
}

.footer-sns {
    display: block;
    margin: 50px auto;
}

.footer-inner small{
    color: #fff;
    font-size: 18px;
    font-family: "MuseoModerno";
    margin-top: 50px;
}

/* about-us */
.title-wrapper {
    position: relative;
}

.title-wrapper img {
    width: 100%;
    max-height: 800px;
    min-height: 400px;
    object-fit: cover;
    margin-top: 113px;
}

.title-inner {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.title-main {
    font-size: 100px;
    color: #000000;
    font-family: "MuseoModerno";
    opacity: 0;
}

.char.space {
  display: inline-block;
  width: 0.5em;
}

.members {
    overflow: hidden;
}

.members-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 350px 30px 0px 30px;
}

.members-item {
    position: relative;
}

.big-font {
    font-size: 550px;
    font-family: "MuseoModerno";  
    font-weight: 500;  
}

.big-font-yohta {
    background: linear-gradient(90deg, #bdf2ff 0%, hsl(189, 100%, 97%)100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.big-font-osamu {
    background: linear-gradient(90deg, #0d00ff36 0%, hsl(229, 65%, 97%)100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.big-font-akari {
    background: linear-gradient(90deg, #ebc7ff 0%, hsl(272, 100%, 97%)100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.members-item-big-first,
.members-item-big-last {
    opacity: 0;
}


.members-item-big-first {
    position: absolute;
    top: -50%;
    left: -20vw;
    z-index: -1;
    letter-spacing: .1em;
    transform: translateX(-200px);
}

.members-item-big-last {
    position: absolute;
    top: 25%;
    left: 18vw;
    z-index: -1;
    letter-spacing: .1em;
    transform: translateX(200px);
}

.members-item-dtl {
    display: flex;
    justify-content: space-between;
    align-items: top;
    margin: 0 auto 550px auto;
    opacity: 0;
}

.members-item-dtl-left,
.members-item-dtl-right {
    width: 47%;
}

.members-item-dtl-right {
    background-color: #ffffff36;
}

.members-item-dtl-left img{
    width: 100%;
    max-height: 700px;
    min-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.members-item-dtl-right table {
    margin: 20px 0;
    font-size: 20px;
    border-collapse: collapse;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.members-item-dtl-right table th,
.members-item-dtl-right table td {
    padding: 10px;
    border-bottom: 2px solid #ccc;
    text-align: left;
}

.members-item-dtl-right-name {
    font-size: 46px;
}

.members-item-dtl-right-job {
    font-size: 16px;
    position: relative;
    top: -10px;
    margin-bottom: 40px;
}

.members-item-dtl-right-job::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
}

.members-item-dtl-right-text {
    font-size: 20px;
    line-height: 1.5;
}

.members-item-dtl-right-profile {
    font-size: 20px;
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    margin-top: 40px;
    display: inline-block;
}

/* service */
.service {
    opacity: 0;
}

.service-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 150px 30px 0px 30px;
    color: #000000;
}

.service-title {
    font-size: 65px;
    margin-bottom: 70px;
    opacity: 0;
}

.service-text {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 150px;
}

.service-flow-sub-title {
    font-size: 16px;
    position: relative;
    top: -10px;
    margin-bottom: 40px;
}

.service-flow-line {
    display: flex;
    justify-content: space-between;
    align-items: top;
    margin: 0 auto;
}

.service-flow-line-item {
    width: 30%;
}

.service-flow-line-box {
    padding: 0 0 0 20px;
    display: flex;
    justify-content: flex-start;
    align-items:center;
    gap: 20px;
    background-color: #000;
    color: #fff;
    width: 100%;
    height: 60px;
    font-size: 24px;
    font-family: "MuseoModerno", sans-serif;
    margin: 0px auto 30px auto;
}

.service-flow-free {
    text-align: right;
    display: block;
}

.service-flow-line-text {
    font-size: 18px;
    line-height: 1.5;
}

.service-flow-triangle {
    width: 0;
    height: 0;
    margin: 60px auto 60px auto;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 60px solid #000;
}



.service-flow-text {
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    margin: 50px 0 150px 0;
}

.service-flow-dtl-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px auto 100px auto;
}

.service-flow-dtl-item:last-of-type {
  margin: 25px auto 50px auto;
}

.service-flow-dtl-item-left {
    width: 50%;
}
.service-flow-dtl-item-left h3 {
    font-size: 46px;
    font-family: "MuseoModerno", sans-serif;
}

.service-flow-dtl-item-right {
    width: 47%;
}

.service-flow-dtl-item-right img {
    width: 100%;
    max-height: 700px;
    min-height: 400px;
    object-fit: cover;
}

.service-flow-dtl-item-sub-title {
    font-size: 16px;
    position: relative;
    top: -10px;
    margin-bottom: 40px;
}

.service-flow-dtl-item-text {
    font-size: 18px;
    line-height: 2;
}

.service-price-text {
    font-size: 18px;
    line-height: 2;
    margin: 50px 0 100px 0;
}

.service-price-table {
    margin: 50px 0;
    border-collapse: collapse;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.service-price-table th,
.service-price-table td {
    border: 1px solid #000;
    padding: 30px;
    vertical-align: top;
    font-size: 18px;
}

.service-price-table tbody th {
    background-color: #f0f0f0;
    font-weight: bold;
}

.service-price-table tbody td {
    text-align: center;
}

.service-price-table .service-price-table-td {
    text-align: left;
}

.service-price-table thead th {
    background-color: #f0f0f0;
    font-weight: bold;
    font-size: 24px;
}

.service-price-attention {
    font-size: 24px;
    margin: 0px 0 16px 0;
    font-weight: bold;
}

.service-price-attention-text {
    font-size: 18px;
    margin-bottom: 40px;
}

/* works */
.works-archive {
    opacity: 0;
}

.pagination ul {
  display: flex;
  gap: 10px;
  list-style: none;
  justify-content: center;
  padding: 0;
}

.pagination li a,
.pagination li span {
  display: block;
  padding: 8px 12px;
  border: 1px solid #ccc;
  text-decoration: none;
  color: #333;
  border-radius: 4px;
  transition: background 0.3s;
}

.pagination li a:hover {
  background: #f0f0f0;
}

.pagination li .current {
  background: #333;
  color: #fff;
  border-color: #333;
}

/* works-single */
.works-single {
    opacity: 0;
}

.works-single-inner {
    max-width: 1440px ;
    margin: 0 auto  !important;
    padding: 150px 30px;
    color: #000000;
}

.works-single-inner img {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.works-single-first_view {
    width: 100% !important;
    object-fit: cover;
    margin-bottom: 80px;
}

.works-single-meta {
    margin-bottom: 80px;
}

.works-single-title {
    font-size: 40px;
    margin-bottom: 20px;
}



.works-single-url {
    font-size: 16px;
    margin-bottom: 80px;
    padding-bottom: 20px;
    position: relative;
}

.works-single-point {
    font-size: 24px;
    margin-bottom: 50px;
}

.works-single-url ::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
}

.works-single-page_img {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
    align-items: top;
}

.works-single-page_img1,
.works-single-page_img2,
.works-single-page_img3
 {
    width: 32%;
    object-fit: cover;
    border-radius: 10px;
}

.works-single-member {
    font-size: 30px;
    margin-bottom: 10px;
}

.works-single-staff-table th {
    text-align: left;
}

.works-single-staff-table td {
    text-align: left;
    padding: 0 0 5px 16px;
}

/* contact */
.contact-form {
    opacity: 0;
}
.contact-form-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 150px 30px;
    color: #000000;
}

.contact-form-text {
    font-size: 24px;
    margin-bottom: 80px;
    text-align: center;
}

form {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 50px;
    margin-bottom: 100px;
}

.contact-form-label {
  display: inline-block;
  font-weight: bold;
  margin-bottom: 4px;
  font-size: 18px;
}

.contact-form-label-span {
    display: inline-block;
    margin-bottom: 4px;
    font-size: 12px;
    color: rgb(255, 255, 255);
    background-color: #ff0000;
    padding: 2px 8px;
    border-radius: 5px;
    font-weight: normal;
    vertical-align: middle;
}

.contact-form-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background-color: #fff;
}

.contact-form-textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background-color: #fff;
}

.consent-message {
    font-size: 24px;
    font-weight: bold;
}

.contact-form-consent {
    text-align: center !important;
    display: block;
}

.contact-form-consent input[type="checkbox"] {
    margin-right: 10px;
    width: 24px !important;
    height: 24px !important;
    vertical-align: sub;
}

.contact-form-submit {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.contact-form-submit:hover {
    background-color: #555;
}

input[type="submit"]:disabled,
button[disabled],
.wpcf7-submit:disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
}

.wpcf7-response-output {
  background-color: #ffffff;
  border: 2px solid #ceffe4 !important;
  color: #000000;
  padding: 20px;
  border-radius: 5px;
  font-size: 24px;
  margin-top: 20px;
  transition: all 0.3s ease;
}

/* blog */
.blog {
    opacity: 0;
}

/* blog-dtl */
.blog-dtl {
    opacity: 0;
}

.blog-dtl-inner {
    max-width: 1440px;
    margin: 0 auto !important;
    padding: 150px 30px;
    color: #000000;
}

.blog-dtl-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
    align-items: top;
}

.blog-dtl-top-left,
.blog-dtl-top-right {
    max-width: 47%;
    height: auto;
}

.blog-dtl-category {
    font-size: 16px;
    margin-bottom: 50px;
}

.blog-dtl-title {
    font-size: 40px;
    margin-bottom: 50px;
    word-break: break-word;
}

.blog-dtl-written {
    font-size: 16px;
}

.blog-dtl-date {
    font-size: 16px;
}

.blog-dtl-image {
    width: 100%;
    object-fit: cover
}

.blog-dtl-meta  {
    max-width: 700px !important;
    margin: 0 auto;
}


.blog-dtl-meta h2{
    font-size: 26px;
    margin-bottom: 20px;
    display: block;
}

.blog-dtl-meta p{
    font-size: 16px;
    margin-bottom: 50px;
    line-height: 2;
}

.blog-dtl-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 30px;
  position: relative;
  border-top: #CCC solid 1px;
  border-bottom: #CCC solid 1px;
}

.blog-dtl-prev img,
.blog-dtl-next img {
    background-color: #000000;
    padding:6px;
    border-radius: 50px;
    width: 24px;
    height: 24px;
}

.blog-dtl-prev a,
.blog-dtl-next a,
.blog-dtl-back a
 {
  color: #000000;
  display: flex;
  align-items: center;
  gap: 8px; /* 画像とテキストの間隔（調整可能） */
  text-decoration: none;
  transition: all 0.5s ease;
  position: relative;
   word-break: break-word;
}

.blog-dtl-prev a::after,
.blog-dtl-next a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000000;
    transition: all 0.5s ease;
    transform: scaleX(0);
    transform-origin: left;
}

.blog-dtl-prev a:hover::after,
.blog-dtl-next a:hover::after {
    transform: scaleX(1.0);
    transition: all 0.5s ease;
}

.white {
    color: #ffffff;
}

.pc {
    display: block;
}

.sp {
    display: none;
}
/* メディアクエリ */
/* タブレット（縦～横） */
@media screen and (max-width: 1024px) {
.pc {
    display: block;
}
.sp {
    display: none;
}

.global-nav {
    top: 112px;
}

.main-visual-text h1 {
    font-size: 86px;
}

.main-visual-text p {
    font-size: 20px;
}

.main-visual-link a{
    position: absolute;
    top: 80%;
    left: 70%;
    font-size: 16px;
}

.title {
    font-size: 64px;
}

.title-sub {
    font-size: 16px;
}

.title-sub-top {
    font-size: 16px;
}

.message {
    font-size: 36px;
}

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

.service-top-list-item-text-left h3,
.service-top-list-item-text-right h3 {
    font-size: 42px;
    margin-bottom: 30px;
}

.service-top-list-item-text-left p,
.service-top-list-item-text-right p {
    font-size: 18px;
    margin-bottom: 75px;
}

.list-inner {
    display: flex;
    flex-wrap: wrap;
    margin: 50px auto;
    gap: 30px;
}

.list-item-category { 
    font-size: 12px;
    margin: 10px 0;
}

.list-item-title {
    font-size: 18px;
    margin: 10px 0;
}

.list-item-excerpt {
    font-size: 14px;
    margin: 20px 0;
}

.list-item-text {
    font-size: 12px;
}

.list-item-date {
    font-size: 12px;
}

.viewbtn {
    font-size: 16px;
    width: 250px;
    margin: 50px auto;
    font-weight: bold;
    padding: 18px 0;
}

.contact-text {
    font-size: 18px;
}


/* about-us */
.title-main {
    font-size: 64px;
}

.title-sub {
    font-size: 16px;
}

.title-inner {
    position: absolute;
    top: 60%;
}

.members-inner {
    padding: 0px 20px 0px 20px;
    margin-top: 300px;
}

.big-font {
    font-size: 350px;
}

.members-item-big-first {
    top: -40%;
    left: -20vw;
}

.members-item-big-last {
    top: 15%;
    left: 18vw;
}

.members-item-dtl {
    margin: 0 auto 300px auto;
}

.members-item-dtl-right table {
    margin: 12px 0;
    font-size: 16px;
}

.members-item-dtl-right-name {
    font-size: 32px;
}

.members-item-dtl-right-job {
    font-size: 14px;
    position: relative;
    top: -8px;
    margin-bottom: 20px;
}

.members-item-dtl-right-text {
    font-size: 16px;
}

.members-item-dtl-right-profile {
    font-size: 16px;
    background-color: #000;
    color: #fff;
    padding: 6px 20px;
    margin-top: 20px;
    display: inline-block;
}

/* service */
.service-inner {
    padding: 80px 20px 0px 20px;
}

.service-title {
    font-size: 46px;
    margin-bottom: 50px;
}

.service-text {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 80px;
}

.service-flow-line-box {
    font-size: 20px;
}

.service-flow-line-text {
    font-size: 16px;
    line-height: 1.5;
}

.service-flow-dtl-item-text {
    font-size: 16px;
    line-height: 2;
}

/* blog */
.blog-dtl-inner {
    padding: 100px 20px;
}

.blog-dtl-top {
    flex-direction: column-reverse;
    justify-content: center;
    margin-bottom: 50px;
    align-items: flex-start;
    position: relative;
    gap: 20px;
}

.blog-dtl-top-left,
.blog-dtl-top-right {
    max-width: 100%;
}

.blog-dtl-category {
    font-size: 16px;
    margin-bottom: 20px;
}

.blog-dtl-title {
    font-size: 24px;
    margin-bottom: 20px;
    word-break: break-word;
}

.blog-dtl-written {
    font-size: 16px;
}

.blog-dtl-date {
    font-size: 16px;
}

.blog-dtl-meta h2{
    font-size: 20px;
    margin-bottom: 20px;
}

.blog-dtl-meta p{
    font-size: 16px;
    margin-bottom: 50px;
}


}

/* スマホ以下 */
@media screen and (max-width: 767px) {
.pc {
    display: none;
}
.sp {
    display: block;
}

.logo-content img {
  width: 100px;
}

.logo-text {
  font-size: 24px;
}

.global-nav {
    top: 64px;
}

.global-nav ul {
    margin-top: 20px;
}

.global-nav ul li a {
    font-size: 16px;
}

.header-nav-contact a{
    font-size: 16px;
    width: 250px;
    padding: 20px 0;
}

.header-inner {
    padding: 12px 12px;
}

.header-logo-img img{
    width:  40px;
    height: 40px
}

.header-logo-text a{
    font-size: 21px;
}

.header-nav span {
    width: 36px;
    height: 2px;
    margin-bottom: 8px;
}

.main-visual-images img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}  


.main-visual-text {
    top: 40vh;
}

.main-visual-text h1 {
    font-size: 48px;
}

.main-visual-text p {
    font-size: 16px;
}

.main-visual-link a{
    top: 80%;
    left: 5%;
    font-size: 16px;
}

.main-visual-text {
    position: absolute;
    top: 50vh;
    left: 5%;
    z-index: 1;
}

.concept-inner {
    padding: 80px 20px;
    color: #fff;
}

.title {
    font-size: 60px;
    font-family: "MuseoModerno", sans-serif;
}

.title-sub {
    font-size: 16px;
}

.title-sub-top {
    font-size: 16px;
}

.message {
    font-size: 30px;
}

.message-text {
    font-size: 16px;
}

.service-top-message {
    padding: 150px 20px;
}

.service-top-list-item img {
    object-fit: cover;
    min-height: 250px;
}

.service-top-list-item-text-left {
    position: static;
    width: 100%;
    height: 100%;
    padding: 0;
    background-color: rgba(255, 255, 255, 0);
}

.service-top-list-item-text-right {
    position: static;
    width: 100%;
    height: 100%;
    padding: 0;
    background-color: rgba(255, 255, 255, 0);
}


.service-top-list-item-text-inner-wrapper {
  position: static;
  top: 0%;
  transform: translateY(0%);
  margin-top: 20px;
  padding: 0 20px;
}

.service-top-list-item-text-left h3,
.service-top-list-item-text-right h3 {
    font-size: 38px;
    margin-bottom: 20px;
}

.service-top-list-item-text-left p,
.service-top-list-item-text-right p {
    font-size: 16px;
    margin-bottom: 0px;
}

.works-inner {
    padding: 80px 20px 0px 20px;
}

.list-inner {
    flex-direction: column;
    justify-content: center; 
    gap: 30px;
}

.list-item {
    width: 100%;
}

.contact-inner {
    padding: 80px 20px;
}

footer {
    padding: 80px 0;
}

.footer-logo {
    font-size:36px;
}

.footer-nav ul{
    flex-direction: column;
    margin: 50px 0;
    gap: 10px;
}

.footer-nav ul li a {
    font-size: 16px;
}

.footer-inner small{
    color: #fff;
    font-size: 12px;
    font-family: "MuseoModerno";
    margin-top: 50px;
}

.footer-sns {
    width: 30px;
    height: 30px;
}

.footer-sns img{
    width: 30px;
    height: 30px;
}

/* about-us */
.title-wrapper img {
    margin-top: 64px;
}

.title-inner {
    white-space: nowrap;
}
.title-main {
    font-size: 54px;
}

.big-font {
    font-size: 250px;
}

.members-item-big-first {
    top: -20%;
    left: -20vw;
    letter-spacing: 0em;
}

.members-item-big-last {
    top: 5%;
    left: 18vw;
    letter-spacing: 0em;
}

.members-item-dtl {
    margin: 0 auto 200px auto;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
}

.members-item-dtl-left,
.members-item-dtl-right {
    width: 100%;
}

.members-item-dtl-right table {
    margin: 12px 0;
    font-size: 16px;
}

.members-item-dtl-right-name {
    font-size: 32px;
}

.members-item-dtl-right-job {
    font-size: 14px;
    position: relative;
    top: -8px;
    margin-bottom: 20px;
}

.members-item-dtl-right-text {
    font-size: 16px;
}

.members-item-dtl-right-profile {
    font-size: 16px;
    background-color: #000;
    color: #fff;
    padding: 6px 20px;
    margin-top: 20px;
    display: inline-block;
}

/* service */
.service-title {
    font-size: 36px;
    margin-bottom: 30px;
}

.service-text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 60px;
}

.service-flow-line {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 40px;
}

.service-flow-line-item {
    width: 100%;
}

.service-flow-line-box {
    font-size: 20px;
    margin: 0px auto 10px auto;
}

.service-flow-free {
    font-size: 14px;
}

.service-flow-text {
    font-size: 16px;
    margin: 50px 0 80px 0;
}

.service-flow-triangle {
    width: 0;
    height: 0;
    margin: 60px auto 60px auto;
    border-left: 32px solid transparent;
    border-right: 32px solid transparent;
    border-top: 50px solid #000;
}

.service-flow-dtl-item {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px auto 60px auto;
}

.service-flow-dtl-item-left,
.service-flow-dtl-item-right  {
    width: 100%;
}

.service-flow-dtl-item-left h3 {
    font-size: 38px;
}

.service-flow-dtl-item-sub-title {
    font-size: 16px;
    margin-bottom: 18px;
     white-space: nowrap;
}

.service-flow-dtl-item-right img {
    max-height: 350px;
    min-height: 200px;
}

.service-price-text {
    font-size: 16px;
    line-height: 2;
    margin: 20px 0 40px 0;
}

.service-price-table {
    margin: 30px 0;
}

.service-price-table th,
.service-price-table td {
    padding: 10px;
    font-size: 16px;
}

.service-price-table thead th {
    font-size: 20px;
}

.service-price-attention {
    font-size: 18px;
    margin: 0px 0 10px 0;
    font-weight: bold;
}

.service-price-attention-text {
    font-size: 16px;
}

/* works */
.works-single-inner {
    padding: 80px 20px;
}

.works-single-first_view {
    margin-bottom: 20px;
}

.works-single-title {
    font-size: 32px;
    margin-bottom: 20px;
}


.works-single-url {
    font-size: 16px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    position: relative;
}

.works-single-point {
    font-size: 16px;
    margin-bottom: 50px;
}

.works-single-page_img {
    margin-bottom: 50px;
    margin-top: 30px;

}

.works-single-member {
    font-size: 24px;
    margin-bottom: 10px;
}

.works-single-staff-table th {
    font-size: 14px;
}

.works-single-staff-table td {
    padding: 0 0 2px 16px;
    font-size: 14px;
}

/* contact */
.contact-form-inner {
    padding: 80px 20px;
}

.contact-form-text {
    font-size: 16px;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form-label {
  font-size: 16px;
}

form {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 0 20px;
    margin-bottom: 50px;
}

.contact-form-input {
    margin-bottom: 0px;
}

.consent-message {
    font-size: 16px;
}

/* blog-dtl */
.blog-dtl-navigation {
  flex-direction: column; 
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
}

.blog-dtl-title {
    font-size: 20px;
    margin-bottom: 20px;
    word-break: break-word;
}

.blog-dtl-prev a,
.blog-dtl-next a,
.blog-dtl-back a
 {
    font-size: 14px;
}

.blog-dtl-written {
    font-size: 12px;
}

.blog-dtl-date {
    font-size: 12px;
}

.blog-dtl-meta h2{
    font-size: 16px;
    margin-bottom: 16px;
}

.blog-dtl-meta p{
    font-size: 14px;
    margin-bottom: 40px;
}

}
