@charset "UTF-8";

/*--------------------------------
  mv
--------------------------------*/
#mv {
  position: relative;
  padding: 100px 0;
}
#mv .mv-copy {
  position: absolute;
  top: 100px;
  right: 10%;
  z-index: 10;
  display: flex;
  flex-direction: row;
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  gap: 20px;
}
#mv .mv-copy span {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-writing-mode: vertical-lr;
  writing-mode: vertical-lr;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: var(--font-shippori);
  font-size: 72px;
  letter-spacing: 0.075em;
  line-height: 1;
  padding: 8px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--color-black-01);
  height: -webkit-fit-content;
  height: fit-content;
  /* animation initial state */
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-loaded #mv .mv-copy span {
  opacity: 1;
  transform: translateY(0);
}

body.is-loaded #mv .mv-copy span:nth-child(1) {
  transition-delay: 1.2s;
}

body.is-loaded #mv .mv-copy span:nth-child(2) {
  transition-delay: 0.4s;
}

#mv .mv-imgs .swiper-wrapper {
  transition-timing-function: linear;
}

#mv .mv-imgs .swiper-slide {
  flex-shrink: 0;
}

#mv .mv-imgs .swiper-slide:nth-child(even) {
  transform: translateY(40px);
}

#mv .mv-imgs .swiper-slide:nth-child(odd) {
  transform: translateY(-40px);
}

#mv .mv-imgs .mv-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 304 / 388;
}

#mv .mv-subtxt {
  padding-bottom: 80px;
}

#mv .mv-subtxt p {
  font-family: var(--font-hina);
  font-size: var(--fs-24);
  letter-spacing: 0.075em;
}
#mv .star img {
  margin-right: 0;
  margin-left: auto;
}
#mv .mv-copy-en img {
  width: 751px;
  height: auto;
  object-fit: contain;
}
@media screen and (max-width: 960px) {
  #mv {
    padding: 64px 0;
  }
  #mv .mv-copy span {
    font-size: 64px;
  }
  #mv .mv-subtxt {
    padding-bottom: 64px;
  }
  #mv .mv-subtxt p {
    font-size: var(--fs-20);
  }
  #mv .mv-copy-en img {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  #mv {
    padding: 48px 0;
  }
  #mv .mv-copy {
    gap: 12px;
  }
  #mv .mv-copy span {
    font-size: 48px;
    padding: 6px 4px;
  }
  #mv .mv-subtxt {
    padding-bottom: 48px;
  }
  #mv .mv-subtxt p {
    font-size: var(--fs-18);
  }
  #mv .mv-copy-en img {
    width: 65%;
  }
}
@media screen and (max-width: 600px) {
  #mv {
    padding: 24px 0;
  }
  #mv .mv-copy {
    top: 96px;
    right: 5%;
    gap: 8px;
  }
  #mv .mv-copy span {
    font-size: var(--fs-40);
    padding: 4px 2px;
  }
  #mv .mv-copy-en img {
    width: 80%;
  }
}

/*--------------------------------
  t-about
--------------------------------*/
#t-about {
  position: relative;
}
#t-about .t-about_inr {
  position: relative;
  z-index: 1;
}
#t-about .t-about__btn {
  gap: 32px;
}
#t-about .about-img {
  position: absolute;
  top: 64px;
  right: 0;
  z-index: -1;
  width: 50%;
  max-width: 686px;
}
#t-about .t-about_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
#t-about .t-about_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 1300px) {
  #t-about .about-img {
    right: calc(50% - 650px);
  }
}
@media screen and (max-width: 768px) {
  #t-about .about-img {
    height: 35%;
    object-fit: cover;
  }
}

/*--------------------------------
  t-thoughts
--------------------------------*/
#t-thoughts,
#t-thoughts .t-tho__left {
  position: relative;
}

#t-thoughts .t-tho__left .sec-subttl {
  line-height: 1;
}
#t-thoughts .t-tho__inr {
  position: relative;
  z-index: 1;
}
#t-thoughts .t-tho__left .star {
  position: absolute;
  top: 16px;
  right: 30%;
}
#t-thoughts .t-tho__right {
  margin-left: auto;
  margin-right: 0;
  padding-bottom: 160px;
}
#t-thoughts .btn-more {
  width: 100%;
  display: flex;
}
#t-thoughts .solid-txt.js-fade {
  opacity: 1;
  visibility: visible;
}
#t-thoughts .solid-txt p {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
#t-thoughts .solid-txt.is-active p {
  opacity: 1;
  transform: translateY(0);
}
#t-thoughts .solid-txt.is-active p:nth-child(3) {
  transition-delay: 0.4s;
}
#t-thoughts .solid-txt.is-active p:nth-child(2) {
  transition-delay: 0.8s;
}
#t-thoughts .solid-txt.is-active p:nth-child(1) {
  transition-delay: 1.2s;
}

#t-thoughts .t-tho__bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 1600px;
  height: 100%;
  z-index: 0;
  padding-top: 240px;
  padding-bottom: 40px;
  z-index: -1;
}
#t-thoughts .t-tho__bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 960px) {
  #t-thoughts .t-tho__right {
    padding-bottom: 80px;
  }
  #t-thoughts .t-tho__bg {
    padding-top: 24px;
  }
}
@media screen and (max-width: 768px) {
  #t-thoughts .t-tho__left .sec-desc {
    padding-bottom: 16px;
  }
  #t-thoughts .t-tho__right {
    padding-bottom: 40px;
  }

  #t-thoughts .t-tho__bg {
    padding-top: 0;
    padding-bottom: 0;
  }
  #t-thoughts .t-tho__bg img {
    width: 120%;
    height: 100%;
    object-fit: cover;
  }
}

/*--------------------------------
  t-rct
--------------------------------*/
#t-rct {
  overflow: hidden;
}
#t-rct .t-rct-ttl {
  position: relative;
}

#t-rct .t-rct-ttl .star {
  position: absolute;
  top: 0;
  right: 20%;
  transform: translate(-50%, 50%);
}
#t-rct .t-rct-txt {
  gap: 64px;
  align-items: center;
}
#t-rct .t-rct-imgs {
  gap: 8px;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}
#t-rct .t-rct-imgs img {
  width: calc((100% - 250px) / 4 - 8px);
  aspect-ratio: 304 / 388;
  height: auto;
  object-fit: contain;
}
#t-rct .t-rct-imgs img:nth-child(odd) {
  transform: translateY(64px);
}
#t-rct .t-rct-imgs img:last-child {
  transform: translateY(0);
}

#t-rct .t-rct-imgs p {
  font-family: var(--font-shippori);
  font-size: 62px;
  letter-spacing: 0.075em;
  font-weight: var(--fw-medium);
  -webkit-writing-mode: vertical-lr;
  writing-mode: vertical-lr;
  white-space: nowrap;
  flex-shrink: 0;
  padding-left: 16px;
  padding-right: 16px;
  transform: translateY(-64px);
}
@media screen and (max-width: 1500px) {
  #t-rct .t-rct-imgs {
    width: 105vw;
    margin-left: -2.5vw;
  }
  #t-rct .t-rct-imgs img {
    width: calc((100% - 172px) / 4 - 8px);
  }
  #t-rct .t-rct-imgs p {
    font-size: 40px;
  }
}
@media screen and (max-width: 1200px) {
  #t-rct .t-rct-imgs img {
    width: calc((100% - 144px) / 4 - 8px);
  }
  #t-rct .t-rct-imgs p {
    font-size: 32px;
    transform: translateY(-24px);
  }
}
@media screen and (max-width: 960px) {
  #t-rct .t-rct-imgs img {
    width: calc((100% - 130px) / 4 - 8px);
  }
  #t-rct .t-rct-imgs p {
    font-size: 28px;
    transform: translateY(-24px);
  }
}
@media screen and (max-width: 780px) {
  #t-rct .t-rct-ttl .star {
    right: 50%;
    transform: translate(-50%, 50%);
  }
  #t-rct .t-rct-txt {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
  #t-rct .t-rct-imgs {
    width: 120vw;
    margin-left: -10vw;
  }
  #t-rct .t-rct-imgs img {
    width: calc((100% - 100px) / 4 - 8px);
    object-fit: cover;
  }
  #t-rct .t-rct-imgs p {
    font-size: 24px;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media screen and (max-width: 600px) {
  #t-rct .t-rct-imgs {
    width: 140vw;
    margin-left: -20vw;
  }
  #t-rct .t-rct-imgs img {
    width: calc((100% - 64px) / 4 - 8px);
  }
  #t-rct .t-rct-imgs img:nth-child(odd) {
    transform: translateY(40px);
  }
  #t-rct .t-rct-imgs img:last-child {
    transform: translateY(0);
  }
  #t-rct .t-rct-imgs p {
    font-size: 20px;
    padding-left: 2px;
    padding-right: 2px;
    line-height: 1.5;
    transform: translateY(-16px);
  }
}

/*--------------------------------
  t-business
--------------------------------*/
#t-business{
	position: relative;
}
#t-business .bus-hd {
  gap: 40px;
  align-items: flex-start;
}
#t-business .bus-img {
  flex: 1;
  max-width: 352px;
  width: 100%;
}
#t-business .bus-img img {
  width: 100%;
  height: auto; 
  object-fit: cover;
}
#t-business .bus-cards {
  gap: 16px;
  align-items: stretch;
  margin-top: 80px;
}
#t-business .bus-card {
  position: relative;
  width: calc((100% - 48px) / 3);
  background-color: var(--color-white);
  padding: 56px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: fit-content;
}

#t-business .bus-card:nth-child(2) {
  margin-top: 56px;
}
#t-business .bus-card__num {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -80%);
  font-family: var(--font-shippori);
  font-weight: var(--fw-medium);
  font-size: 140px;
  line-height: 1;
  background: linear-gradient(to right, #82c68c, #7eb6e3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.085em;
  z-index: 1;
}
#t-business .bus-card__ttl {
  font-family: var(--font-shippori);
  font-size: var(--fs-26);
  font-weight: var(--fw-semibold);
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-align: center;
}
#t-business .bus-card__img {
  width: 100%;
  aspect-ratio: 330 / 444;
  overflow: hidden;
}
#t-business .bus-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#t-business .bus-card__desc {
  flex: 1;
}
#t-business .bus-card__lead {
  font-size: var(--fs-22);
  font-weight: var(--fw-semibold);
  font-family: var(--font-shippori);
  letter-spacing: 0.015em;
  padding-bottom: 24px;
}
#t-business .bus-card__txt {
  font-size: var(--fs-15);
  letter-spacing: 0.075em;
  line-height: 2;
}
#t-business .bus-card__btn {
  margin-top: auto;
  text-align: center;
}
#t-business .bus-card__btn .btn-more__link 	{
min-width: 100%;
	width: 100%;
	border-radius: 0;
  height: 56px;
  font-size: var(--fs-14);
}

@media screen and (max-width: 1200px) {
  #t-business .bus-card__num {
    font-size: 80px;
  }
  #t-business .bus-card__ttl {
    font-size: var(--fs-24);
  }
}

@media screen and (max-width: 960px) {
  #t-business .bus-hd {
    gap: 16px;
  }
  #t-business .bus-img {
	max-width: 250px;
   flex:1
  }
  #t-business .bus-cards {	
	margin-top: 16px;
  }
  #t-business .bus-card{
	padding:24px 20px;
	gap:16px;
  }
  #t-business .bus-card__num {
    font-size: 64px;
  }
  #t-business .bus-card__ttl {
    font-size: var(--fs-20);
  }
  #t-business .bus-card__lead {
    font-size: var(--fs-16);
	padding-bottom: 8px;
  }
  #t-business .bus-card__txt {
    font-size: var(--fs-14);
  }
  #t-business .bus-card__btn .btn-more__link {
    min-width: 180px;
    height: 48px;
    font-size: var(--fs-13);
  }
}

@media screen and (max-width: 768px) {
  #t-business .bus-cards {
    flex-direction: column;
    gap: 64px;
  }
  #t-business .bus-card {
    width: 100%;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
  }
  #t-business .bus-card:nth-child(2){
	margin-top: 0;
  }
  #t-business .bus-card__num {
    font-size: 72px;
  }
  #t-business .bus-card__ttl {
    font-size: var(--fs-22);
  }
  #t-business .bus-card__img{
		aspect-ratio: 16 / 9;
  }
}
@media screen and (max-width: 600px) {
	#t-business .bus-img {
		position: absolute;
		width: 35vw;
		transform: translateY(-30%);
		top: 0;
		right: 0;
			  }
			  #t-business .bus-card__img{
			    aspect-ratio: 330 / 444;
		  }
	
}