@charset "utf-8";


.bg-img {
  min-height: 1500px;
  padding-bottom: 50px;
  background-image: url(../img/conceptimg-bc.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.about-us {
  color: #ffffff;
  text-align: center;
  position: relative;
}

/* ABOUT USのタイトルのデコレーション */
.title-aboutus h2 {
  font-family: "Bodoni Moda", serif;
  font-weight: bold;
  font-size: 4rem;
  color: #a8f3fd;
  margin-bottom: 150px;
  z-index: 55;
  position: relative;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 150px;
}

/* 背景の丸の設定 */
.fuwafuwa {
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  border-radius: 50%;
  background-color: #561616;
  display: inline-block;
  transition: 1.5s ease-in-out;
  z-index: 1;
  position: relative;

}

.fuwafuwa:hover {
  animation: puff-out-center 1s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

@keyframes puff-out-center {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    -webkit-filter: blur(4px);
    filter: blur(4px);
    opacity: 0;
  }
}

.maru1 {
  position: absolute;
  top: 5%;
  left: 10%;
  width: 100px;
  height: 100px;
}
.maru2 {
  position: absolute;
  top: 9%;
  left: 25%;
  width: 150px;
  height: 150px;
}
.maru3 {
  position: absolute;
  top: 3%;
  right: 10%;
  width: 130px;
  height: 130px;
}
.maru4 {
  position: absolute;
  top: 8%;
  right: 20%;
  width: 40px;
  height: 40px;
}
.maru5 {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 200px;
  height: 200px;
}

.maru6 {
  position: absolute;
  top: 25%;
  right: 28%;
  width: 120px;
  height: 120px;
}

.maru7 {
  position: absolute;
  top: 20%;
  left: 25%;
  width: 60px;
  height: 60px;
}

.maru8 {
  position: absolute;
  top: 17%;
  right: 10%;
  width: 200px;
  height: 200px;
}

@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -15px);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* グリッド写真の設定 */
.container1,
.container2,
.container3,
.container4 {
  height: 300px;
  width: 100%;
  position: relative;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 70%;
  max-width: 500px;
  margin: 0 auto;
  border: 3px solid rgb(255, 255, 255);
  padding: 10px;
}

.member-card {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-size: cover;
  background-position: center center;

  animation: image-switch-animation 4s infinite;
}

.src1 {
  background-image: url(../img/homepage/newcolllemodel.png);
}
.src2 {
  background-image: url(../img/homepage/manmodel9.png);
}
.src3 {
  background-image: url(../img/model-looks.png);
}
.src4 {
  background-image: url(../img//looks/looks2-img1.png);
}
.src5 {
  background-image: url(../img/looks/looks3-img1.png);
}
.src6 {
  background-image: url(../img/looks/looks1-img1.png);
}
.src7 {
  background-image: url(../img/homepage/newcollection1.png);
}

@keyframes image-switch-animation {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.member-card:nth-of-type(1) {
  animation-delay: 0s;
}
.member-card:nth-of-type(2) {
  animation-delay: 0.5s;
}
.member-card:nth-of-type(3) {
  animation-delay: 1.5s;
}
.member-card:nth-of-type(4) {
  animation-delay: 2s;
}
.member-card:nth-of-type(5) {
  animation-delay: 2.5s;
}
.member-card:nth-of-type(6) {
  animation-delay: 3s;
}
.member-card:nth-of-type(7) {
  animation-delay: 3.5s;
}

.description-text {
  line-height: 80px;
  margin: 100px;
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9,
    0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1),
    0 20px 20px rgba(0, 0, 0, 0.15);
}

/* --- コンセプトキャッチコピーセクション --- */

.concept-section {
  text-align: center;
  margin-bottom: 50px;
  color: #333;
}

.concept-section p {
  font-size: 4rem;
  /* line-height: 1.2; */
  margin: auto 50px;
  z-index: 5;
  animation: focus-in-expand 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes focus-in-expand {
  0% {
    letter-spacing: -0.5em;
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}


.en-copy-line1 .text1 {
  font-family: "Kumar One Outline", system-ui;
}
.en-copy-line1 .text2 {
  font-family: "Lacquer", system-ui;
}
.en-copy-line2 .text3 {
  font-family: "Kulim Park", sans-serif;
}
.en-copy-line2 .text4 {
  font-family: "Love Light", cursive;
}
.en-copy-line3 .text5 {
  font-family: "Londrina Sketch", sans-serif;
}
.en-copy-line3 .text6 {
  font-family: "Lekton", monospace;
}
.en-copy-line4 .text7 {
  font-family: "Bodoni Moda", serif;
}
.en-copy-line4 .text8 {
  font-family: "MuseoModerno", sans-serif;
}

.en-copy-line1,
.en-copy-line2,
.en-copy-line3,
.en-copy-line4 {
  display: flex;
  text-align: center;
  justify-content: center;
  margin: 30px;
}

/* --- 理念グリッドセクション --- */

.philosophy-grid-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 100px 50px;
  background-color: #d3e7ed;
  color: #fff;
}

.philosophy-block {
  padding: 10px; /* 必要に応じて調整 */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; 
}

/* 画像とオーバーレイを持つブロックのコンテナ設定 */
.philosophy-block.image-with-overlay {
  position: relative; 
  padding: 0; 
  height: 400px;
  margin: 30px;
}

/* ブロック内の画像スタイル */
.philosophy-block.image-with-overlay img {
  width: 300px;
  height: auto;
  object-fit: cover; 
  display: block;
  z-index: 5;
}

/* 茶色のオーバーレイボックスのスタイル */
.philosophy-block .overlay-box.brown-box1 {
  position: absolute; 
  background-color: #561616; 
  width: 70%;
  height: 70%; 
  z-index: 1; 
  top: 20px; 
  right: -20px; 
  margin-right: 100px;
}
.philosophy-block .overlay-box.brown-box2 {
  position: absolute;
  background-color: #561616;
  width: 35%; 
  height: 100%;
  z-index: 1;
  top: 40px;
  left: -20px;
  padding-bottom: 50px;
  margin-left: 150px;
}
.philosophy-block .overlay-box.brown-box3 {
  position: absolute;
  background-color: #561616;
  width: 100%; 
  height: 30%;
  z-index: 1; 
  top: 180px; 
}

.jp-copy {
  font-size: 1.8rem;
  color: rgb(61, 3, 3);
  font-weight: bold;
}


/* --- 最終キャッチコピー --- */

.final-catchphrase-box {
  background-color: #d3e7ed;
  width: 100%;
  height: 800px;
  color: #fff;
  text-align: center;
  padding: 200px 20px;
  /* margin: 50px auto; */
  position: relative;
}
.brown-box4 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #561616;
  width: 70%;
  padding: 250px;
}

.en-final {
  font-family: "Goudy Bookletter 1911", serif;
  font-size: 2.5rem;
  animation: text-flicker-in-glow 5s infinite linear both;
}

@keyframes text-flicker-in-glow {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 1;
    text-shadow: none;
  }
  10.1% {
    opacity: 1;
    text-shadow: none;
  }
  10.2% {
    opacity: 0;
    text-shadow: none;
  }
  20% {
    opacity: 0;
    text-shadow: none;
  }
  20.1% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.25);
  }
  20.6% {
    opacity: 1;
    text-shadow: none;
  }
  30% {
    opacity: 0;
    text-shadow: none;
  }
  30.1% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
  }
  30.5% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
  }
  30.6% {
    opacity: 0;
    text-shadow: none;
  }
  45% {
    opacity: 0;
    text-shadow: none;
  }
  45.1% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
  }
  55% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
  }
  55.1% {
    opacity: 0;
    text-shadow: none;
  }
  57% {
    opacity: 0;
    text-shadow: none;
  }
  57.1% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.35);
  }
  60% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.35);
  }
  60.1% {
    opacity: 0;
    text-shadow: none;
  }
  65% {
    opacity: 0;
    text-shadow: none;
  }
  65.1% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.35), 0 0 100px rgba(255, 255, 255, 0.1);
  }
  75% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.35), 0 0 100px rgba(255, 255, 255, 0.1);
  }
  75.1% {
    opacity: 0;
    text-shadow: none;
  }
  77% {
    opacity: 0;
    text-shadow: none;
  }
  77.1% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.4), 0 0 110px rgba(255, 255, 255, 0.2), 0 0 100px rgba(255, 255, 255, 0.1);
  }
  85% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.4), 0 0 110px rgba(255, 255, 255, 0.2), 0 0 100px rgba(255, 255, 255, 0.1);
  }
  85.1% {
    opacity: 0;
    text-shadow: none;
  }
  86% {
    opacity: 0;
    text-shadow: none;
  }
  86.1% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 60px rgba(255, 255, 255, 0.45), 0 0 110px rgba(255, 255, 255, 0.25), 0 0 100px rgba(255, 255, 255, 0.1);
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 60px rgba(255, 255, 255, 0.45), 0 0 110px rgba(255, 255, 255, 0.25), 0 0 100px rgba(255, 255, 255, 0.1);
  }
}

.jp-final {
  font-size: 0.9rem;
  margin-top: 5px;
}
