@charset "utf-8";
/* ------------------- FV -------------------- */
.t-fv{
	background-color: var(--c-pink-200);
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.t-fv::before{
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
 -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 65%, rgba(0,0,0,.35) 100%);
 mask-image: linear-gradient(to bottom, #000 0%, #000 65%, rgba(0, 0, 0, 0) 100%);
 }
.t-fv > *{
	position: relative;
	z-index: 2;
}
.t-fv__container {
 display: flex;
 align-items: center;
}
.t-fv__content{
 flex: 1;
}
.t-fv__catch {
  font-weight: 500;
  margin-bottom: var(--spc-30);
  letter-spacing: .15em;
}
.t-fv__lead {
  line-height: 2;
}
.t-fv__lead small{
 font-weight: bold;
}
.t-fv__slider {
 width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.t-fv__slider img {
  transition: 5s ease-in-out;
    transform: scale(1.1);
    height: 100%;
}
.t-fv__slider img.add-zoom {
  transform: scale(1.15);
}
.slick-slide{
 width: 100%;
}
@media screen and (min-width: 768px){
  .t-fv {
  padding-block: var(--header-h) var(--spc-50);
  }
  .t-fv__content{
  min-width: fit-content;
  padding-right: 4%;
  }
  .t-fv__lead {
  font-size: var(--fz-18);
  }
  .t-fv__catch {
  font-size: var(--fz-40);
  }
  .t-fv__container {
  gap: var(--spc-40);
  }
  .t-fv__slider .slick-list{
    border-radius: 0 60px 60px 0;
    overflow: hidden;
  }
  .t-fv::before{
    	opacity: .5;
	background: url(/asset2026/images/top/t-fv-bg.png) no-repeat center / cover;
  }
}

@media screen and (max-width: 767px){
  .t-fv {
  padding-block: calc(var(--header-h-sp)) 0;
  }
  .t-fv__container {
    flex-direction: column;
      gap: var(--spc-30);
  }
  .t-fv__catch {
    font-size: var(--fz-28);
    line-height: 1.6;
  }
    .t-fv__slider{
      width: 88%;
      max-width: 460px;
      margin-inline: auto 0;
    }
  .t-fv__slider .slick-list{
    border-radius: 40px 0 0 40px ;
      overflow: hidden;
  }
  .t-fv__content{
    width: 88%;
    margin-inline: auto 0;
  }
    .t-fv__lead {
  font-size: 14px;
  }
    .t-fv::before{
      	opacity: .6;
	background: url(/asset2026/images/top/sp/t-fv-bg.png) no-repeat center / cover;
  }
}

/* ------------------- 私たちについて -------------------- */
.t-about{
 position: relative;
  background: linear-gradient(to bottom, var(--c-pink-200) 0%, var(--c-pink-100) 100%);
}
.t-about::before{
 content: "";
 background: url(/asset2026/images/top/t-our-consept.svg) no-repeat center / cover;
 position: absolute;
 aspect-ratio: 1/1;
 animation: aboutRotate 26s linear infinite;
 z-index: 2;
}
@keyframes aboutRotate{
	0%{
		transform: rotate(0deg);
	}
	100%{
		transform: rotate(360deg);
	}
}
.t-about__catch p{
 text-align: center;
 line-height: 2.4;
}
.t-about__catch p span{
 font-weight: 600;
 color: var(--c-gold-400);
 /* background: linear-gradient(transparent 60%, var(--c-white) 60%); */
 background-color: var(--c-white);
}
.t-about__catch p + p{
 margin-top: var(--spc-30);
}
@media screen and (min-width: 768px){
 .t-about::before{
   top: -15%;
  left: -8%;
  width: 26%;
 }
 .t-about__catch p span{
 font-size: var(--fz-25);
  padding: 5px;
 }
 .t-about__catch p{
  font-size: var(--fz-18);
 }
}
@media screen and (max-width: 767px){
  .t-about::before{
   top: 0%;
   left: -14%;
   width: 40%;
  }
   .t-about__catch p span{
  font-size: var(--fz-18);
   padding: 3px;
  }
  .t-about__catch p span span{
   padding-left: 0;
  }
   .t-about__catch p{
   font-size: var(--fz-16);
  }
}
/* ------------------- t-service -------------------- */
.t-service{
  /* background: linear-gradient(to bottom, var(--c-white) 0%, var(--c-pink-100) 100%); */
  background-color: var(--c-white);
 position: relative;
}
.t-service::after{
 content: '';
 position: absolute;
 width: 90%;
 height: 1px;
 background-color: var(--c-gold-300);
 top: 10px;
 left: 50%;
 transform: translateX(-50%);
}
.t-service__catch{
 font-size: var(--fz-16);
 font-weight: 500;
 line-height: 2;
 margin-bottom: var(--spc-60);
}
.t-service__cards {
  grid-template-columns: 1fr;
}
.t-serviceCard {
  text-align: center;
  display: flex;
  flex-direction: column;
  background-color: var(--c-white);
      box-shadow: 0px 0px 20px #b787914f;
  padding: var(--spc-50) var(--spc-30);
  border-radius: 20px;
  height: 100%;
}
.t-serviceCard__ttl {
  font-size: var(--fz-25);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: var(--spc-50);
  color: var(--c-gold-400);
  background-color: var(--c-pink-100);
  border-radius: 0 10px 0 10px;
  padding: 8px 15px;
  width: fit-content;
  margin-inline: auto;
}
.t-serviceCard__img {
 margin-bottom: var(--spc-10);
}
.t-serviceCard__img img{
  aspect-ratio: 1.2/1;
 height: auto;
 margin-inline: auto;
}
.t-serviceCard__txtWrap {
  line-height: 2;
  text-align: left;
 }
.t-serviceCard__list li {
  position: relative;
  font-size: var(--fz-15);
  padding-left: 1.1em;
}
.t-serviceCard__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (min-width: 768px) {
 .t-service__catch{
 text-align: center;
 }
  .t-service__cards {
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--spc-30);
    align-items: start;
  }
  .t-serviceCard__ttl {
    margin-bottom: var(--spc-30);
  }
  .t-serviceCard__img img{
   width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .t-service__catch{
 text-align: center;
 }
   .t-service__cards {
    gap: var(--spc-30);
   }
  .t-serviceCard__ttl {
    font-size: 20px;
    margin-bottom: var(--spc-30);
  }
  .t-serviceCard__txt,
  .t-serviceCard__list,
  .t-serviceCard__note {
    font-size: 14px;
    line-height: 2;
  }
    .t-serviceCard__img img{
   width: 60%;
  }
}

@media screen and (min-width: 768px){
  
}
@media screen and (max-width: 767px){
  
}
/* ------------------ 会社概要 -------------------- */
.t-company{
   margin-bottom: var(--spc-150);
}
.s-companyProfile {
  display: grid;
  max-width: 600px;
  margin-inline: auto;
}
.s-companyProfile dt,
.s-companyProfile dd {
  padding-block: var(--spc-20);
}
.s-companyProfile dt {
  font-size: var(--fz-15);
  border-bottom: 1px solid var(--c-gold-300);
}
.s-companyProfile dd {
  font-size: var(--fz-16);
  border-bottom: 1px solid var(--c-gray-200);
}
.s-companyProfile dt:last-of-type,
.s-companyProfile dd:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .s-companyProfile {
    grid-template-columns: 250px 1fr;
  }
}
@media screen and (max-width: 767px) {
  .s-companyProfile {
    grid-template-columns: 110px 1fr;
  }
}
/* ------------------- お問い合わせ -------------------- */
.t-contact{
	background-color: var(--c-gold-300);
 padding-top: var(--spc-130);
	padding-bottom: var(--spc-80);
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.t-contact__bg{
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 1;
}
.t-contact__track{
	display: flex;
	width: max-content;
	position: absolute;
	left: 0;
	will-change: transform;
animation: contact-marquee 100s linear infinite;
}
.t-contact__word{
	flex: 0 0 auto;
	white-space: nowrap;
	font-family: var(--ff-en);
	/* letter-spacing: .16em; */
	line-height: 1;
	font-size: 9em;
	/* font-weight: bold; */
	color: rgb(255, 255, 255);
	padding-right: .4em;
}
.t-contact .g-inner--ss{
	position: relative;
	z-index: 2;
}
.t-contact .g-headingContainer{
	margin-bottom: var(--spc-20);
	position: relative;
}
.t-contact .g-heading__ja{
	text-align: center;
	color: var(--c-white);
	font-size: var(--fz-25);
	position: relative;
	z-index: 2;
}
.t-contact__txt{
 color: var(--c-white);
	font-size: var(--fz-14);
	line-height: 2;
}
.t-contact__txt p{
	text-align: center;
}
.t-contact__img{
	max-width: 330px;
}
@keyframes contact-marquee{
	0%{
		transform: translateX(0);
	}
	100%{
		transform: translateX(calc(-1 * var(--loop-width, 0px)));
	}
}
@media(min-width:768px){
	.t-contact__wrap{
		grid-template-columns: 1fr 1fr;
	}
	.t-contact__word{
		font-size: 9em;
	}
 .t-contact__track{
	top: -5%;
 }
}
@media(max-width:767px){
	.t-contact__wrap{
		grid-template-columns: 1fr;
	}
	.t-contact__word{
		font-size: 3.8em;
	}
  .t-contact__track{
  top: -2.5%;
  }
}
/* ------------------- -------------------- */
@media screen and (min-width: 768px){
  
}
@media screen and (max-width: 767px){
  
}
/* ------------------- -------------------- */
@media screen and (min-width: 768px){
  
}
@media screen and (max-width: 767px){
  
}
/* ------------------- -------------------- */
@media screen and (min-width: 768px){
  
}
@media screen and (max-width: 767px){
  
}
/* ------------------- -------------------- */
@media screen and (min-width: 768px){
  
}
@media screen and (max-width: 767px){
  
}
/* ------------------- -------------------- */
@media screen and (min-width: 768px){
  
}
@media screen and (max-width: 767px){
  
}
































