@charset "UTF-8";
/* CSS Document */
html {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #333;
  background-color: #F8F8F8;
  font-size: 62.5%;
  margin: 0;
  padding: 0;
  height: 100%;
}
body {
  margin: 0;
  padding: 0;
  height: 100%;
  text-align: center;
  letter-spacing: 0.05em;
}
body.is-fixed {
  overflow: hidden;
}
main {
  margin: 0 auto;
  font-size: clamp(16px, calc(1vw + 6px), 20px);
  font-weight: 500;
  min-height: 100vh;
  overflow: hidden;
  line-height: 1.5;
}
main.atBottom {
  padding-bottom: 80px;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
a {
  text-decoration: none;
  box-sizing: border-box;
  color: var(--blk);
  display: inline-block;
  transition: transform 0.3s ease!important;
}
@media (hover: hover) and (pointer: fine) {
  a:not(.worksLink, .footer__contact-link, .link-url):hover {
    transform: scale(1.05) !important;
  }
}
ul {
  padding: 0;
}
ul li {
  list-style: none;
}
p {
  font-size: clamp(16.0px, calc(0.2vw + 15.3px), 18.0px);
  font-weight: 400;
}
.sp-br {
  display: none;
}
.c-wrap {
  max-width: 90%;
  margin: 0 auto;
}
.section-title {
  text-align: left;
  display: flex;        
  align-items: center;
  gap: 100px;
  margin-bottom: 80px;
}
.section-title h2 {
  font: var(--heading);
  font-weight: 800;
}
.btn-more {
  background-color: var(--blk);
  padding: 20px 100px;
  display: block;
  width: fit-content;
  margin: 0 auto;
  border-radius: 50px;
  text-align: center;
  z-index: 100;
  position: relative;
}
:root {
  --main-font: "Noto Sans JP", sans-serif;
  --accent-font: "Inter", sans-serif;
  --heading: 700 clamp(52.0px, calc(2.6vw + 42.1px), 80.0px) "Inter", sans-serif;
  --heading-sub: 600 clamp(14.0px, calc(0.9vw + 10.5px), 24.0px) "Noto Sans JP", sans-serif;
  --sectionText: 500 clamp(17.0px, calc(1.2vw + 4.7px), 22.0px) "Noto Sans JP", sans-serif;
  /*カラー*/
  --wht: #fff;
  --blk: #333;
  --gry: #EAE9E5;
  --gry-card: #EAE9E5;
  --orn: #ED6B01;
  --orn-grad: linear-gradient(90deg, #f7ad09, #ec6400);
  --pnk-ppl-grad : linear-gradient(90deg, #fff1eb, #d9e3f3);
  --top-slide-grad : linear-gradient(90deg, #fff1eb, #d9e3f3 50%, #fff1eb);
  --grn-yel: linear-gradient(90deg, #ECCB1B, #75B665);
  /*エフェクト*/
  --shadow01: 6px 5px 13px 0px rgba(91, 91, 91, 0.25);
}
.container {
  position: relative;
  padding-top: 20px; 
}
.logo {
  text-align: left;
}
.ft-inter24{
  font-family: var(--accent-font);
  font-size: clamp(22px, calc(0vw + 20px), 24px);
  font-weight: 500;
  font-style: normal;
}
.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}
.nav-links{
  display: flex;
  gap: 30px;
}
.menu-btn, .nav-links .sp-only, .nav-links .sub-txt, .nav-footer {
  display:none;
}
.side-social {
  position: absolute;
  top: 130px;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 60px;
}
.side-social span {
  writing-mode: vertical-rl;
  font-size: clamp(16px, 1vw, 18px);
}
.icons {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
}
.icons::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5px;
  height: 50px;
  background-color: #333;
}
.icons img {
  display: block;
  margin-bottom: 10px;
}
.floating-contact-btn {
  position: fixed;
  right: 1%;
  bottom: 40px; 
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 900;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
@media (hover: hover) and (pointer: fine) {
  .floating-contact-btn:hover {
    transform: scale(1.05);
  }
}
.rotating-text-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateClockwise 20s linear infinite;
}
.rotating-text-wrapper svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.rotating-text-wrapper text {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 7px;
  letter-spacing: 0.8px;
}

@keyframes rotateClockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.inner-circle-btn {
  position: relative;
  width: 200px;
  height: 100%;
  background-color: #F8ED02;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border: 1px solid #333333;
  transition: background-color 0.3s ease;
}
.inner-circle-btn span {
  font-size: clamp(16.0px, calc(0.3vw + 13.7px), 18.0px);
  font-weight: 500;
}
.cta {
  padding: 100px 20px;
}
.LP-cta {
  margin-bottom: 100px;
}
.cta__container {
  width: min(95%, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.cta__card {
  background-color: var(--wht);
  border: 1px solid var(--blk);
  border-radius: 24px;
  box-shadow: var(--shadow01);
  padding: 60px 40px;
  text-align: center;
  color: var(--blk);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta__card--client {
  border-top: 6px solid var(--orn);
}
.cta__card--member {
  border-top: 6px solid #75B665;
}
.cta__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.cta__tag-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.cta__tag--orange {
  color: var(--orn);
}
.cta__tag--green {
  color: #4E9A4F;
}
.cta__card-title {
  font-size: clamp(22.0px, calc(1.4vw + 11.0px), 30.0px);
  font-weight: bold;
  line-height: 1.4;
  min-height: 2.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.cta__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
  display: inline-block;
}
.cta__list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 2.5rem;
}
.cta__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--orn);
}
.cta__card--member .cta__list li::before {
  color: #4E9A4F;
}
.cta__button {
  display: block;
  color: var(--wht);
  font-weight: bold;
  transition: transform 0.3s ease, filter 0.3s ease;
  padding: 18px 45px;
  width: fit-content;
  margin-top: auto;
}
@media (hover: hover) and (pointer: fine) {
  .cta__button:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
  }
}
.cta__button--orange {
  background: var(--orn-grad);
}
.cta__button--green {
  background: var(--grn-yel);
}
.access {
  padding: 200px 20px 100px;
  background: linear-gradient( rgba(255, 255, 255, 0.7)),  url("../img/utsunomiya.png") center/cover no-repeat;
  position: relative;
}
.access::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1440 / 102;
  background: url(../img/access_top.svg) center / cover no-repeat;
  z-index: 1;
}
.access__header {
  text-align: center;
  margin-bottom: 60px;
}
.section-title.access-title {
  display: block;
  text-align: center;
}
.access__container {
  width: min(1200px,95%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}
.access__info {
  flex: 1;
  text-align: left;
}
.access__company {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.access__address, .access__tel, .access__time {
  line-height: 1.8;
}
.btn-map {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 20px; 
  background-color: var(--blk);
  color: var(--wht);
  border-radius: 24px;
  text-decoration: none;
  line-height: 1;
  margin-top: 10px;
}
.btn-map .material-symbols-outlined {
  margin-right: 8px;
}
@media (hover: hover) and (pointer: fine) {
  .btn-map:hover {
    opacity: 0.8;
  }
}
.access__map {
  flex: 1.2;
  height: 350px;
  overflow: hidden;
}
.footer {
  background-color: #20222A;
  padding: 5% 0 130px 0;
  position: relative;
  overflow: hidden;
  color: var(--wht);
}
.footer__container {
  width: min(1600px, 90%);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.footer__contact-link {
  font: 300 clamp(32.0px, calc(3.9vw + 17.2px), 74.0px) "Inter", sans-serif;
  text-decoration: none;
  display: block;
  margin-bottom: 20px;
  transition: opacity 0.3s;
  color: var(--wht);
}
.footer__contact-link .arrow {
  display: inline-block;
  margin-left: 10px;
  transition: transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer__contact-link:hover .arrow {
    transform: translateX(10px);
  }
}
.footer__contact-link .arrow {
  font-weight: normal;
  margin-left: 10px;
}
.footer__logo {
  width: 250px;
  margin-bottom: 15px;
}
.footer__logo img {
  width: 100%;
  margin-bottom: 10px;
}
.footer__copyright {
  font-size: 1.2rem;
  text-align: left;
}
.footer__nav-list {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 15%;
  padding: 0;
  margin-top: 15px;
}
.footer__nav-list a {
  color: #fff;
  font: 300 2.2rem "Inter", sans-serif;
}
.footer__bg-text {
  font: 700 clamp(50.0px, calc(6.1vw + 27.1px), 115.0px) Arial, Helvetica, sans-serif;
  text-transform: none;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(255, 255, 255, 0.3);
  position: absolute;
  bottom: -3vw;
  left: -2vw;
  z-index: 1;
}
 .footer_sns {
    display: none;
  }

/* ==========================================================================
   タブレットサイズ
   ========================================================================== */
@media (max-width: 1024px) {
  .nav {
    justify-content: space-between;
    width: 95%;
    margin: 0 auto;
  }
  .nav-wrap {
    position: fixed;
    top: 0;
    right: -100%;            
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    z-index: 999;
    transition: right 0.6s ease;
    padding-top: 20%;
    align-items: center;
  }
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    width: 90%;
    margin: 0 auto;
  }
  .nav-wrap.is-open {
    right: 0;
  }
  .nav-wrap .sp-only {
    display: block;
  }
  .nav-wrap .sp-only.nav-sub {
    font-size: 1.8rem;
    padding: 0;
  }
  .nav-links li {
    list-style: none;
    font-size: 24px;
    width: 70%;
    padding: 10px 0;
    cursor: pointer;
    margin: 0 auto;
    text-align: left;
  }
  .nav-links .sub-txt {
    display: inline;
    color: #ffb366;
    font-size: 13px;
    font-weight: normal;
    padding-left: 20px;
  }
  .nav-links li.has-border {
    border-bottom: 1px solid #333;
    margin-bottom: 15px;
  }
  .nav-footer {
    display: flex; 
    margin-top: 40px;
  }
  .nav-footer-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
  }
  .nav-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .nav-footer-logo img {
    width: 80px;
    height: auto;
  }
  .nav-footer-address {
    font-style: normal;
    font-size: 12px;
    line-height: 1.6;
    text-align: left;
  }
  .nav-footer-sns {
    display: flex;
    gap: 15px;
  }
  .nav-item a {
    width: 100%;
  }
  .sns-icon img {
    width: 40px;
    height: auto;
  }
  .menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1000;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  .menu-btn img {
    width: 100%;
    height: auto;
    display: block;
  }
  .menu-btn.is-open img {
    content: url("../img/hb_close.svg");
  }
  .c-wrap {
    max-width: 95%;
  }
  .wwd-item {
    padding: 30px 10px;   
  }
  .wwd-item-detail li {
    padding-left: 5%
  }
  .footer__nav-list {
    display: none;
  }
}

/* ==========================================================================
   スマホ
   ========================================================================== */

@media (max-width: 768px) {
  .logo img {
    width: min(250px,60%);
  }
  .menu-btn img {
    width: min(100px,70%);
  }
  .side-social, .floating-contact-btn {
    display: none;
  }
  .cta {
    padding: 60px 20px;
  }
  .LP-cta {
    margin-bottom: 60px;
  }
  .cta__container {
    grid-template-columns: 1fr;
    gap: 24px;
    }
  .cta__card {
    padding: 44px 30px;
  }
  .access__container {
    flex-direction: column;
  }
  .access__map {
    width: 100%;
    height: 300px;
  }
  .footer__container {
    gap: 40px;
    align-items: flex-end;
  }
  .footer__nav-list {
    display: none;
  }
  .footer_sns {
    display: flex;
    justify-self: flex-end;
    gap: 10px;
  }
  .footer {
    padding-bottom: 60px;
  }
}

@media (max-width: 540px) {
  .section-title {
    margin-bottom: 50px;
  }
  .pc-br {
    display: none;
  }
  .sp-br {
    display: block;
  }
  .nav-links li {
    width: 95%;
  }
  .nav-links li.has-border {
    margin-bottom: 5px;
  }
  .nav-footer-sns {
    display: none;
  }
  .cta {
    padding: 50px 16px;
  }
  .LP-cta {
    margin-bottom: 50px;
  }
  .cta__container {
    gap: 20px;
  }
  .cta__card {
    padding: 36px 24px;
  }
  .cta__card-title {
    margin-bottom: 14px;
  }
  .cta__list li {
    margin-bottom: 5px;
  }
  .access {
    padding: 100px 20px;
  }
  .access__company {
    margin-bottom: 0;
  }
  .section-title.access-title {
    text-align: left;
  }
  .footer__container {
    width: 95%;
    padding: 0;
  }
  .footer__left {
    text-align: left;
  }
  .footer__logo {
    margin-bottom: 0;
  }
  .footer__logo img {
    width: 80%;
  }
  .nav-footer-info {
    display: block;
    text-align: left;
    width: 90%;
  }
  .nav-footer-logo {
    display: block;
  }
  .nav-footer-logo img {
    width: 60px;
  }
}
.Pagetop {
  margin-top: min(150px, 25%);
  width: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}
.page-title {
  margin-bottom: 50px;
}
.page-title h1 {
  font: var(--heading);
  font-weight: 800;
}
.split-text, 
.split-target, 
.topImg {
  opacity: 0;
}
.split-text {
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.split-text span {
  display: inline-block;
  transform: translateY(100%); 
}
.split-target {
  font: var(--heading-sub);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.split-target span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  line-height: 1.2;
}
.topImg-wrapper {
  width: 100%;
  height: 100%;
}
.topImg {
  transform-origin: center center;
  width: 100%;
  aspect-ratio: 350/65;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

@media(max-width:768px) {
  .topImg {
    aspect-ratio: 340 / 120;
    object-position: right;
  }
}


.fade-in, .works-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.is-visible, .works-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.dummy {
  margin-top: 30%;
  margin-bottom: 30%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.dummy.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.dummy h1 {
  font: var(--heading);
}







