@charset "utf-8";

/********************
 *  uniq.css
 */

/* header */
.header__nav .rolle-effect {
  padding-bottom: 5px;
}

/* humbarger */
.header__btn {
  position: relative;
  justify-content: center;
  top: 10%;
  right: 2rem;
}

.header__btn span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 1px;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
  background-color: var(--text-color);
}

.header__btn span:nth-child(1) {
  transform: translate(-50%, -8px);
}

.header__btn span:nth-child(2) {
  transform: translate(-50%, 0);
}

.header__btn span:nth-child(3) {
  transform: translate(-50%, 8px);
}

.header__btn.active span {
  background-color: var(--wh);
}

.header__btn.active span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.header__btn.active span:nth-child(2) {
  opacity: 0;
}

.header__btn.active span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* footer */
.footer .link-more {
  line-height: 1.2;
}

/* TOP */
.top__blog-item-text .title {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Salon tag */
.salon-tag-list {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.salon-tag-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #dddcda;
  border-radius: 100vmax;
  padding: 3px 7px 4px;
  font-size: 1.2rem;
}

/* Page-Navi */

a.first::before,
a.last::before {
  content: none;
}

a.first,
a.last {
  white-space: nowrap;
  padding-top: 2px;
}

a.first {
  margin-right: 2rem;
}

a.last {
  margin-left: 2rem;
}

div.wp-pagenavi {
  flex-wrap: nowrap;

  @media (max-width: 640px) {
    flex-wrap: wrap;
  }
}

/* Blog post */
.top__blog-list {
  margin: auto;
}


/* About syusei */
.about__lead-title,
.about__lead-text .gray {
  font-weight: 500;
}

.service__beauty-item {
  position: relative;
  padding-right: 3rem;
}

.service__beauty-item::before {
  position: absolute;
  content: '\e313';
  font-family: "Material Symbols Outlined";
  top: 37%;
  right: 1rem;
  z-index: 1;
  transform: translateY(-50%);
  font-size: 2rem;
}

@media screen and (max-width: 1024px) and (min-width: 835px) {
  .service__beauty-wrapper {
    grid-template-columns: 38rem auto;
  }
}

/* Style */
ul.style-post-list {
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(3rem, 2vw, 5rem) clamp(1rem, 1vw, 2rem);
}

.style .previouspostslink,
.style .nextpostslink {
  border: 1px solid #2f2f2f;
  border-radius: 100vmax;
  width: 5rem;
  height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Style category list */
.style .post-page {
  margin-top: 0;
}

.style .post-page__main {
  padding-top: 19rem;
}

.style .post-page__side {
  padding-top: 19rem;
  position: sticky;
  top: 0;
  left: 0;
  width: 28rem;
  max-width: 100%;
}

.style .post-page__flex {
  position: relative;
  align-items: flex-start;
}

.style-category-controller {
  margin-bottom: clamp(5rem, 8vw, 10rem);
}

.style-category-list {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.style-category-list:not(:last-child) {
  margin-bottom: clamp(1.5rem, 2vw, 3rem);
}

.style-aside .post-page__side-ttl::before {
  content: "";
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
  background-color: #222;
  border-radius: 100vmax;
  aspect-ratio: 1/1;
  margin-right: 1rem;
}

.style-category-label {
  display: block;
  line-height: 1;
}

.style-select-wrapper {
  margin: 1.4rem 0 1.9rem;
  position: relative;
  width: 100%;
  max-width: 28rem;
}

.style-select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 12px;
  height: 6px;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 6px solid #2f2f2f;
  border-bottom: 0;
  pointer-events: none;
  transform: translateX(-50%);
}

.style-select-wrapper:has(select:disabled)::after {
  border-top: 6px solid #8c8c8c;
}

.style-category-select {
  background-color: #fff;
  width: 100%;
  max-width: 28rem;
  height: 5rem;
  padding: 1.1rem 5rem 1.1rem 2.6rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.style-category-select:disabled {
  background-color: #eee;
}

@media (max-width: 834px) {
  .style .post-page__flex {
    flex-direction: column-reverse;
  }

  .style .post-page__main,
  .style .post-page__side {
    padding-top: 0;
  }

  .style .post-page__side {
    position: static;
    width: 100%;
    margin-top: 3rem;
  }

  .style .post-page__list .post-page__dd {
    margin-left: 0;
  }

  .style .post-page__list .post-page__dd>div {
    flex: 1;
  }

  .style .post-page__dd {
    display: flex;
    gap: 2rem;
  }

  select.style-category-select {
    height: 4rem;
    padding: 0.5rem 4rem 0.5rem 1.1rem
  }

  div.style-select-wrapper::after {
    right: 1rem;
  }

  .style .previouspostslink,
  .style .nextpostslink {
    width: 4rem;
    height: 2rem;
  }

  .style .post-page__list:not(:first-of-type) {
    margin-top: clamp(0, 3vw, 3rem);
  }
}

@media (max-width:649px) {
  .style .post-page__dd {
    flex-direction: column;
  }
}

@media (max-width:499px) {
  ul.style-post-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .style-select-wrapper {
    margin: 1rem 0 0;
  }

  .style .post-page__main {
    margin-top: 2rem;
  }
}

/* parts/aside.php */
.aside .bold {
  font-weight: bold;
}

.aside .post-page__list .current {
  text-decoration: none;
  position: relative;
}

.aside .post-page__list li.current>a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  /* 下線の位置を調整 */
  height: 1px;
  /* 下線の太さ */
  background: currentColor;
  /* テキスト色に合わせる */
  pointer-events: none;
}

/* parts/blog-aside.php */
.area>a {
  display: inline-block;
  font-size: 2rem;
  font-family: "Figtree", sans-serif;
  margin-bottom: clamp(1rem, 1vw, 2rem);
  margin-left: -2rem;
}

.area:not(:first-child)>a {
  margin-top: clamp(2rem, 3vw, 5rem);
}

.area>a::before {
  content: "";
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
  background-color: #222;
  border-radius: 100vmax;
  aspect-ratio: 1/1;
  margin-right: 1rem;
}

/* salon */
#salon_slider-pc {
  display: block;
}

#salon_slider-sp {
  display: none;
}

@media (max-width: 834px) {
  #salon_slider-pc {
    display: none;
  }

  #salon_slider-sp {
    display: block;
    margin-bottom: 3rem;
  }
}

/* blog */
.blog .post-page__flex {
  position: relative;
  align-items: flex-start;
}

.blog .post-page {
  margin-top: 0;
}

.blog .blog-list,
.blog .post-post {
  padding-top: 19rem;
}

.blog .post-page__side {
  padding-top: 19rem;
  position: sticky;
  top: 0;
  left: 0;
  max-width: 20rem;
}

.blog .post-tag {
  display: inline-flex;
  font-family: "Figtree", sans-serif;
  background-color: #ddd;
  border-radius: 100vmax;
  padding: 0.5rem 1.5rem;
  align-items: center;
  justify-content: center;
}

.blog .post-category {
  display: inline-flex;
  font-family: "Figtree", sans-serif;
  background-color: #ddd;
  border-radius: 100vmax;
  padding: 0.5rem 1.5rem;
  align-items: center;
  justify-content: center;
}

.blog .post-page__hg-sub {
  margin-top: 0;
}

.post-post__meta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
  font-size: 1.4rem;
}

.blog .blog-item-img img {
  width: 100%;
}

.blog .select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 12px;
  height: 6px;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 6px solid #2f2f2f;
  border-bottom: 0;
  pointer-events: none;
  transform: translateX(-50%);
}

.blog .blog-tag-select,
.blog .blog-area-select,
.blog .blog-child-select {
  background-color: #fff;
  width: 100%;
  max-width: 28rem;
  height: 5rem;
  padding: 1.1rem 5rem 1.1rem 2.6rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media (max-width: 834px) {
  .blog .post-page__flex {
    flex-direction: column-reverse;
  }

  .blog .blog-list,
  .blog .post-page__side {
    padding-top: 6rem;
  }

  .blog .post-page__side {
    position: static;
  }

  .blog .blog-tag-select,
  .blog .blog-area-select,
  .blog .blog-child-select {
    height: 4rem;
    padding: 0.5rem 4rem 0.5rem 1.1rem;
  }

  .blog .post-page__side {
    max-width: 100%;
  }

  .blog .post-page__list .post-page__dd {
    margin-left: 0;
  }

  .blog .post-page__dd.--tag {
    display: flex;
    gap: 2rem;
  }

  .blog .post-page__dd.--tag>div {
    flex: 1;
  }
}

@media (max-width: 649px) {
  .blog .post-page__dd.--tag {
    flex-direction: column;
  }
}

#blog-aside {
  display: block;
}

#blog-aside-sp {
  display: none;
}

@media (max-width:834px) {
  #blog-aside {
    display: none;
  }

  #blog-aside-sp {
    display: block;
    width: 100%;
  }
}

.header__sub-menu {
  backdrop-filter: blur(4px);
  background: #00000008;
  width: max-content;
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, .03);
}

.header__sub-item:last-child .rolle-effect {
  padding-bottom: 0;
}

.footer__nav-item {
  position: relative;
  display: inline-flex;
}

.footer__sub-menu {
  top: 0;
  left: calc(100% + 1rem);
  visibility: visible;
  opacity: 1;
  padding-top: 0;
  display: inline-flex;
  align-items: center;
  z-index: 1;
}

.footer__sub-item {
  display: inline-flex;
  align-items: center;
}

.footer__sub-item::before {
  content: "/";
  display: inline-block;
  margin-right: 3px;
}

.footer__nav-item .arrow-down {
  display: none;
}

@media (max-width:834px) {
  .header__sub-menu {
    backdrop-filter: none;
    background: transparent;
    width: max-content;
    padding: 0;
    border: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: absolute;
    left: calc(100% + 1rem);
    top: 5px;
  }

  .header__sub-item {
    display: inline-flex;
    align-items: center;
  }

  .header__sub-item:before {
    content: "/";
    display: inline-block;
    margin-right: 3px;
  }

  .header__nav-item .arrow-down {
    display: none
  }

  .header__sub-item .rolle-effect {
    padding-bottom: 0;
  }

  .footer__sub-menu {
    position: absolute;
  }
}

/* footer */
.footer__wrapper {
  flex-direction: column;
  justify-content: center;
  gap: clamp(2rem, 4vw, 6rem);
}

.footer__nav {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.footer__nav-list.--01 {
  width: 60%;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 2.5rem 14rem;
}

.footer__nav-list.--02 {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: flex-end;
}

.footer__nav-sns .insta {
  width: 100%;
  max-width: 19px;
  max-height: 19px;
}

.footer__nav-sns .insta svg {
  width: 100%;
  height: auto;
}

@media (max-width:834px) {
  .footer__nav {
    gap: 2rem;
  }

  .footer__nav-list.--01 {
    gap: 2rem 5rem;
  }
}

/* @media (max-width:499px) {
  .footer__nav{
    width: 100%;
  }
  .footer__nav-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  }
} */

/* noto sans jp load */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');