@charset "UTF-8";

/*====================
header / main visual
====================*/
.logo {
    -webkit-text-stroke: 1px var(--color-white);
    paint-order: stroke;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.8), 0 0 4px rgba(255, 255, 255, 0.8), 0 0 4px rgba(255, 255, 255, 0.8), 0 0 4px rgba(255, 255, 255, 0.8);
}

.logo img {
  filter: drop-shadow(0 0 2px #ffffff);
}

.main-visual {
  height: calc(100vh - 80px);
  height: calc(100svh - 80px);
  margin-bottom: 80px;
  background-image: url(../images/top/main-visual.jpg);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: relative;
}

.main-visual::after {
  content: '';
  display: block;
  width: 100%;
  height: 30%;
  background-image: url(../images/top/main-visual-curve.svg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% auto;
  position: absolute;
  bottom: -0.5px;
  left: 0;
  right: 0;
}

.main-visual h1 {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  font-family: var(--font-english);
  font-weight: 200;
  line-height: 1;
  font-size: clamp(7.2rem, 11vw, 9.6rem);
  padding: 0 4% 88px;
  text-shadow: 0 0 10px #ffffff66, 0 0 10px #ffffff66, 0 0 10px #ffffff66, 0 0 10px #ffffff66, 0 0 10px #ffffff66, 0 0 10px #ffffff66, 0 0 10px #ffffff66, 0 0 10px #ffffff66, 0 0 10px #ffffff66, 0 0 10px #ffffff66;
}

.main-visual h1 span {
  font-size: clamp(4rem, 3.15rem + 3.61vw, 6.4rem);
}

/*====================
works
====================*/
.works {
  padding-top: 120px;
  padding-bottom: 80px;
}

/*====================
about
====================*/
.about {
  padding-top: 80px;
  padding-bottom: 80px;
}

.greeting {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.greeting figure,
.greeting__txt {
  flex: 1;
}

.greeting__txt p {
  text-align: justify;
}

.about .btn {
  margin-top: 32px;
  text-align: end;
}

.about-link {
  display: flex;
flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px min(4%, 40px);
  margin-top: 56px;
}

.about-link li {
  width: min(100%, 300px);
}

.about-link a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap:  16px;
  height: 80px;
  background-color: var(--color-white);
  border: 1px solid var(--main-color-pink);
  border-radius: 16px;
  transition: background-color 0.3s ease;
}

.about-link a:hover {
  background-color: var(--color-rightpink);
}



.about-link figure {
  flex: 0 0 45px;
}


.about-link__txt {
  line-height: 1.3;
}

.about-link__txt .en {
  font-family: var(--font-english);
  font-size: 1.2rem;
  color: var(--main-color-pink);
}

.about-link__txt .jp {
  margin: 0;
}

/*  PC 
============================================= */
@media screen and (min-width: 769px) {
  /*====================
  header / main visual
  ====================*/
  .header {
    display: flex;
    justify-content: space-between;
    padding: 16px 24px 0;
  }
  
  .nav--top {
    position: fixed;
    top: 8px;
    right: 8px;
    display: block;
  }

  .nav--top ul {
    height: 56px;
    background-color: var(--color-white);
    display: inline-flex;
    align-items: center;
    gap: 48px;
    padding: 8px 40px;
    border-radius: 8px;
    box-shadow: 0px 0px 12px 4px rgba(231, 215, 213, 0.4);
  }

  .nav--top a {
    padding: 0 0.2em 0.2em;
  }

  .nav--sp {
    display: none;
  }

  .main-visual {
    background-position: center;
  }
      
  .main-visual h1 {
    padding-bottom: max(10%, 80px);
  }

  /*====================
  works
  ====================*/
  .works {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .works__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px min(4%, 40px);
  }
      
  /*====================
  about
  ====================*/
  .about {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .greeting {
    flex-direction: row;
    gap: 40px min(4%, 40px);
  }

  .greeting img {
    height: 100%;
    object-fit: cover;
  }


  .about-link {
    flex-direction: row;
  }
  .about-link li {
    width: min(50%, 400px);
  }

  .about-link a {
    height: 100px;
  }

  .about-link__txt .jp {
    font-size: 2rem;
  }

}