html {
  font-size: 62.5%;
  font-feature-settings: "palt";
  font-family: "Noto Sans JP", sans-serif;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
@media screen and (min-width: 821px) {
  html {
    scroll-padding-top: 90px;
  }
}

body {
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: #1a1a1a;
  font-family: "Noto Sans JP", sans-serif;
}

a {
  color: #1a1a1a;
}

.sp {
  display: block !important;
}
@media screen and (min-width: 821px) {
  .sp {
    display: none !important;
  }
}

.pc {
  display: none !important;
}
@media screen and (min-width: 821px) {
  .pc {
    display: block !important;
  }
}

.btn-area {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 821px) {
  .btn-area {
    flex-direction: row;
    justify-content: center;
  }
}

.c-btn {
  width: 85.3333333333vw;
  height: 60px;
  line-height: 60px;
  margin: 0 auto;
  border: 1px solid #464236;
  border-radius: 25px;
  background: #fff;
  transition: opacity 0.3s;
}
@media screen and (min-width: 821px) {
  .c-btn {
    margin: 0;
  }
}
.c-btn:hover {
  opacity: 0.7;
}
.c-btn.reservation {
  background: #464236;
}
.c-btn.reservation a::before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  background: url("../img/icon-reservation.svg") no-repeat center top/cover;
}
.c-btn.reservation a::after {
  border-left-color: #fff;
}
.c-btn.reservation span {
  color: #fff;
}
.c-btn.reservation.reverse {
  background: #fff;
  border: 1px solid #464236;
}
.c-btn.reservation.reverse span {
  color: #464236;
}
.c-btn.reservation.reverse a::before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  background: url("../img/icon-reservation-dark.svg") no-repeat center top/cover;
}
.c-btn.reservation.reverse a::after {
  border-left-color: #464236;
}
.c-btn.reverse {
  background: #464236;
  border: 1px solid #fff;
}
.c-btn.reverse a::before {
  content: "";
  display: block;
  width: 14px;
  height: 24px;
  background: url("../img/icon-tel-white.svg") no-repeat center top/cover;
}
.c-btn.reverse a::after {
  border-left-color: #fff;
}
.c-btn.reverse span {
  color: #fff;
}
.c-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  display: flex;
  height: 100%;
  width: 100%;
  position: relative;
}
.c-btn a::before {
  content: "";
  display: block;
  width: 15px;
  height: 25px;
  background: url("../img/icon-tel.svg") no-repeat center top/cover;
}
.c-btn a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 6px solid #4d4d4d;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
}
.c-btn a span {
  color: #464236;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.3em;
}
.c-btn.contact {
  background: #464236;
  border: 1px solid #fff;
}
.c-btn.contact a::before {
  display: none;
}
.c-btn.contact a::after {
  border-left-color: #fff;
}
.c-btn.contact span {
  color: #fff;
}

.sec-ttl {
  color: #1a1a1a;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.1em;
  font-size: 4rem;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 821px) {
  .sec-ttl {
    letter-spacing: 0.2em;
    margin-bottom: 36px;
    font-size: 3.5rem;
  }
}
.sec-ttl.white {
  color: #fff;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #fff;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px 18px 26px;
  max-width: 100%;
}
.header__logo {
  margin: 0;
  width: 54px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width: 821px) {
  .header__logo {
    width: 80px;
  }
}
.header__logo-link {
  color: #000;
  text-decoration: none;
  display: block;
  transition: opacity 0.3s;
}
.header__tagline {
  margin: 6px 0 0 21px;
  font-size: 1.2rem;
  color: #b3b3b3;
  line-height: 1.4;
  letter-spacing: 0.24em;
  flex: 1;
}
.header__menu-toggle {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  width: 3rem;
  height: 3rem;
  transition: opacity 0.3s;
}
.header__menu-icon {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 2rem;
  height: 1.4rem;
}
.header__menu-icon span {
  display: block;
  width: 100%;
  height: 0.2rem;
  background-color: #000;
  transition: all 0.3s;
}
.header__nav {
  display: none;
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 3.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1300px) {
  .header__nav-list {
    gap: 1.6rem;
  }
}
.header__nav-item {
  margin: 0;
}
.header__nav-link {
  color: #000;
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #595959;
  text-transform: uppercase;
  transition: opacity 0.3s;
  display: block;
  transition: opacity 0.3s;
}
.header__nav-link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1300px) {
  .header__nav-link {
    font-size: 1.2rem;
  }
}
.header__right {
  display: none;
  align-items: center;
  gap: 4rem;
}
.header__sns-link {
  color: #000;
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
}
.header__sns-icon {
  width: 1.6rem;
  height: 1.6rem;
  color: #595959;
}
.header__mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.header__mobile-menu[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
}
.header__mobile-menu-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  width: 100%;
  max-width: 100%;
  overflow-y: auto;
  padding: 0 0 20px;
}
.header__mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px 18px 26px;
}
.header__mobile-logo {
  margin: 0;
  width: 54px;
  font-weight: 500;
  color: #000;
}
.header__mobile-close {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.header__mobile-close-icon {
  position: relative;
  width: 2rem;
  height: 2rem;
}
.header__mobile-close-icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 0.2rem;
  background-color: #000;
  transform-origin: center;
}
.header__mobile-close-icon span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.header__mobile-close-icon span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header__mobile-nav {
  margin-bottom: 2rem;
}
.header__mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__mobile-header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.header__mobile-nav-item {
  margin: 0;
  border-bottom: 1px solid #808080;
}
.header__mobile-nav-item:first-child {
  border-top: 1px solid #808080;
}
.header__mobile-tagline {
  margin: 6px 0 0 9px;
  font-size: 1.2rem;
  color: #b3b3b3;
  line-height: 1.4;
  letter-spacing: 0.24em;
  flex: 1;
}
.header__mobile-nav-link {
  display: block;
  padding: 1.6rem 0;
  color: #1a1a1a;
  font-family: "Oswald", sans-serif;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  transition: background-color 0.3s;
}
.header__mobile-social {
  display: flex;
  justify-content: center;
  padding: 0 0 16px;
  border-bottom: 1px solid #808080;
  margin-bottom: 2rem;
}
.header__mobile-sns-link {
  color: #000;
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
}
.header__mobile-sns-icon {
  width: 2.6rem;
  height: 2.6rem;
}
.header__mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.header__mobile-tel-btn, .header__mobile-reservation-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 2rem;
  border-radius: 0.4rem;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}
.header__mobile-tel-btn {
  background-color: #fff;
  border: 1px solid #808080;
  color: #000;
}
.header__mobile-tel-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}
.header__mobile-tel-number {
  flex: 1;
  margin-left: 1.2rem;
}
.header__mobile-reservation-btn {
  background-color: #4a4a4a;
  color: #fff;
  text-transform: uppercase;
}
.header__mobile-reservation-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}
.header__mobile-arrow {
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
}
@media screen and (min-width: 821px) {
  .header__inner {
    padding: 26px 40px;
    margin: 0 auto;
  }
  .header__tagline {
    font-size: 1.2rem;
    color: #757472;
    margin: 6px 0 0 30px;
  }
  .header__nav {
    display: block;
    margin-left: auto;
    margin-right: 2.4rem;
  }
  .header__right {
    display: flex !important;
  }
}

body.menu-open {
  overflow: hidden;
}

main {
  margin-top: 60px;
}
@media screen and (min-width: 821px) {
  main {
    margin-top: 90px;
  }
}

.p-mv {
  padding: 0 18px;
  margin-bottom: 45px;
}
@media screen and (min-width: 821px) {
  .p-mv {
    padding: 0;
    margin-bottom: 123px;
  }
}

footer {
  background: #464236;
  color: #fff;
  border-top: 2px solid #fff;
}
footer .footer__inner {
  padding: 36px 20px 55px;
  position: relative;
}
@media screen and (min-width: 821px) {
  footer .footer__inner {
    display: flex;
    justify-content: space-between;
    padding: 64px 124px 64px 40px;
  }
}
footer .footer__logo {
  margin-bottom: 12px;
}
@media screen and (min-width: 821px) {
  footer .footer__logo {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    margin-right: 10px;
  }
}
footer .footer__logo a {
  display: block;
  width: 100px;
  margin: 0 auto 14px;
}
@media screen and (min-width: 821px) {
  footer .footer__logo a {
    margin: 0;
  }
}
footer .footer__logo p {
  text-align: center;
  font-size: 1.2rem;
}
@media screen and (min-width: 821px) {
  footer .footer__content {
    display: flex;
    align-items: center;
    gap: 20px;
  }
}
@media screen and (min-width: 821px) {
  footer .footer__nav {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 20px;
  }
}
footer .footer__insta {
  text-align: center;
}
@media screen and (min-width: 821px) {
  footer .footer__insta svg {
    width: 15px;
    height: 15px;
  }
}
footer .footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 16px;
  margin-bottom: 24px;
}
@media screen and (min-width: 821px) {
  footer .footer__nav-list {
    justify-content: flex-start;
    gap: 24px;
    margin-bottom: 0;
  }
}
footer .footer__nav-list li {
  width: 48%;
  text-align: center;
}
@media screen and (min-width: 821px) {
  footer .footer__nav-list li {
    text-align: left;
    width: auto;
  }
}
footer .footer__nav-list li a {
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 0 6px;
  border-bottom: 1px solid #fff;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 821px) {
  footer .footer__nav-list li a {
    border: none;
    font-size: 1.4rem;
    padding: 0;
  }
}
footer .to-top {
  position: absolute;
  top: -23px;
  right: 12px;
  width: 46px;
  height: 46px;
}
@media screen and (min-width: 821px) {
  footer .to-top {
    width: 58px;
    height: 58px;
    right: 40px;
    top: inherit;
  }
}
@media screen and (min-width: 821px) {
  footer .btn-area {
    gap: 6px;
  }
}

.p-about {
  padding: 213px 0 200px;
  position: relative;
}
@media screen and (min-width: 821px) {
  .p-about {
    padding: 0 0 138px;
  }
}
.p-about .p-about__images img {
  display: block;
  position: absolute;
}
.p-about .p-about__images img:first-child {
  width: 145px;
  top: 0;
  left: 0;
}
@media screen and (min-width: 821px) {
  .p-about .p-about__images img:first-child {
    width: 20.5729166667vw;
    left: 7%;
    top: -12px;
  }
}
.p-about .p-about__images img:nth-child(2) {
  width: 178px;
  top: 0;
  right: 0;
}
@media screen and (min-width: 821px) {
  .p-about .p-about__images img:nth-child(2) {
    width: 26.953125vw;
    top: 8%;
  }
}
.p-about .p-about__images img:nth-child(3) {
  width: 207px;
  height: 226px;
  -o-object-fit: cover;
  object-fit: cover;
  bottom: -10%;
  left: 0;
}
@media screen and (min-width: 821px) {
  .p-about .p-about__images img:nth-child(3) {
    width: 24.609375vw;
    height: auto;
    bottom: -8%;
  }
}
.p-about .p-about__images img:nth-child(4) {
  width: 107px;
  bottom: -5%;
  right: 0;
}
@media screen and (min-width: 821px) {
  .p-about .p-about__images img:nth-child(4) {
    width: 15.625vw;
    right: 7.5%;
    bottom: -10%;
  }
}
.p-about .p-about__inner {
  width: 287px;
  margin: 0 auto 40px;
}
@media screen and (min-width: 821px) {
  .p-about .p-about__inner {
    width: 464px;
  }
}
.p-about .p-about__inner h3 {
  font-size: 2rem;
  line-height: 1.8;
  margin-bottom: 28px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 821px) {
  .p-about .p-about__inner h3 {
    font-size: 3rem;
    line-height: 1.9;
    letter-spacing: 0.17em;
    margin-bottom: 20px;
  }
}
.p-about .p-about__inner p {
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  line-height: 2.07;
}
@media screen and (min-width: 821px) {
  .p-about .p-about__inner p {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    letter-spacing: 0.18em;
  }
}
.p-about .btn-area {
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 821px) {
  .p-about .btn-area {
    max-width: 610px;
    margin: 0 auto;
  }
}

.p-salon {
  padding: 130px 0 34px;
  position: relative;
}
@media screen and (min-width: 821px) {
  .p-salon {
    padding: 140px 0 85px;
  }
}
.p-salon::before {
  content: "";
  display: block;
  width: 100%;
  height: 400px;
  background: #f8f7f3;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 821px) {
  .p-salon .sec-ttl {
    margin-bottom: 48px;
  }
}
.p-salon .p-salon__image {
  padding: 0 12px;
  position: relative;
}
@media screen and (min-width: 821px) {
  .p-salon .p-salon__image img {
    width: 560px;
    margin: 0 auto;
    display: block;
  }
}
.p-salon .p-salon__image::before {
  content: "";
  display: block;
  width: 100%;
  height: 194px;
  background: url("../img/bg-salon-sp.webp") no-repeat center top/cover;
  position: absolute;
  top: 26%;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 821px) {
  .p-salon .p-salon__image::before {
    height: 440px;
    background: url("../img/bg-salon.webp") no-repeat center top/cover;
    top: 15%;
  }
}
.p-salon .p-salon__content {
  padding: 40px 20px 0;
}
@media screen and (min-width: 821px) {
  .p-salon .p-salon__content {
    padding: 80px 20px 0;
  }
}
@media screen and (min-width: 821px) {
  .p-salon .p-salon__inner dl {
    width: 610px;
    margin: 0 auto;
  }
}
.p-salon .p-salon__inner dl div {
  display: flex;
  margin-bottom: 18px;
}
.p-salon .p-salon__inner dl div:last-child {
  margin-bottom: 0;
}
.p-salon .p-salon__inner dl div dt,
.p-salon .p-salon__inner dl div dd {
  font-size: 1.4rem;
}
@media screen and (min-width: 821px) {
  .p-salon .p-salon__inner dl div dt,
.p-salon .p-salon__inner dl div dd {
    font-size: 1.6rem;
  }
}
.p-salon .p-salon__inner dl div dt {
  font-weight: 500;
  flex-shrink: 0;
  width: 25%;
  line-height: 1.8;
}
@media screen and (min-width: 821px) {
  .p-salon .p-salon__inner dl div dt {
    width: 16%;
  }
}
.p-salon .p-salon__inner dl div dd {
  line-height: 1.8;
}
@media screen and (min-width: 821px) {
  .p-salon .p-salon__inner dl div dd {
    white-space: nowrap;
  }
}
.p-salon .p-salon__inner dl div dd small {
  display: block;
}
.p-salon .p-salon__inner dl div dd a {
  font-size: 1.4rem;
}

.p-menu {
  padding: 58px 0;
}
@media screen and (min-width: 821px) {
  .p-menu {
    padding: 134px 0;
  }
}
@media screen and (min-width: 821px) {
  .p-menu .sec-ttl {
    margin-bottom: 70px;
  }
}
.p-menu__inner {
  max-width: 100%;
  padding: 0 20px;
}
.p-menu__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}
.p-menu__column {
  display: contents;
}
@media screen and (min-width: 821px) {
  .p-menu__column {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}
.p-menu__category {
  color: #333;
}
.p-menu__category-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1a1a1a;
  padding-bottom: 4px;
  margin-bottom: 6px;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #808080;
}
.p-menu__category:first-child {
  order: 1;
}
.p-menu__category:nth-child(2) {
  order: 3;
}
.p-menu__category:nth-child(3) {
  order: 5;
}
.p-menu__category:nth-child(4) {
  order: 6;
}
.p-menu__category:nth-child(5) {
  order: 2;
}
.p-menu__category:nth-child(6) {
  order: 4;
}
.p-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-menu__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 18px 0;
  border-bottom: 2px dotted #b3b3b3;
  font-size: 1.4rem;
  width: 100%;
}
.p-menu__item:last-child {
  border-bottom: none;
}
@media screen and (min-width: 821px) {
  .p-menu__item:last-child {
    border-bottom: 2px dotted #b3b3b3;
  }
}
.p-menu__name {
  font-size: 1.4rem;
  color: #1a1a1a;
  line-height: 1.6;
  padding-right: 8px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.p-menu__price {
  font-size: 1.4rem;
  color: #1a1a1a;
  font-weight: 500;
  flex-shrink: 0;
  text-align: right;
  margin-left: auto;
}
.p-menu__notes {
  order: 7;
}
.p-menu__note {
  font-size: 1.2rem;
  color: #1a1a1a;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: #999;
}
.p-menu__note a {
  font-size: 1.2rem;
  text-decoration: underline;
  color: #464236;
}
.p-menu__note:last-child {
  margin-bottom: 0;
  text-align: left;
}
@media screen and (min-width: 821px) {
  .p-menu__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 4px;
  }
  .p-menu__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .p-menu__column {
    gap: 40px;
    flex-wrap: wrap;
    width: 39%;
  }
  .p-menu__item {
    padding: 14px 0;
  }
  .p-menu__name {
    letter-spacing: 0.06em;
  }
}

.p-contact {
  background: #464236;
  padding: 58px 0;
  text-align: center;
}
@media screen and (min-width: 821px) {
  .p-contact {
    padding: 90px 0;
  }
}
.p-contact .sec-ttl {
  margin-bottom: 12px;
}
@media screen and (min-width: 821px) {
  .p-contact .sec-ttl {
    margin-bottom: 24px;
  }
}
.p-contact p {
  color: #fff;
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (min-width: 821px) {
  .p-contact p {
    margin-bottom: 36px;
  }
}
@media screen and (min-width: 821px) {
  .p-contact .c-btn {
    margin: 0 auto;
    width: 292px;
  }
}

.p-access .p-access__inner iframe {
  height: 245px;
  width: 100%;
  filter: grayscale(100%);
}
@media screen and (min-width: 821px) {
  .p-access .p-access__inner iframe {
    height: 400px;
  }
}

.p-profile {
  padding: 58px 0;
  background: #f8f7f3;
}
@media screen and (min-width: 821px) {
  .p-profile {
    padding: 134px 0;
  }
}
.p-profile__inner {
  max-width: 100%;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 821px) {
  .p-profile__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 80px;
    flex-direction: row;
    padding: 0;
  }
}
@media screen and (min-width: 821px) {
  .p-profile .p-profile__header {
    width: 225px;
    flex-shrink: 0;
  }
}
.p-profile .sec-ttl {
  margin-bottom: 32px;
}
@media screen and (min-width: 821px) {
  .p-profile .sec-ttl {
    text-align: left;
  }
}
.p-profile__tabs {
  display: flex;
  gap: 2%;
  justify-content: center;
  margin-bottom: 32px;
}
@media screen and (min-width: 821px) {
  .p-profile__tabs {
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }
}
.p-profile__tab {
  display: flex;
  width: 49%;
  align-items: center;
  padding: 11px 16px;
  border-radius: 20px;
  border: 1px solid #666;
  color: #999;
  background: transparent;
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0em;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
@media screen and (min-width: 821px) {
  .p-profile__tab {
    width: 100%;
    justify-content: center;
  }
}
.p-profile__tab::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 6px solid #1a1a1a;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}
.p-profile__tab[aria-selected=true] {
  background: transparent;
  border-color: #000;
  color: #000;
}
.p-profile__tab[aria-selected=false] {
  border-color: #999999;
  color: #999;
}
.p-profile__tab[aria-selected=false]::after {
  border-left-color: #999999;
}
.p-profile__tab:hover {
  opacity: 0.8;
}
.p-profile__tab span {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.1em;
}
.p-profile__tab.center {
  justify-content: center;
}
.p-profile__panel {
  display: block;
}
.p-profile__panel[style*="display: none"] {
  display: none !important;
}
.p-profile__panel-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #808080;
  font-weight: bold;
}
.p-profile__history {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-profile__history-item {
  display: flex;
  gap: 30px;
}
.p-profile__history-year {
  font-size: 1.3rem;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  line-height: 1.8;
}
.p-profile__history-text {
  font-size: 1.3rem;
  line-height: 1.8;
  margin: 0;
  padding-left: 0;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.p-profile__owner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-profile__owner-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.p-profile__owner-name {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin: 0;
}
.p-profile__owner-instagram {
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
}
.p-profile__owner-instagram:hover {
  opacity: 0.7;
}
.p-profile__owner-instagram svg {
  width: 16px;
  height: 16px;
}
.p-profile__owner-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-profile__owner-text p {
  font-size: 1.4rem;
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 821px) {
  .p-profile__owner-text p {
    line-height: 2.1428571429;
  }
}

.p-products {
  padding: 58px 26px;
}
@media screen and (min-width: 821px) {
  .p-products {
    padding: 134px 0;
  }
}
.p-products .p-products__flex {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 821px) {
  .p-products .p-products__flex {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media screen and (min-width: 821px) {
  header .btn-area .c-btn,
footer .btn-area .c-btn {
    width: 140px;
    border-radius: 0;
    height: 36px;
    line-height: 36px;
  }
  header .btn-area .c-btn:first-of-type a::before,
footer .btn-area .c-btn:first-of-type a::before {
    width: 13px;
    height: 22px;
  }
  header .btn-area .c-btn a,
footer .btn-area .c-btn a {
    font-size: 1.6rem;
    gap: 8px;
  }
  header .btn-area .c-btn a span,
footer .btn-area .c-btn a span {
    letter-spacing: 0.05em;
    font-weight: bold;
  }
  header .btn-area .c-btn a::after,
footer .btn-area .c-btn a::after {
    display: none;
  }
}

.sec-contact {
  padding: 20px 20px 60px;
  max-width: 100%;
}
@media screen and (min-width: 821px) {
  .sec-contact {
    padding: 80px 40px;
    max-width: 1000px;
    margin: 0 auto;
  }
}
.sec-contact .sec-ttl {
  letter-spacing: 0.2em;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 821px) {
  .contact-form {
    gap: 32px;
  }
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form__label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-form__label-text {
  font-size: 1.4rem;
  color: #1a1a1a;
  font-weight: 500;
}
@media screen and (min-width: 821px) {
  .contact-form__label-text {
    font-size: 1.6rem;
  }
}
.contact-form__badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}
@media screen and (min-width: 821px) {
  .contact-form__badge {
    font-size: 1.1rem;
    padding: 1px 8px 3px;
  }
}
.contact-form__badge--required {
  background-color: #1a1a1a;
}
.contact-form__badge--optional {
  color: #464236;
  border: 1px solid #464236;
}
.contact-form__input, .contact-form__textarea {
  width: 100%;
  padding: 12px 16px;
  background-color: #f4f4f4;
  border: none;
  border-radius: 2px;
  font-size: 1.6rem;
  color: #1a1a1a;
  font-family: "Noto Sans JP", sans-serif;
  transition: border-color 0.3s, background-color 0.3s;
}
.contact-form__input::-moz-placeholder, .contact-form__textarea::-moz-placeholder {
  color: #999;
}
.contact-form__input::placeholder, .contact-form__textarea::placeholder {
  color: #999;
}
.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
  resize: none;
}
@media screen and (min-width: 821px) {
  .contact-form__textarea {
    min-height: 200px;
  }
}
@media screen and (min-width: 821px) {
  .contact-form__privacy {
    margin-top: 50px;
  }
}
.contact-form__privacy-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}
@media screen and (min-width: 821px) {
  .contact-form__privacy-title {
    font-size: 1.6rem;
  }
}
.contact-form__privacy-content {
  color: #1a1a1a;
  line-height: 1.8;
  padding: 16px;
  border: 1px solid #999999;
  overflow-y: scroll;
  height: 185px;
}
@media screen and (min-width: 821px) {
  .contact-form__privacy-content {
    height: 211px;
    padding: 20px;
  }
}
.contact-form__privacy-content p {
  margin: 0 0 8px;
  font-size: 1.4rem;
}
@media screen and (min-width: 821px) {
  .contact-form__privacy-content p {
    margin: 0 0 16px;
  }
}
.contact-form__privacy-content p:last-child {
  margin-bottom: 0;
}
.contact-form__checkbox-label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  gap: 4px;
  cursor: pointer;
}
.contact-form__checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #464236;
}
.contact-form__checkbox-text {
  font-size: 1.3rem;
  color: #1a1a1a;
}
@media screen and (min-width: 821px) {
  .contact-form__checkbox-text {
    font-size: 1.6rem;
  }
}
.contact-form__submit {
  margin-top: 8px;
  display: flex;
  justify-content: center;
}
.contact-form__submit-btn {
  width: 100%;
  max-width: 320px;
  padding: 17px 24px;
  background-color: #464236;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
  transition: opacity 0.3s, background-color 0.3s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.15em;
  gap: 8px;
}
.contact-form__submit-btn:hover {
  opacity: 0.9;
}
.contact-form__submit-btn::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 6px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}
.contact-form__submit-btn span {
  color: #fff;
}

@media screen and (min-width: 821px) {
  .thanks {
    padding: 200px 0;
  }
}

.thanks-content {
  text-align: center;
}
.thanks-content h3 {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 16px;
}
@media screen and (min-width: 821px) {
  .thanks-content h3 {
    font-size: 3rem;
  }
}
.thanks-content p {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (min-width: 821px) {
  .thanks-content p {
    font-size: 1.6rem;
    margin-bottom: 60px;
  }
}

.sec-confirm table {
  display: block;
  padding: 0 16px;
}
@media screen and (min-width: 821px) {
  .sec-confirm table {
    width: 1000px;
    margin: 0 auto;
  }
}
.sec-confirm table tbody {
  width: 100%;
}
.sec-confirm table tr {
  border-bottom: 1px solid #999999;
  display: flex;
  width: 100%;
  padding-bottom: 14px;
  margin-bottom: 14px;
}
@media screen and (min-width: 821px) {
  .sec-confirm table tr {
    width: 1000px;
    padding-bottom: 18px;
    margin-bottom: 18px;
  }
}
.sec-confirm table tr:nth-child(5) {
  flex-direction: column;
}
.sec-confirm table tr:nth-child(5) th {
  width: 100%;
}
.sec-confirm table tr:nth-child(5) td {
  width: 100%;
}
.sec-confirm table th {
  width: 40%;
}
@media screen and (min-width: 821px) {
  .sec-confirm table th {
    width: 20%;
  }
}
.sec-confirm table td {
  width: 60%;
}
@media screen and (min-width: 821px) {
  .sec-confirm table td {
    width: 80%;
  }
}
.sec-confirm table th,
.sec-confirm table td {
  font-size: 1.4rem;
  font-weight: 500;
  text-align: left;
}
@media screen and (min-width: 821px) {
  .sec-confirm table th,
.sec-confirm table td {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 821px) {
  .sec-confirm .contact-form__submit {
    margin-top: 15px;
  }
}
.sec-confirm .contact-form__submit-btn {
  padding: 0;
}
.sec-confirm .contact-form__submit-btn input {
  width: 100%;
  max-width: 320px;
  padding: 17px 24px;
  background-color: #464236;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
  transition: opacity 0.3s, background-color 0.3s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.sec-confirm .contact-form__submit-btn.back input {
  background-color: #fff;
  border: 1px solid #464236;
  color: #464236;
}
.sec-confirm .contact-form__submit-btn.back::after {
  border-left: 6px solid #464236;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
/*# sourceMappingURL=style.css.map */