@charset "utf-8";
/* CSS Document */
.top_a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
  box-sizing: border-box;
  width: 100%;
  margin: auto;
}
.top_a .leftbox {
  width: 38%;
}
.top_a .txtbox {
  width: 36%;
  min-width: 380px;
  padding-top: 0;
}
.top_a .rightbox {
  width: 18%;
  display: flex;
  align-items: center;
}
.top_a .imgbox {
  overflow: hidden;
  line-height: 0;
}
.top_a .imgbox img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.top_a .leftbox .imgbox {
  width: 100%;
  aspect-ratio: 1 / 1.22;
}
.top_a .rightbox .imgbox {
  width: 100%;
  aspect-ratio: 1 / 1.65;
  margin-top: 180px;
}
@media (max-width: 1080px) {
  .top_a {
    gap: 28px;
  }
  .top_a .txtbox {
    min-width: 320px;
  }
  .top_a .rightbox .imgbox {
    margin-top: 120px;
  }
}
@media (max-width: 768px) {
  .top_a {
    flex-direction: column;
    gap: 32px;
  }
  .top_a .leftbox, .top_a .rightbox, .top_a .txtbox {
    width: 100%;
    min-width: 0;
  }
  .top_a .txtbox {
    max-width: 520px;
    margin: auto;
    padding: 0 20px;
  }
  .top_a .leftbox .imgbox {
    aspect-ratio: 4 / 3;
    max-width: 500px;
  }
  .top_a .rightbox .imgbox {
    width: 60%;
    aspect-ratio: 1 / 1.45;
    margin-top: 0;
    margin-left: auto;
    max-height: 400px;
  }
}
.section02 {
  position: relative;
  background: linear-gradient(
    to bottom,
    #f7f6f5 0%,
    #f7f6f5 60%,
    #efe8df 100%
  );
  overflow: hidden;
  z-index: 1;
}
/* 下部クリーム背景 */
.section02::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: clamp(120px, 18vw, 260px);
  background: url("https://treetop-nail.com/system_panel/uploads/images/bg6.png") center bottom / cover no-repeat;
  pointer-events: none;
  z-index: 0;
}
.section02 > * {
  position: relative;
  z-index: 2;
}
.section02 .menu_head {
  padding-bottom: 55px;
}
.titlewrap1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(40px, 8vw, 120px);
}
@media screen and (max-width: 1080px) {
  .titlewrap1 {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
.section02 .titlebox {
  flex-shrink: 0;
}
.section02 .titlebox .entitle1 {
  color: #452310;
  line-height: 1;
  margin-bottom: 12px;
}
.section02 .menu_sub {
  color: #452310;
  letter-spacing: .12em;
}
.section02 .menu_lead {
  max-width: 620px;
  color: #452310;
  font-size: 14px;
  letter-spacing: .08em;
}
.section02 .menu_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.section02 .menu_item {
  position: relative;
  text-align: center;
  padding: 45px clamp(24px, 4vw, 70px) 42px;
}

.section02 .menu_item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(139, 118, 104, 0) 0%,
    #8b7668 50%,
    rgba(139, 118, 104, 0) 100%
  );
}
.section02 .menu_item .num {
  color: #452310;
  line-height: 1;
  letter-spacing: .1em;
  margin-bottom: 10px;
  font-weight: 700;
}
.section02 .menu_item h3 {
  color: #452310;
  line-height: 1.5;
  letter-spacing: .18em;
  margin-bottom: 24px;
}
.section02 .menu_item .imgbox {
  width: clamp(180px, 13vw, 210px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 28px;
}
.section02 .menu_item .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section02 .recommend {
  position: relative;
  display: inline-block;
  color: #452310;
  letter-spacing: .08em;
  padding-bottom: 8px;
  margin-bottom: 22px;
  border-bottom: 1px solid #452310;
}
.section02 .recommend::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 7px 0 7px;
  border-color: #452310 transparent transparent transparent;
}
.section02 .txt {
  color: #452310;
  line-height: 1.8;
  letter-spacing: .06em;
  margin-bottom: 20px;
  font-weight: 400;
}
.section02 .menu_bottom {
  justify-content: center;
  gap: 24px;
}
.section02 .more_e1 a p {
  position: relative;
  z-index: 2;
  font-size: 14px;
  letter-spacing: .08em;
}
@media screen and (max-width: 768px) {
    .section02 .menu_item:not(:last-child)::after {
display: none;
}
    
  .section02 .menu_area {}
  .section02 .menu_head {
    display: block;
    padding-bottom: 35px;
  }
  .section02 .menu_lead {
    margin-top: 25px;
  }
  .section02 .menu_list {
    grid-template-columns: 1fr;
  }
  .section02 .menu_item {
    padding: 40px 20px;
  }
  .section02 .menu_item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #8b7668;
  }
  .section02 .menu_bottom {
    flex-direction: column;
    align-items: center;
  }
}
.section03 {
  position: relative;
  background: #E2E9F5;
  overflow: hidden;
}

.section03::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://treetop-nail.com/system_panel/uploads/images/bg7.jpeg") center center / cover no-repeat;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.section03 > * {
  position: relative;
  z-index: 1;
}
.section03 .before_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(40px, 8vw, 120px);
  margin-bottom: 50px;
}
.section03 .before_head .titlebox {
  flex-shrink: 0;
}
.section03 .before_head .entitle0 {
  line-height: 1;
}
.section03 .before_head .menu_sub {
  letter-spacing: .12em;
  margin-top: 10px;
}
.section03 .before_head > p {
  max-width: 680px;
  letter-spacing: .08em;
}
.section03 .before_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(32px, 4vw, 50px);
  max-width: 1080px;
  margin: 0 auto;
}
.section03 .before_item {
  position: relative;
  background: #fff;
  border-radius: 4px;
  padding: clamp(26px, 3vw, 38px);
}
.section03 .before_item h3 {
  text-align: center;
  letter-spacing: .12em;
  margin-bottom: 20px;
}
.section03 .before_imgbox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-bottom: 28px;
  overflow: hidden;
}
.section03 .before_photo {
  position: relative;
  overflow: hidden;
}
.section03 .before_photo img {
  width: 100%;
  aspect-ratio: 1 / .9;
  object-fit: cover;
  display: block;
}
.section03 .before_photo p {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Cormorant", serif;
  letter-spacing: .16em;
}
.section03 .before_photo:first-child p {
  background: #452310;
}
.section03 .before_photo:last-child p {
  background: #9b6170;
}
.section03 .before_detail {
  line-height: 1.8;
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.section03 .before_txt {
  line-height: 1.9;
  letter-spacing: .06em;
}
.section03 .before_bottom {
  justify-content: center;
}
@media screen and (max-width: 1080px) {
  .section03 .before_head {
    display: block;
  }
  .section03 .before_head > p {
    margin-top: 25px;
  }
  .section03 .before_list {
    grid-template-columns: 1fr;
  }
  .section03 .before_item {
    padding: 24px 18px;
  }
}
.section04 {
  position: relative;
  overflow: hidden;
}

.section04::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://treetop-nail.com/system_panel/uploads/images/bg4.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.section04 > * {
  position: relative;
  z-index: 1;
}

.section04 {
  position: relative;
  overflow: hidden;
}
.section04 .voice_area {
  position: relative;
}
.section04 .webgene-blog {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 28px);
  max-width: 1080px;
  margin: 0 auto;
}
.section04 .webgene-item a {
  display: block;
  background: rgba(131,111,105,0.88);
  border-radius: 2px;
  padding: 20px 20px 22px;
  text-decoration: none;
  color: #452310;
}
.section04 .webgene-item .imgbox {
  overflow: hidden;
  margin-bottom: 16px;
}
.section04 .webgene-item .imgbox img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.section04 .webgene-item .txtbox h2 {
  color: #fff;
  line-height: 1.7;
  letter-spacing: .08em;
}
.section04 .catebox {
  margin-top: 14px;
}
.section04 .catebox .date {
  color: #DEC6CC;
}
.section04 .voice_word {
  position: absolute;
  left: clamp(20px, 5vw, 70px);
  bottom: -10px;
  width: clamp(350px, 28vw, 420px);
  pointer-events: none;
}
.section04 .voice_word img {
  width: 100%;
  height: auto;
  display: block;
}
.section04 .voice_bottom {
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .section04 .webgene-blog {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .section04 .webgene-blog {
    grid-template-columns: 1fr;
  }
  .section04 .voice_word {
    position: absolute;
    left: 0;
    bottom: 40px;
    width: 250px;
    pointer-events: none;
  }
}
.newstop_b .catelabel {
  padding: 2px 10px;
  background: #e7d8ce;
  border: none;
  color: #452310;
  line-height: 1.4;
}
.fv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding: 0;
  display: flex;
  background: #D0CEC8;
}
/* 縦ライン */
.fv .fv_line {
  position: absolute;
  top: 0;
  left: clamp(45px, 7vw, 85px);
  width: 1px;
  height: 100%;
  background: #4a2b1b;
  opacity: .55;
  z-index: 3;
}
/* 左側テキスト・画像 */
.fv .txtbox {
  position: absolute;
  top: 50%;
  left: clamp(60px, 9vw, 120px);
  width: 48%;
  z-index: 4;
  padding: 0;
  align-items: flex-start;
  gap: 0;
  transform: translateY(-50%);
}
.fv .fv_sub {
  margin: 0 0 12px;
  color: #452310;
  font-size: clamp(14px, 1.4vw, 20px);
  line-height: 1;
  letter-spacing: .08em;
}
.fv .txtbox h1 {
  margin: 0;
  color: #452310;
  font-size: clamp(46px, 5.6vw, 82px);
  line-height: 1;
  letter-spacing: .08em;
  font-weight: 400;
}
.fv .fv_photo_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(8px, 1vw, 14px);
  width: 100%;
  margin-top: clamp(35px, 5vw, 60px);
}
.fv .fv_photo {
  aspect-ratio: 1 / 1.28;
  overflow: hidden;
}
.fv .fv_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* コピー */
.fv .fv_copy {
  width: 100%;
  margin: clamp(26px, 3vw, 38px) 0 0;
  color: #452310;
  font-size: clamp(13px, 1.2vw, 17px);
  line-height: 1.8;
  letter-spacing: .12em;
  text-align: right;
}
/* word1.png */
.fv .fv_word {
  position: absolute;
  left: 52%;
  bottom: 23%;
  z-index: 5;
  width: clamp(300px, 30vw, 480px);
  pointer-events: none;
}
.fv .fv_word img {
  width: 100%;
  height: auto;
  display: block;
}
/* 右側メイン画像 */
.fv .swiper {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  width: 50% !important;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
body:not(.gjs-dashed) .fv .swiper {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  margin-left: 0;
  width: 47% !important;
  height: 100vh;
  padding: 0;
  overflow: hidden;
  z-index: 1;
}
.fv .swiper-wrapper, .fv .swiper-slide, .fv .swiper-img, body:not(.gjs-dashed) .fv .swiper-wrapper, body:not(.gjs-dashed) .fv .swiper-slide, body:not(.gjs-dashed) .fv .swiper-slide .swiper-img {
  width: 100% !important;
  height: 100%;
}
body:not(.gjs-dashed) .fv .swiper-wrapper {
  overflow: hidden;
}
.fv .swiper-img, body:not(.gjs-dashed) .fv .swiper-slide .swiper-img {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  transform-origin: center center;
}
/*
.fv .swiper-slide-active .swiper-img, .fv .swiper-slide-duplicate-active .swiper-img, .fv .swiper-slide-prev .swiper-img {
  animation: zoomUp 10s linear 0s normal both;
}
*/
.fv .swiper-img img, body:not(.gjs-dashed) .fv .swiper-slide img {
  display: block !important;
  opacity: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
@media screen and (max-width: 768px) {
  .fv {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }
  .fv .swiper, body:not(.gjs-dashed) .fv .swiper {
    position: relative;
    order: 1;
    width: 100% !important;
    height: 55vh;
    top: auto;
    right: auto;
    left: auto;
    margin-left: 0;
  }
  .fv .txtbox {
    position: relative;
    order: 2;
    top: auto;
    left: auto;
    width: 100%;
    padding: 40px 24px 60px;
    transform: none;
  }
  .fv .fv_copy {
    text-align: left;
  }
  .fv .fv_word {
    left: auto;
    right: 8%;
    bottom: 48%;
    width: clamp(280px, 55vw, 360px);
  }
}
@media screen and (max-width: 576px) {
  .fv .txtbox {
    padding: 60px 20px 35px;
  }
  .fv .fv_line {
    left: 24px;
  }
  .fv .fv_photo_list {
    gap: 8px;
  }
  .fv .fv_word {
    right: 3%;
    bottom: 43%;
  }
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px) {}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px) {}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px) {}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px) {}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px) {}