@charset "UTF-8";
/* 1. 基本設定 */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  opacity: 0;
  transition: opacity 1.2s ease;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 2.7rem;
  color: #48403a;
  background-color: #fff;
  background-image: radial-gradient(#efece7 0.2rem, transparent 0.2rem);
  background-size: 4rem 4rem;
  background-attachment: fixed;
}

body.appear {
  opacity: 1;
}

.h1 {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 6rem;
  line-height: 6rem;
  padding: 9vw 0 5vw 0;
  color: #e4468e;
  white-space: nowrap;
}

.h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 4rem;
  line-height: 5rem;
}

.h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 4rem;
}

.h4 {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 2.6rem;
  line-height: 4.1rem;
}

.h5 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 3rem;
}

.supplement {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.4rem;
  color: #a1997f;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  section {
    scroll-margin-top: 5rem;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out, background-color 0.3s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 2. 共通パーツ */
header {
  padding: 2rem 15rem 0;
  display: flex;
  justify-content: center;
  background-color: #fff;
  width: 100%;
  position: fixed;
  z-index: 100;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 1024px) {
  header {
    padding: 2rem 8rem 0;
  }
}
@media screen and (max-width: 767px) {
  header {
    padding: 2rem 2rem 0;
  }
}
header.hide {
  transform: translateY(-100%);
}
header .menu {
  padding-bottom: 0.6rem;
  border-bottom: 0.05rem solid #d4ecea;
}
@media screen and (max-width: 767px) {
  header .menu {
    padding-bottom: 1rem;
  }
}

footer {
  position: relative;
  overflow: visible;
  padding: 0 15rem 4rem 15rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
  align-items: center;
  background-color: #63a6db;
  width: 100%;
  /* --- 既存のメニュー設定 --- */
}
@media screen and (max-width: 1024px) {
  footer {
    padding: 0 8rem 4rem;
  }
}
@media screen and (max-width: 767px) {
  footer {
    padding: 0 2rem 4rem;
  }
}
footer .footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(calc(-100% + 1px));
  z-index: -10;
  pointer-events: none;
}
footer .menu {
  position: relative; /* 画像より手前に文字を表示させるため */
  z-index: 10;
  padding-top: 8rem;
  border-top: 0.05rem solid #d4ecea;
}
footer .menu .menu-logo {
  color: #fff;
}
footer .menu .footer-nav ul li a {
  color: #fff;
}
footer .menu .footer-nav ul li a:hover {
  color: #d4ecea;
}
footer .menu .footer-nav ul li a.contact-btn:hover {
  color: #fff;
}
footer .footer-copyright {
  color: #fff;
}

.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 114rem;
}
.menu .menu-logo {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 3.2rem;
  color: #63a6db;
  z-index: 200;
}
.menu .menu-logo span {
  font-family: "Allura", cursive;
  color: #d4ecea;
}
.menu .hamburger {
  display: none;
  z-index: 200;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .menu .hamburger {
    display: block;
  }
}
.menu .hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #63a6db;
  transition: all 0.3s;
}
.menu .hamburger span:nth-of-type(1) {
  top: 0;
}
.menu .hamburger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.menu .hamburger span:nth-of-type(3) {
  bottom: 0;
}
.menu .hamburger.active span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.menu .hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu .hamburger.active span:nth-of-type(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .menu nav.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 150;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .menu nav.header-nav.active {
    opacity: 1;
    visibility: visible;
  }
}
.menu nav ul {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}
@media screen and (max-width: 1024px) {
  .menu nav ul {
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .menu nav ul {
    flex-direction: column;
    gap: 4rem;
  }
}
.menu nav ul li a {
  color: #48403a;
}
.menu nav ul li a:hover {
  color: #63a6db;
}
@media screen and (max-width: 767px) {
  .menu nav ul li a {
    font-size: 2rem;
  }
}
.menu nav ul .contact-btn {
  background-color: #e4468e;
  color: #fff;
  padding: 0.4rem 3.2rem;
  border-radius: 1.6rem;
  border: 0.1rem solid #fff;
  display: inline-block;
  transition: background-color 0.3s;
}
.menu nav ul .contact-btn:hover {
  color: #fff;
  background-color: #efc000;
}

.top-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(calc(-100% + 2px));
  z-index: -10;
  pointer-events: none;
}

.under-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(calc(100% - 1px));
  z-index: -10;
  pointer-events: none;
}

/* 3. 各ページ */
main {
  position: relative;
}

.wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.first-view {
  overflow: hidden;
}
.first-view .first-container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .first-view .first-container {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .first-view .first-container {
    gap: 20rem;
  }
}
@media screen and (max-width: 410px) {
  .first-view .first-container {
    gap: 0;
    padding-bottom: 28rem;
  }
}
.first-view .first-container .first-view-ttl {
  position: relative;
}
@media screen and (max-width: 1200px) {
  .first-view .first-container .first-view-ttl {
    margin-top: 18rem;
    margin-left: -30rem;
  }
}
@media screen and (max-width: 767px) {
  .first-view .first-container .first-view-ttl {
    transform: scale(0.8);
    margin-left: -12rem;
    margin-bottom: 6rem;
  }
}
@media screen and (max-width: 410px) {
  .first-view .first-container .first-view-ttl {
    transform: scale(0.6);
    margin-top: 30rem;
  }
}
.first-view .first-container .first-view-ttl .first-view-name {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 8rem;
  color: #63a6db;
  line-height: 8rem;
}
.first-view .first-container .first-view-ttl .first-view-design {
  position: absolute;
  right: -23px;
  bottom: -8px;
  font-family: "Allura", cursive;
  color: #e4468e;
  font-size: 5rem;
  display: inline-block;
  transform: rotate(-15deg);
}
.first-view .first-container .first-view-ttl .rose2 {
  position: absolute;
  width: 20rem;
  left: -90px;
  top: -150px;
  z-index: -10;
}
@media screen and (max-width: 1400px) {
  .first-view .first-container .first-view-ttl .rose2 {
    width: 15rem;
    top: -120px;
  }
}
@media screen and (max-width: 1200px) {
  .first-view .first-container .first-view-ttl .rose2 {
    left: -9rem;
    top: -10rem;
  }
}
@media screen and (max-width: 530px) {
  .first-view .first-container .first-view-ttl .rose2 {
    left: auto;
    right: -90px;
  }
}
.first-view .first-container .first-view-ttl .rose1 {
  position: absolute;
  width: 25rem;
  left: -180px;
  bottom: -160px;
  z-index: -5;
}
@media screen and (max-width: 1400px) {
  .first-view .first-container .first-view-ttl .rose1 {
    width: 21rem;
    bottom: -130px;
  }
}
@media screen and (max-width: 530px) {
  .first-view .first-container .first-view-ttl .rose1 {
    left: auto;
    right: -170px;
    bottom: -120px;
  }
}
.first-view .first-container .shape-wrapper {
  position: relative;
  width: 45vw;
  max-width: 80rem;
  min-width: 66rem;
  aspect-ratio: 1.06/1;
  background-color: #e0f2fc;
  -webkit-clip-path: url(#my-clip-path);
          clip-path: url(#my-clip-path);
  z-index: -10;
  margin-left: -3vw;
  margin-right: -10vw;
  overflow-x: clip;
}
@media screen and (max-width: 1200px) {
  .first-view .first-container .shape-wrapper {
    margin-left: auto;
    margin-right: 10vw;
    margin-top: -8vh;
    width: 60vw;
  }
}
@media screen and (max-width: 1100px) {
  .first-view .first-container .shape-wrapper {
    margin-right: -1vw;
  }
}
@media screen and (max-width: 767px) {
  .first-view .first-container .shape-wrapper {
    min-width: 50rem;
    margin-bottom: -10rem;
  }
}
.first-view .first-container .shape-wrapper img {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  animation: imageLoop 28s infinite;
}
.first-view .first-container .shape-wrapper img:nth-child(1) {
  animation-delay: 0s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 120%;
}
.first-view .first-container .shape-wrapper img:nth-child(2) {
  animation-delay: 4s;
}
.first-view .first-container .shape-wrapper img:nth-child(3) {
  animation-delay: 8s;
  top: -12rem;
  height: 140%;
}
.first-view .first-container .shape-wrapper img:nth-child(4) {
  animation-delay: 12s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 110%;
}
.first-view .first-container .shape-wrapper img:nth-child(5) {
  animation-delay: 16s;
}
.first-view .first-container .shape-wrapper img:nth-child(6) {
  animation-delay: 20s;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
}
.first-view .first-container .shape-wrapper img:nth-child(7) {
  animation-delay: 24s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes imageLoop {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  14% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.wave {
  position: absolute;
  width: 100%;
  aspect-ratio: 1440/850.5;
  z-index: -1;
  display: grid;
}
.wave img {
  grid-area: 1/1;
  width: 100%;
  height: auto;
  display: block;
}

.concept {
  position: relative;
  background-color: #63a6db;
}
.concept .concept-container {
  max-width: 130rem;
  padding-inline: 15rem;
  margin: 0 auto;
  aspect-ratio: 90/23;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6.4rem;
}
@media screen and (max-width: 1140px) {
  .concept .concept-container {
    flex-direction: column;
    aspect-ratio: auto;
    height: auto;
  }
}
@media screen and (max-width: 1140px) and (max-width: 1024px) {
  .concept .concept-container {
    padding: 8rem 4rem;
  }
}
@media screen and (max-width: 1140px) and (max-width: 767px) {
  .concept .concept-container {
    padding: 5rem 2rem;
  }
}
.concept .concept-container .logo {
  width: 30rem;
  display: flex;
  justify-content: center;
}
.concept .concept-container .logo img {
  width: 281px;
}
@media screen and (max-width: 767px) {
  .concept .concept-container .logo img {
    width: 20rem;
    height: auto;
  }
}
.concept .concept-container .message {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.concept .concept-container .message .h3 {
  padding-bottom: 2rem;
  background-image: linear-gradient(to right, #d4ecea 2px, transparent 2px);
  background-size: 10px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
@media screen and (max-width: 432px) {
  .concept .concept-container .message .h3 span {
    display: block;
  }
}

.works-container {
  padding: 8rem 15rem 9vw;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
}
.works-container .works-card-container + .works-card-container {
  margin-top: 4rem;
}
@media screen and (max-width: 1024px) {
  .works-container .works-card-container + .works-card-container {
    margin-top: 3.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .works-container {
    padding: 8rem 8rem 9vw;
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .works-container {
    padding: 8rem 2rem 9vw;
  }
}
.works-container .works-more {
  display: block;
  margin-top: 6rem;
  background-color: #e4468e;
  color: #fff;
  padding: 0.4rem 3.2rem;
  border-radius: 1.6rem;
}
.works-container .works-more:hover {
  background-color: #efc000;
}

.works-card-container {
  display: flex;
  gap: 4rem;
  max-width: 100rem;
  width: 100%;
  align-items: stretch;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .works-card-container {
    gap: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .works-card-container {
    flex-direction: column;
  }
}
.works-card-container .work-list {
  flex: 1;
  max-width: 100%;
  flex: none;
  width: calc(50% - 2rem);
}
@media screen and (max-width: 1024px) {
  .works-card-container .work-list {
    width: calc(50% - 1.6rem);
  }
}
@media screen and (max-width: 767px) {
  .works-card-container .work-list {
    max-width: 100%;
    width: 100%;
  }
}

.work-card {
  background-color: #fff;
  border-radius: 0.8rem;
  box-shadow: 0 0.4rem 1.2rem rgba(72, 64, 58, 0.2);
  color: inherit;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  aspect-ratio: 1/1;
  width: 100%;
  padding: 0.8rem;
}
.work-card:hover {
  transform: translateY(-0.5rem);
}
.work-card .work-img {
  width: 100%;
  flex: 1;
  overflow: hidden;
}
.work-card .work-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 0.4rem;
}
.work-card .work-desc {
  display: flex;
  flex-direction: column;
  padding: 0.8rem;
  gap: 0.4rem;
}

.service {
  position: relative;
}
.service .service-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(to bottom, transparent calc(9vw + 15rem), #63a6db calc(9vw + 15rem));
}
@media screen and (max-width: 1024px) {
  .service .service-container {
    padding-inline: 8rem;
    background: linear-gradient(to bottom, transparent calc(9vw + 10rem), #63a6db calc(9vw + 10rem));
  }
}
@media screen and (max-width: 767px) {
  .service .service-container {
    padding-inline: 2rem;
    background: linear-gradient(to bottom, transparent 13rem, #63a6db 13rem);
  }
}
.service .service-container .top-wave {
  top: calc(9vw + 15rem);
  display: block;
}
@media screen and (max-width: 1024px) {
  .service .service-container .top-wave {
    top: calc(9vw + 10rem);
  }
}
@media screen and (max-width: 767px) {
  .service .service-container .top-wave {
    top: 13rem;
  }
}
.service .service-container .service-plan {
  display: flex;
  gap: 3.2rem;
  width: 100%;
  max-width: 130rem;
  padding-inline: 15rem;
}
@media screen and (max-width: 1024px) {
  .service .service-container .service-plan {
    padding-inline: 0;
  }
}
@media screen and (max-width: 767px) {
  .service .service-container .service-plan {
    flex-direction: column;
    margin-block: 3rem;
  }
}
.service .service-container .service-plan .service-plan-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  color: #fff;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .service .service-container .service-plan .service-plan-card {
    gap: 0.3rem;
    max-width: 36rem;
    margin: 0 auto;
  }
}
.service .service-container .service-plan .service-plan-card img {
  border-radius: 0.8rem;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 8/5;
}
.service .service-container .service-plan .service-plan-card .h4 {
  padding-bottom: 0.4rem;
  background-image: linear-gradient(to right, #d4ecea 2px, transparent 2px);
  background-size: 10px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}

.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-block: 5.6rem;
}
.about-container .about-card {
  max-width: 130rem;
  padding: 0 15rem 9vw;
  display: flex;
  gap: 7.2rem;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .about-container .about-card {
    padding: 0 8rem 9vw;
    flex-wrap: wrap;
    gap: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .about-container .about-card {
    padding: 0 2rem 9vw;
  }
}
.about-container .about-card img {
  border-radius: 0.8rem;
  max-width: 30rem;
  height: 100%;
}
.about-container .about-card .about-text {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.menu-button ul,
.works-number ul {
  display: flex;
}
.menu-button ul li,
.works-number ul li {
  text-align: center;
  position: relative;
}
.menu-button ul li a,
.works-number ul li a {
  transition: color 0.3s;
  display: block;
  height: 5rem;
}
.menu-button ul li a::after,
.works-number ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.05rem;
  background-color: #63a6db;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s;
}
.menu-button ul li a:hover::after,
.works-number ul li a:hover::after {
  transform: scaleX(1);
}

.works {
  position: relative;
}
.works .under-wave {
  top: 0;
  transform: none;
}

.menu-button {
  padding-bottom: 3.2rem;
}
.menu-button ul {
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .menu-button ul {
    gap: 1.6rem;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .menu-button ul li {
    width: calc(50% - 0.8rem);
  }
}
.menu-button ul li a {
  color: #48403a;
  width: 10rem;
}
@media screen and (max-width: 767px) {
  .menu-button ul li a {
    width: 100%;
  }
}
.menu-button ul li a:hover {
  color: #63a6db;
}
.menu-button ul li a:is(.active)::after {
  transform: scaleX(1);
}
.menu-button ul li .active {
  color: #63a6db;
}

@media screen and (max-width: 767px) {
  .design-menu ul {
    flex-wrap: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .design-menu ul li {
    width: 10rem;
  }
}

.hide {
  display: none;
}

.menu-main {
  animation: fadein 0.5s ease-in-out;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.works-number ul {
  margin-top: 8rem;
  gap: 2rem;
}
.works-number ul li::after {
  background-color: #d4ecea;
}
.works-number ul li a {
  color: #fff;
  width: 4rem;
}
.works-number ul li:hover a {
  color: #d4ecea;
}

.works-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 15rem 9vw;
}
@media screen and (max-width: 1200px) {
  .works-detail {
    padding-inline: 8rem;
  }
}
@media screen and (max-width: 1200px) and (max-width: 767px) {
  .works-detail {
    padding-inline: 2rem;
  }
}
.works-detail .overview {
  width: 100%;
  margin-top: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
}
@media screen and (max-width: 1400px) {
  .works-detail .overview {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1024px) {
  .works-detail .overview {
    margin-bottom: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .works-detail .overview {
    margin-top: 10rem;
    gap: 2rem;
  }
}
.works-detail .overview img {
  max-width: 56rem;
  width: 100%;
  height: auto;
  aspect-ratio: 1.618/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 0.8rem;
}
.works-detail .overview .works-overview-text {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.works-detail .overview .works-overview-text-ttl {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.works-detail .overview .works-overview-text-ttl .case {
  padding: 0.8rem 1.6rem;
  background-color: #e4468e;
  color: #fff;
  border-radius: 0.8rem;
  width: -moz-fit-content;
  width: fit-content;
}
.works-detail .overview .works-overview-text-ttl .h2 {
  line-height: 1.3;
  display: block;
}
@media screen and (max-width: 767px) {
  .works-detail .overview .works-overview-text-ttl .h2 span {
    display: block;
  }
}
.works-detail .overview .works-overview-text .tag {
  display: flex;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .works-detail .overview .works-overview-text .tag {
    flex-wrap: wrap;
  }
}
.works-detail .overview .works-overview-text .tag .tag-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.works-detail .overview .works-overview-text .tag .tag-item img {
  width: 1.6rem;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0;
}
.works-detail .overview .works-overview-text .ltc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.works-detail .overview .works-overview-text-body {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .works-detail .overview .works-overview-text-body p span {
    display: block;
  }
}
.works-detail .overview .works-overview-text-body .h4 {
  color: #63a6db;
  min-width: 10rem;
}
.works-detail .overview .works-overview-text-body a {
  color: #48403a;
}
.works-detail .point-wave {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-color: #63a6db;
  display: flex;
  justify-content: center;
  position: relative;
}
.works-detail .point-wave .point {
  display: flex;
  gap: 3.2rem;
  padding-inline: 15rem;
  padding-block: 2rem 4rem;
  max-width: 130rem;
}
@media screen and (max-width: 1200px) {
  .works-detail .point-wave .point {
    padding-inline: 8rem;
    gap: 4rem;
  }
}
@media screen and (max-width: 1200px) and (max-width: 767px) {
  .works-detail .point-wave .point {
    padding-inline: 2rem;
  }
}
@media screen and (max-width: 1175px) {
  .works-detail .point-wave .point {
    flex-direction: column;
    max-width: 80rem;
  }
}
.works-detail .point-wave .point-txt {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  flex: 1;
  color: #fff;
}
.works-detail .point-wave .point-txt-ttl {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding-bottom: 0.4rem;
  background-image: linear-gradient(to right, #d4ecea 2px, transparent 2px);
  background-size: 10px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.works-detail .ttl-top-space {
  margin-top: 6rem;
}
.works-detail .gallery01 {
  position: relative;
  padding-inline: 4.8rem;
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  /* --- サムネイル（下の画像リスト）設定 --- */
}
@media screen and (max-width: 1024px) {
  .works-detail .gallery01 {
    padding-inline: 0;
  }
}
.works-detail .gallery01 .swiper {
  width: 100%;
  margin-bottom: 3.2rem;
}
.works-detail .gallery01 .swiper-slide {
  width: 100%;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.works-detail .gallery01 .swiper-slide img {
  width: 100%;
  height: 70vh;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media screen and (max-width: 1024px) {
  .works-detail .gallery01 .swiper-slide img {
    height: auto;
  }
}
.works-detail .gallery01 .swiper-slide .border {
  border: 0.05rem solid #d1d5db;
}
.works-detail .gallery01 .swiper-slide .design-web-sp {
  height: auto;
}
@media screen and (min-width: 768px) {
  .works-detail .gallery01 .swiper-slide .design-web {
    width: 50rem; /* ★ここでPC用の横幅を指定 */
    height: auto;
  }
  .works-detail .gallery01 .swiper-slide .design-web-sp {
    width: 30rem;
    height: auto;
  }
}
.works-detail .gallery01 .swiper-button-prev,
.works-detail .gallery01 .swiper-button-next {
  color: #fff !important; /* 矢印は白 */
  background-color: #63a6db; /* 背景は黒 */
  width: 5rem; /* 丸の幅 */
  height: 5rem; /* 丸の高さ */
  border-radius: 50%; /* 正円にする */
}
.works-detail .gallery01 .swiper-button-prev svg,
.works-detail .gallery01 .swiper-button-next svg {
  width: 100%;
  height: 50%;
}
@media screen and (max-width: 1024px) {
  .works-detail .gallery01 .swiper-button-prev,
  .works-detail .gallery01 .swiper-button-next {
    display: none;
  }
}
.works-detail .gallery01 .swiper-button-prev {
  left: 0;
}
.works-detail .gallery01 .swiper-button-next {
  right: 0;
}
.works-detail .gallery01 .design-web-arrow {
  top: 10rem;
}
.works-detail .gallery01 .thumb-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, 8rem);
  gap: 1rem;
  justify-content: center;
}
.works-detail .gallery01 .thumb-media {
  aspect-ratio: 1;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
  /* 選択中のスタイル */
}
.works-detail .gallery01 .thumb-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain; /* または contain */
  display: block;
}
.works-detail .gallery01 .thumb-media.thumb-media-active {
  opacity: 1;
  border: 2px solid #63a6db;
}
.works-detail .works-number ul {
  margin: 6.4rem 0 8rem;
}
.works-detail .works-number ul li::after {
  background-color: #e4468e;
}
.works-detail .works-number ul li:hover a {
  color: #e4468e;
}
.works-detail .works-number ul li a {
  color: #63a6db;
}

/* --- フェードインアニメーションの定義 --- */
@keyframes fadeInContent {
  0% {
    opacity: 0;
    transform: translateY(10px); /* 少し下からふわっと浮き上がる */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* JSで付与するクラス */
.fade-animate {
  animation: fadeInContent 1.2s ease-out forwards;
}/*# sourceMappingURL=style.css.map */