@charset "utf-8";

/* ===============================
Main top
=============================== */
.ink-hero__bg{
  background: var(--ink);
  width: 100%;
  padding: 100px 0 45px;  
}

.ink-hero__bg-title{
  margin: 0;
  text-align: center;
  line-height: 1;
  font-family: "Sansation", sans-serif;
  font-weight: 700;
  color: #2C3344;
  font-size: clamp(12rem, 30vw, 36rem);
}

.ink-hero__ink{
  position: relative;
  z-index: 1;
  height: 263px;
  background: url("../images/pc/ink01.webp") repeat-x center top / contain;
  background-size: auto 100%;
  margin-top: -1px;
}
/* PC 768px */
 
/* ========================
   SP TOP （〜768px）
========================= */
@media (max-width: 768px) {
  .ink-hero__bg {
    padding: 100px 0 45px;
  }

  .ink-hero__bg-title {
  font-size: clamp(6.4rem, 24vw, 9.6rem);
  }


  .ink-hero__ink {
    height: 113px;
    background: url("../images/sp/ink01sp.webp") repeat-x center top / contain;
    background: auto 100%;
  }
}

/* ===============================
企創天外について
=============================== */
.about-hero {
  background: var(--beige);
  color: var(--ink);
  margin-top: -200px;
  padding-top: 200px;
}

.about-hero__inner {
  padding: 100px 20px 0;
}

.about-title {
  font-family: "Sansation", sans-serif;
  font-size: 3.0rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  margin-bottom: 60px;
}

.about-lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  font-size: 1.8rem;
  line-height: 1.9;
  text-align: center;
  margin-bottom: 160px;
}

.about-lead p { margin: 0;}

.about-hero__ink {
  position: relative;
  z-index: 1;
  height: 263px;
  background: url("../images/pc/ink03.webp") repeat-x center top / contain;
  background-size: auto 100%;
  margin-top: -1px;
}

/* fadein */
.fadein{
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s ease, transform .5s ease;
}
.fadein.is-visible{
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce){
  .fadein{ transition: none; transform: none; opacity: 1; }
}

/* pc 768px */

/* ==========================
   SP 企創天外について（〜768px）
=========================== */
@media (max-width: 768px){
  .about-hero {
    margin-top: -100px;
    padding-top: 60px;
  }

  .about-hero__inner {
    padding: 100px 25px 0;
  }

  .about-title {
    font-size: 2.0rem;
    margin-bottom: 50px;
  }

  .about-lead {
    gap: 45px; 
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 72px; 
  }

  .about-lead p {
    margin: 0;        
  }

  .about-hero__ink {
    height: 113px;
    background: url("../images/sp/ink03sp.webp") repeat-x center top / contain;
    background-size: auto 100%;
  }
}

/* ===============================
企創天外の強み
=============================== */
.strength-hero {
  background: var(--ink);
  color: var(--beige);
  margin-top: -200px;
  padding-top: 160px;
}

.strength-hero__inner {
  padding: 100px 20px 230px;
}

.strength-hero__heading {
  font-family: "Sansation", sans-serif;
  font-size: 3.0rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  margin-bottom: 220px;
}

.strength-hero__number {
  position: absolute;
  right: 0;
  top: 50%;        
  transform: translateY(-112%);
  z-index: 0;         
  font-family: "Sansation", sans-serif;
  font-size: 38rem;
  font-weight: 700;
  color: #2C3344;
  line-height: 1;
  pointer-events: none;
}


.strength-hero__columns {
  max-width: 896px;      
  margin: 0 auto;        
  padding: 0;           
  display: flex;
  flex-direction: column;
  gap: 200px;
}

.strength-hero__item {
  position: relative;
  max-width: 100%;  
  margin: 0;     
}

.strength-hero__col {
  position: relative;
  z-index: 1; 
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.strength-hero__col-titles {
  display: inline-flex;
  align-items: center;
  align-self: flex-start; 
  width: auto;                     
  background: var(--beige);
  padding: 8px 40px;               
  border-left: 10px solid var(--pink-dark);
  box-sizing: border-box;
}

/* それぞれのテキスト */
.strength-hero__col-title--main,
.strength-hero__col-title--sub {
  padding: 0;                    /* ここでは内側余白はゼロに */
  font-family: "Sansation", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--ink);
}

.strength-hero__col-title--main {
  margin-right: 5px;
}

.strength-hero__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  padding: 76px 40px;
  gap: 24px;               
  background-color: #FCF9F3;
  opacity: 0.9;
  color: var(--ink);
  border-radius: 8px;
  font-size: 1.8rem;
  line-height: 190%;
}

.u-br--sp {
  display: none;
}

.strength-hero__ink {
  position: relative;
  z-index: 1;
  height: 263px;
  background: url("../images/pc/ink01.webp") repeat-x center top / contain;
  background-size: auto 100%;
  margin-top: -1px;
}
/* pc 768px */
/* ========================
   SP strength（〜768px）
========================= */

@media (max-width: 768px) {

  .strength-hero {
    margin-top: -100px;
    padding-top: 60px;
  }

  .strength-hero__inner {
    padding: 100px 25px 46px;
  }

  .strength-hero__heading {
    font-size: 2.0rem;
    margin-bottom: 99px;
  }

  .strength-hero__number {
    right: 0;
    top: -70px;
    transform: none;
    font-size: 20rem;
  }

  .strength-hero__columns {
    max-width: none;
    margin: 0;
    gap: 68px;
    padding: 0;
  }

  .strength-hero__item {
    max-width: 896px;
    margin: 0 auto;
  }

  .strength-hero__col {
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  /* タイトル2行ラッパー（SP） */
  .strength-hero__col-titles {
    display: flex;            
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;              
    width: auto;
    background: none;
    padding: 0;
    border-left: none;
  }
  
  .strength-hero__col-title--main {
    font-size: 2rem;
    padding: 0 24px;
    background: var(--beige);
    border-left: 7px solid var(--pink-dark);
    margin-right: 0;
  }
  
  .strength-hero__col-title--sub {
    font-size: 2rem;
    padding: 0 24px;
    background: var(--beige);
  }

  .strength-hero__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 20px 24px;
    font-size: 1.3rem;
    line-height: 1.6;
  }

  .strength-hero__ink {
    height: 113px;
    background: url("../images/sp/ink01sp.webp") repeat-x center top / contain;
    background-size: auto 100%;
  }
}

/* ===============================
Member
=============================== */

.member {
  color: var(--ink);
  margin-top: -220px;
  padding-top: 148px;
}

.member01 {
  background: linear-gradient(to bottom, #FF2175 0%, #F200FF 100%);
}

.member02 {
  background: var(--ink);
  color: var(--beige);
}

.member-hero__inner {
  padding: 200px 20px 230px;
}

.member-title {
  font-family: "Sansation", sans-serif;
  font-size: 3.0rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  margin-bottom: 220px;
}

.member-profile {
  display: flex;
  gap: 60px;
  max-width: 1238px;
  margin: 0 auto;
  align-items: flex-start;
}

.img_member,
.img_member02 {
  flex-shrink: 0;
  width: 32%;
  max-width: 384px;
}

.member-photo,
.img_member02 img {
  display: block;
  width: 100%;
  height: auto;
}

.member-profile__card {
  position: relative;
  flex: 1;
}

.member-profile__list {
  padding: 65px 40px;
  background: #FFCFE1;
  opacity: 0.9;
  color: var(--ink);
  border-radius: 8px;
}

.member02 .member-profile__list {
  background: #FCF9F3;
  opacity: 0.9;
  color: var(--ink);
}

.member-profile__name {
  font-size: 3.0rem;
  font-weight: 700;
}

.member-profile__nameEn {
  font-family: "Sansation", sans-serif;
  font-size: 2.0rem;
  font-weight: 700;
}

.member-profile__title {
  font-size: 2.0rem;
  font-weight: 700;
}

.member-profile__titleEn {
  font-family: "Sansation", sans-serif;
  font-size: 2.0rem;
  font-weight: 700;
}

.member-profile__list-name {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.member-profile__name-row {
  display: flex;
  align-items: flex-end;
  gap: 29px;
}

.member-profile__title-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding-bottom: 8px;
  border-bottom: 2px solid currentColor;
}

.member-profile__list-Txt {
  display: flex;
  flex-direction: column;
  gap: 40px;
  font-size: 1.8rem;
  margin-top: 32px;
}

.member-hero__ink {
  position: relative;
  z-index: 1;
  height: 263px;
  background: url("../images/pc/ink05.webp") repeat-x center top / contain;
  background: auto 100%;
  margin-top: -2px;
}

.member-hero__ink02 {
  position: relative;
  z-index: 1;
  height: 263px;
  background: url("../images/pc/ink01.webp") repeat-x center top / contain;
  background: auto 100%;
  margin-top: -2px;
}

/* ========================
   SP member（〜768px）
========================= */
@media (max-width: 768px) {
  .member {
    margin-top: -100px;
    padding-top: 48px;
  }

  .member-hero__inner {
    padding: 100px 25px 34px;
  }

  .member-title {
    font-size: 2rem;
    margin-bottom: 50px;
  }

  .member-profile {
    flex-direction: column;
    max-width: 325px;
    margin: 0 auto;
  }

  .img_member,
  .img_member02 {
    width: 100%;
    max-width: none;
    position: relative;
  }


  .eyes01--pc {
    display: none;
  }

  .eyes01--sp {
    display: block;
    width: 55px;
    top: -30px;
    right: 0;
  }

  .member-profile__list {
    padding: 18px 28px;
  }

  .member-profile__name {
    font-size: 2rem;
  }

  .member-profile__nameEn,
  .member-profile__title,
  .member-profile__titleEn {
    font-size: 1.3rem;
  }

  .member-profile__title-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-bottom: 6px;
    border-bottom: 1px solid currentColor;
  }

  .member-profile__list-Txt {
    gap: 20px;
    font-size: 1.3rem;
    margin-top: 29px;
  }

  .member-hero__ink {
    height: 113px;
    background: url("../images/sp/ink04sp.webp") repeat-x center top / contain;
    background: auto 100%;
    margin-top: -2px;
  }

  .member-hero__ink02 {
    height: 113px;
    background: url("../images/sp/ink01sp.webp") repeat-x center top / contain;
    background: auto 100%;
    margin-top: -2px;
  }
}

/* ===============================
Clients（主なクライアント）
=============================== */
.clients {
  padding: 160px 20px 0;
  background: var(--beige);
  color: var(--ink);
}

.clients__inner {
  max-width: 1238px;
  margin: 0 auto;
}

.clients-title {
  text-align: center;
  font-family: "Sansation", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 80px;
}

.clients-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.clients-grid__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(29, 35, 49, 0.06);
}

.clients-grid__item img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ========================
   SP clients（〜768px）
========================= */
@media (max-width: 768px) {
  .clients {
    padding: 70px 20px 0;
  }

  .clients__inner {
    max-width: 325px;
    margin: 0 auto;
  }

  .clients-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .clients-grid__item {
    height: 84px;
    padding: 12px;
  }
}

/* ===============================
Company
=============================== */
.company {
  padding: 160px 20px;
  background: var(--beige);
  color: var(--ink);
}

.company__inner {
  max-width: 1238px;
  margin: 0 auto;
}

.company-title {
  text-align: center;
  font-family: "Sansation", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 148px;
}

.company-table {
  display: grid;
  row-gap: 62px;
  width: fit-content;
  margin: 0 auto;
}

.company-table .row {
  display: grid;
  grid-template-columns: 200px 1fr;
  column-gap: 0;
  align-items: start;
}

.company-table p {
  margin: 0;
  font-size: 2.0rem;
  line-height: 1;
}

.company-table .row.mail-row {
  align-items: end;
}

.mail-img-wrap {
  display: inline-flex;
  align-items: flex-end;
}

.mail-img-wrap img {
  display: block;
  height: 2.0rem;
  width: auto;
}

.company__ink {
  position: relative;
  z-index: 1;
  height: 263px;
  background: url("../images/pc/ink03.webp") repeat-x center top / contain;
  background: auto 100%;
  margin-top: -1px;
}

.c--spBr {
  display: none;
}
/* PC 768px */

/* ========================
   SP company（〜768px）
========================= */
@media (max-width: 768px){
  .company {
    padding: 70px 20px 18px;
  }

  .company__inner {
    max-width: 325px;
    margin: 0 auto;
  }

  .company-title {
    font-size: 1.8rem;
    margin-bottom: 50px;
  }

  .company-table {
    display: grid;
    row-gap: 22px;
    width: fit-content;
    margin: 0 auto;
  }

  .company-table .row {
    display: grid;
    grid-template-columns: 80px 1fr;
    column-gap: 0;
    align-items: start;
    line-height: 1.2;
  }

  .company-table p {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.2;
  }

  .company-table .row.mail-row {
    align-items: end;
  }

  .mail-img-wrap {
    display: inline-flex;
    align-items: flex-end;
  }

  .mail-img-wrap img {
    display: block;
    height: 1.3rem;
    width: auto;
  }

  .company__ink {
    position: relative;
    z-index: 1;
    height: 113px;
    background: url("../images/sp/ink03sp.webp") repeat-x center top / contain;
    background: auto 100%;
    margin-top: -1px;
  }

  .c--spBr {
    display: block;
  }
}