@charset "UTF-8";

/* --- 共通設定 --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.94vw;
}

body {
  margin: 0;
}

li {
  list-style: none;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

/* --- コンテナ設定 --- */
img {
  max-width: 100%;
  height: auto;
  border-style: none;
  display: block;
}

/* 消してる要素 */
.sp-header,
.sp {
  display: none;
}

/* アニメーションの動き */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

/* 画面に入った時に付与するクラス */
.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* --- p1-a：トップ選択画面 --- */
body.front-page main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p1-a {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.p1-a-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.p1-a-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.p1-a-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 2.0833vw;
}

.p1-a-item {
  position: relative;
  display: block;
  width: 36.4583vw;
  height: 29.4444vw;
  border: 1px solid;
  overflow: hidden;
}

.p1-a-item.is-pink {
  border-color: #f5b2b2;
}

.p1-a-item.is-black {
  border-color: #000;
}

.p1-a-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p1-a-logo {
  position: absolute;
}

.p1-a-item.is-pink .p1-a-logo {
  left: 8.9583vw;
  top: 7.9167vw;
  width: 18.5417vw;
  height: 9.3056vw;
}

.p1-a-item.is-black .p1-a-logo {
  left: 7.5694vw;
  top: 1.1806vw;
  width: 21.3194vw;
  height: 21.3194vw;
}

.p1-a-btn {
  position: absolute;
  left: 4.9306vw;
  top: 18.8889vw;
  width: 26.5278vw;
  height: 4.7222vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.0556vw;
  padding: 0.6944vw 0.6944vw 0.6944vw 3.9583vw;
}

.p1-a-item.is-pink .p1-a-btn {
  background-color: #f5b2b2;
}

.p1-a-item.is-black .p1-a-btn {
  background-color: #000;
}

.p1-a-text {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1.6667vw;
  color: #fff;
  white-space: nowrap;
}

.p1-a-arrow {
  width: 0;
  height: 0;
  border-top: 0.4167vw solid transparent;
  border-bottom: 0.4167vw solid transparent;
  border-left: 0.5556vw solid #fff;
}

/* --- sub-ah：arp hills 共通ヘッダー/フッター --- */
body.is-arphills {
  background: #feecea;
  font-family: "Kaisei Opti", serif;
}

.sub-ah-header {
  height: 7.6389vw;
  position: fixed;
  top: 0;
  left: 0;
  background: #feecea;
  width: 100%;
  z-index: 9999;
}

.sub-ah-header-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1.81vw;
}

.sub-ah-header-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2vw;
  margin-top: 0.56vw;
}

.sub-ah-header-logo {
  display: flex;
  align-items: center;
  gap: 1.3889vw;
}

.sub-ah-header-logo img {
  width: 8.75vw;
  height: auto;
}

.sub-ah-header-text {
  font-size: 0.9722vw;
  color: #000;
}

.sub-ah-header-menu-box {
  display: flex;
  align-items: center;
  gap: 2vw;
}

.sub-ah-header-nav ul {
  display: flex;
  gap: 2.7778vw;
}

.sub-ah-header-nav a {
  position: relative;
  display: inline-block;
  font-size: 1.3889vw;
  letter-spacing: 0.1111vw;
  color: #353535;
  padding-bottom: 0.4167vw;
}

.sub-ah-header-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0.4167vw;
  height: 0.4167vw;
  border-radius: 50%;
  background: #f5b2b2;
  opacity: 0;
  transform: translateX(-50%) scale(0);
  transition: opacity 0.3s, transform 0.3s;
}

.sub-ah-header-nav a:hover::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.sub-ah-header-insta img {
  width: 1.9444vw;
  height: auto;
}

.sub-ah-header-links-box {
  display: flex;
  align-items: center;
  gap: 1.6667vw;
}

.sub-ah-header-hotpepper img {
  width: 6.5278vw;
  height: auto;
}

.sub-ah-header-epark img {
  width: 7.0833vw;
  height: auto;
}

.sub-ah-header-tel {
  display: flex;
  align-items: center;
  gap: 0.6944vw;
  background: #f5b2b2;
  color: #fff;
  font-weight: 700;
  font-size: 1.3889vw;
  letter-spacing: 0.1111vw;
  padding: 0.6944vw 1.3889vw;
  white-space: nowrap;
}

.sub-ah-header-tel-icon {
  width: 0.9vw;
  height: 0.9vw;
}

.sp-header.is-ah {
  background-color: #feecea;
}

.sub-ah-footer {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.sub-ah-footer-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.sub-ah-footer-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub-ah-footer-box {
  width: 88.89vw;
  margin: 0 auto;
  padding: 7.29vw 0 3.47vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.9444vw;
}

.sub-ah-footer-tel {
  display: flex;
  align-items: center;
  gap: 0.6944vw;
  background: #f5b2b2;
  color: #fff;
  font-weight: 700;
  font-size: 1.3889vw;
  letter-spacing: 0.1111vw;
  padding: 1.6944vw 3.3889vw;
  white-space: nowrap;
}

.sub-ah-footer-tel-icon {
  width: 0.9vw;
  height: 0.9vw;
}

.sub-ah-footer-logo {
  width: 8.75vw;
}

.sub-ah-footer-teaser {
  position: relative;
  display: flex;
  align-items: center;
  width: 33.9583vw;
  height: 10.7639vw;
  overflow: visible;
  background: #fff;
}

.sub-ah-footer-teaser-logo {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 14.7917vw;
  margin-left: 1.6667vw;
}

.sub-ah-footer-teaser-photo {
  position: absolute;
  right: 0;
  top: 0.0694vw;
  width: 15.8333vw;
  height: 10.625vw;
  overflow: hidden;
}

.sub-ah-footer-teaser-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub-ah-footer-teaser-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent, #fff);
}

.sub-ah-footer-teaser-more {
  position: absolute;
  z-index: 2;
  right: 0.5vw;
  bottom: 0.7639vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 1.1111vw;
  letter-spacing: 0.0889vw;
  color: #353535;
}

.sub-ah-footer-teaser-more img {
  width: 7.3958vw;
  height: auto;
}

.sub-ah-footer-menu-box {
  display: flex;
  align-items: center;
  gap: 2vw;
}

.sub-ah-footer-nav ul {
  display: flex;
  gap: 2.7778vw;
}

.sub-ah-footer-nav a {
  position: relative;
  display: inline-block;
  font-size: 1.3889vw;
  color: #fff;
  text-shadow: 0 0 0.3472vw rgba(0, 0, 0, 0.48);
  padding-bottom: 0.4167vw;
}

.sub-ah-footer-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0.4167vw;
  height: 0.4167vw;
  border-radius: 50%;
  background: #f5a623;
  opacity: 0;
  transform: translateX(-50%) scale(0);
  transition: opacity 0.3s, transform 0.3s;
}

.sub-ah-footer-nav a:hover::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.sub-ah-footer-links-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.6667vw;
}

.sub-ah-footer-insta {
  flex-basis: 100%;
  display: flex;
  justify-content: center;
}

.sub-ah-footer-insta img {
  width: 2.5694vw;
}

.sub-ah-footer-hotpepper img {
  width: 6.5278vw;
  height: auto;
}

.sub-ah-footer-epark img {
  width: 7.0833vw;
  height: auto;
}

.sub-ah-footer-copy {
  font-size: 0.8333vw;
  letter-spacing: 0.0667vw;
  color: #fff;
}

.sub-ah-footer-copy a {
  color: #fff;
  text-decoration: underline;
}

.sub-ah-fixed {
  position: fixed;
  right: 0;
  bottom: 2vw;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.1vw;
  width: 5.5556vw;
  padding: 1.3194vw 0 1.0417vw;
  background: #353535;
}

.sub-ah-fixed-line img {
  width: 2.7083vw;
  height: 2.7083vw;
}

.sub-ah-fixed-top span {
  display: block;
  width: 1.5vw;
  height: 1.5vw;
  border-top: 0.15vw solid #fff;
  border-left: 0.15vw solid #fff;
  transform: rotate(45deg);
}

.sub-ah-fixed-insta img {
  width: 1.9444vw;
  height: 1.9444vw;
}

/* --- p2- : arp hills ページ --- */
.p2-a-title,
.p2-b-title,
.p2-c-title,
.p2-d-title,
.p2-e-title,
.p2-f-title,
.p2-g-title,
.p2-h-title,
.p2-i-title,
.p2-j-title {
  font-weight: 400;
  font-size: 2.7778vw;
  letter-spacing: 0.1667vw;
  color: #303030;
  text-align: center;
}

.p2-a {
  position: relative;
  width: 100%;
  height: 40.9722vw;
  margin-top: var(--header-height, 7.6389vw);
  overflow: hidden;
}

.p2-a-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.p2-a-container img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.p2-a-container img.is-active {
  opacity: 1;
}

.p2-a-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 26.1111vw;
  height: 100%;
  background: rgba(245, 178, 178, 0.73);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.7778vw;
}

.p2-a-catch {
  writing-mode: vertical-rl;
  color: #fff;
  font-size: 2.5vw;
  font-weight: 500;
  letter-spacing: 0.5vw;
  text-shadow: 0 0 0.8333vw #a1a1a1;
  line-height: 1.8;
}

.p2-a-catch em {
  font-style: normal;
  color: #e0f0d0;
}

.p2-a-logo {
  width: 8.75vw;
}

.p2-b {
  padding: 6.9444vw 0;
}

.p2-b-box {
  width: 88.89vw;
  margin: 0 auto;
}

.p2-title-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.3889vw;
  margin-bottom: 2.5vw;
}

.p2-title-dots {
  display: flex;
  align-items: center;
  gap: 0.5093vw;
}

.p2-title-dots span {
  width: 0.3472vw;
  height: 0.3472vw;
  border-radius: 50%;
  background: #303030;
}

.p2-b-lead {
  text-align: center;
  font-size: 1.6667vw;
  color: #303030;
  line-height: 1.85;
  margin-bottom: 3.8194vw;
}

.p2-b-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.8194vw;
}

.p2-b-item:last-child {
  margin-bottom: 0;
}

.p2-b-text {
  width: 45.63vw;
  font-size: 1.3889vw;
  line-height: 1.85;
  color: #353535;
}

.p2-b-text.p2-b-text2 {
  width: 58.82vw;
}

.p2-b-img {
  width: 38.26vw;
  height: 25.4861vw;
  flex-shrink: 0;
}

.p2-b-img.p2-b-img2 {
  width: 25.69vw;
  height: 38.6806vw;
}

.p2-c {
  padding: 6.9444vw 0;
}

.p2-c-box {
  width: 88.89vw;
  margin: 0 auto;
}

.p2-c-list {
  display: flex;
  gap: 1.39vw;
  margin-bottom: 1.3194vw;
}

.p2-c-list.is-row2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  gap: 0.76vw;
  margin-bottom: 0;
}

.p2-c-item {
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.p2-c-link {
  display: block;
  width: 100%;
  height: 100%;
}

.p2-c-img {
  width: 100%;
  height: 21.0417vw;
  object-fit: cover;
}

.p2-c-list.is-row2 .p2-c-img {
  height: 14.5833vw;
}

.p2-d {
  padding: 6.9444vw 0;
}

.p2-d-box {
  width: 88.89vw;
  margin: 0 auto;
}

.p2-d-list {
  display: flex;
  gap: 0.9722vw;
  justify-content: center;
}

.p2-d-item {
  position: relative;
  width: 17.0139vw;
  height: 11.5972vw;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.p2-d-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p2-d-name {
  position: relative;
  width: 100%;
  height: 4.3056vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.79);
  text-align: center;
  font-size: 1.6667vw;
  color: #303030;
  line-height: 1.3;
}

.p2-e {
  padding: 6.9444vw 0;
}

.p2-e-box {
  width: 88.89vw;
  margin: 0 auto;
}

.p2-e-lead {
  text-align: center;
  font-size: 1.3889vw;
  color: #d59684;
  margin-bottom: 2.7778vw;
}

.p2-e-list {
  display: flex;
  flex-direction: column;
  gap: 1.0417vw;
}

.p2-e-item {
  background: #fff;
}

.p2-e-link {
  display: flex;
  align-items: center;
  gap: 2.7778vw;
  padding: 1.5vw 2.7778vw;
}

.p2-e-meta-box {
  display: flex;
  flex-direction: column;
  gap: 0.2vw;
  width: 16vw;
  flex-shrink: 0;
}

.p2-e-name {
  font-size: 1.0417vw;
  color: #353535;
}

.p2-e-date {
  font-size: 1.0417vw;
  color: #d59684;
}

.p2-e-text {
  font-size: 1.0417vw;
  color: #353535;
  line-height: 1.85;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.p2-f {
  padding: 6.9444vw 0;
  text-align: center;
}

.p2-f-box {
  width: 88.89vw;
  margin: 0 auto;
}

.p2-f-icon-link {
  display: block;
  width: fit-content;
  margin: 0 auto 2.7778vw;
}

.p2-f-icon {
  width: 2.5694vw;
}

.p2-f-list {
  width: 100%;
}

.p2-g {
  padding: 6.9444vw 0;
  text-align: center;
}

.p2-g-box {
  width: 88.89vw;
  margin: 0 auto;
}

.p2-g-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8vw;
  width: 37.9861vw;
  background: #fff8f8;
  border: 2px solid #9f1547;
  padding: 2.5vw 3vw;
}

.p2-g-text {
  position: relative;
  font-weight: 500;
  font-size: 1.1111vw;
  color: #9f1547;
  padding-bottom: 0.5vw;
}

.p2-g-text::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 22.9167vw;
  height: 0.0694vw;
  background: #9f1547;
}

.p2-g-img {
  width: 18.26vw;
  height: auto;
}

.p2-h {
  padding: 6.9444vw 0;
}

.p2-h-box {
  width: 88.89vw;
  margin: 0 auto;
}

.p2-h-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5vw;
  justify-content: center;
}

.p2-h-item {
  width: 28.5vw;
}

.p2-h-img {
  width: 100%;
  height: auto;
}

.p2-i {
  background-color: #fff;
  background-image: url(../image/p2-i-back1.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 6.9444vw 0;
}

.p2-i-box {
  width: 69.44vw;
  margin: 0 auto;
}

.p2-i-text {
  text-align: center;
  padding: 0 0 2.43vw;
}

.p2-i-text p {
  font-size: 1.67vw;
}

.p2-i-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.3889vw;
  color: #353535;
}

.p2-i-table th {
  width: 15%;
  text-align: left;
  font-weight: 400;
  padding: 1.5vw 1vw 1.5vw 0;
  vertical-align: top;
  border-bottom: 0.1389vw solid #e0f0d0;
}

.p2-i-table td {
  padding: 1.5vw 0 1.5vw 60px;
  line-height: 1.7;
  border-bottom: 0.1389vw solid #d9d9d9;
}

.p2-i-week {
  display: inline-block;
  width: 7em;
}

.p2-j {
  padding: 6.9444vw 0 15.76vw;
  text-align: center;
}

.p2-j-text {
  font-size: 1.3889vw;
  color: #353535;
  margin-bottom: 1vw;
}

.p2-j-img {
  width: 100%;
  height: 40.9722vw;
  border: 0;
  margin-top: 2.22vw;
}

.p2-j-im iframe {
  width: 100%;
  height: 100%;
}

/* お知らせ内容 1100で可変 */
.single-container {
  width: 100%;
  padding: 4.17vw 0;
}

.single-box {
  width: 69.44vw;
  margin: 0 auto;
}

.single-title {
  font-size: 2.22vw;
  font-weight: 600;
  margin-bottom: 2.08vw;
  line-height: 1.4;
}

.single-img {
  width: 100%;
  max-width: 41.67vw;
  margin-bottom: 2.78vw;
}

.single-img img {
  width: 100%;
  height: auto;
  display: block;
}

.single-content {
  font-size: 1.11vw;
  line-height: 1.8;
  color: #333;
}

.single-content img {
  max-width: 100%;
  height: auto;
}

/* --- p3- : arphillsメニューページ --- */
.p3-main {
  margin-top: var(--header-height, 7.6389vw);
  background: #feecea;
}

.p3-view {
  overflow: hidden;
}

.p3-view-container {
  position: relative;
  margin: var(--header-height, 7.6389vw) 0 0 auto;
  width: 88.6111vw;
  height: 27.0833vw;
  overflow: hidden;
}

.p3-view-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p3-view-title {
  position: absolute;
  left: 9.5833vw;
  top: 10.0694vw;
  font-weight: 500;
  font-size: 2.7778vw;
  letter-spacing: 0.2778vw;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 0 0.8333vw #a1a1a1;
}

img.p3-view-deco {
  position: absolute;
  right: 0;
  top: 0;
  width: 19.6528vw;
  height: 14.0972vw;
  object-fit: cover;
}

.p3-staff {
  padding: 5.4167vw 0 12.2222vw;
}

.p3-staff-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1vw;
}

.p3-staff-title {
  font-weight: 400;
  font-size: 2.7778vw;
  letter-spacing: 0.1667vw;
  color: #353535;
  text-align: center;
}

.p3-staff-line {
  display: block;
  width: 1px;
  height: 2.4306vw;
  background: #353535;
}

.p3-staff-box {
  width: 88.89vw;
  margin: 4.0278vw auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3vw 2.5694vw;
}

.p3-staff-item {
  width: calc((100% - 2 * 2.5694vw) / 3);
}

.p3-staff-item-circle {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

.p3-staff-item-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p3-staff-item-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -70%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p3-staff-item-text.is-shift-right {
  left: 58%;
}

.p3-staff-item-text.is-shift-left {
  left: 42%;
}

.p3-staff-item-name {
  font-size: 4.4444vw;
  letter-spacing: 0.2667vw;
  color: #d59684;
  white-space: nowrap;
  text-align: center;
}

.p3-staff-item-name.is-shift-left {
  transform: translateX(-1vw);
}

.p3-staff-item-name span {
  display: inline-block;
  vertical-align: top;
  margin-left: 0.3vw;
  font-weight: 500;
  font-size: 1.6667vw;
  letter-spacing: 0.0667vw;
}

.p3-staff-item-name.is-shift-left span {
  transform: translate(-4vw, -0.2vw);
}

.p3-staff-item-comment {
  font-weight: 500;
  font-size: 1.3889vw;
  color: #d59684;
  text-align: center;
  white-space: nowrap;
}

.p3-staff-item-role {
  position: absolute;
  left: -6%;
  bottom: 12%;
  width: 19.3056vw;
  height: 4.1667vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d59684;
  color: #fff;
  font-weight: 500;
  font-size: 1.39vw;
  text-align: center;
  white-space: nowrap;
}

/* .p3-cat {
  margin-bottom: 4.1667vw;
} */

.p3-cat:last-child {
  padding-bottom: 6.9444vw;
}

.p3-cat-banner {
  position: relative;
  height: 20.7639vw;
  overflow: hidden;
  margin-top: 8.33vw;
}

.p3-cat-banner>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p3-cat-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.p3-cat-banner::after {
  content: "";
  position: absolute;
  inset: 0.6944vw;
  border: 1px solid rgba(255, 255, 255, 0.9);
  pointer-events: none;
}

.p3-cat-banner-box {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25vw;
  padding: 0 2vw;
}

.p3-cat-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 300;
  font-size: 4.4444vw;
  letter-spacing: 0.3556vw;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 0.8333vw #303030;
}

.p3-cat-lead p {
  font-size: 1.3889vw;
  line-height: 1.85;
  color: #fff;
  text-align: center;
}

.p3-cat-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4vw;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 300;
  font-size: 1.3889vw;
  letter-spacing: 0.1111vw;
  color: #fff;
}

.p3-cat-more img {
  width: 0.21vw;
  height: 0.97vw;
  margin-top: 0.35vw;
}

.p3-cat-box {
  width: 66.6667vw;
  margin: 2.7778vw auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.8056vw;
}

.p3-cat-sub {
  display: flex;
  flex-direction: column;
}

.p3-cat-sub-head {
  display: flex;
  align-items: flex-start;
  gap: 1.9444vw;
  margin-bottom: 1.8056vw;
}

.p3-cat-sub-head.is-reverse {
  flex-direction: row-reverse;
}

.p3-cat-sub-img {
  flex-shrink: 0;
  width: 17.9167vw;
  height: 11.4583vw;
  object-fit: cover;
  box-shadow: 0.5556vw 0.5556vw 0 0 #ffdeda;
}

.p3-cat-sub-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4861vw;
}

.p3-cat-sub-title {
  font-weight: 400;
  font-size: 2.7778vw;
  letter-spacing: 0.1111vw;
  color: #d59684;
  padding-bottom: 0.4vw;
  border-bottom: 1px solid #d59684;
}

.p3-cat-sub-title-line {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 2.7778vw;
  letter-spacing: 0.1111vw;
  color: #d59684;
  white-space: nowrap;
}

.p3-cat-sub-title-line::after {
  content: "";
  flex: 1;
  height: 0;
  margin-left: 1vw;
  border-top: 1px solid #d59684;
}

.p3-cat-sub-desc {
  font-size: 1.0417vw;
  line-height: 1.6;
  letter-spacing: 0.0417vw;
  color: #000;
  margin-bottom: 1.8056vw;
}

.p3-cat-sub-note {
  font-size: 1.39vw;
  line-height: 1.6;
  letter-spacing: 0.0417vw;
  color: #d59684;
}

.p3-cat-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.9444vw;
  margin-bottom: 1.8056vw;
}

.p3-cat-feature.is-reverse {
  flex-direction: row-reverse;
}

.p3-cat-feature-img {
  flex-shrink: 0;
  width: 17.9167vw;
  height: 11.4583vw;
  object-fit: cover;
  box-shadow: 0.5556vw 0.5556vw 0 0 #ffdeda;
}

.p3-cat-feature-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4861vw;
}

.p3-cat-feature-title {
  font-weight: 400;
  font-size: 2.2222vw;
  letter-spacing: 0.0889vw;
  color: #d59684;
  padding-bottom: 0.4vw;
  border-bottom: 1px solid #d59684;
}

.p3-cat-feature-lead {
  font-weight: 700;
  font-size: 1.3889vw;
  color: #d59684;
}

.p3-cat-table-box {
  background: #fff;
  border: 1px solid #d59684;
  padding: 3.5417vw 1.5vw;
}

.p3-cat-sub-desc strong {
  font-weight: 700;
  color: #d59684;
}

.is-epilation .p3-cat-sub-desc strong {
  font-size: 1.3889vw;
}

.p3-cat-attention-text {
  font-size: 1.3889vw;
  line-height: 1.6;
  letter-spacing: 0.0556vw;
  color: #000;
}

.p3-cat-table {
  width: 100%;
  border-collapse: collapse;
}

.p3-cat-table th,
.p3-cat-table td {
  padding: 0.9vw 0;
  font-weight: 400;
  font-size: 1.3889vw;
  letter-spacing: 0.0556vw;
  color: #353535;
  text-align: left;
  vertical-align: top;
}

.p3-cat-table td {
  width: 8.33vw;
  white-space: nowrap;
  padding-left: 1.39vw;
}

.p3-cat-name {
  display: flex;
  align-items: center;
}

.p3-cat-name::after {
  content: "";
  flex: 1;
  height: 0;
  margin-left: 0.5vw;
  border-top: 1px dotted #d59684;
}

.p3-cat-note {
  display: block;
  font-size: 1.0417vw;
  letter-spacing: 0.0417vw;
  color: #353535;
  margin-top: 0.3vw;
}

.p3-cat-table-note {
  font-size: 1.0417vw;
  line-height: 1.6;
  letter-spacing: 0.0417vw;
  color: #353535;
  margin-top: 1.5vw;
}

/* --- sub-coco / p4- : COCO＆Nail ページ --- */
body.is-coco {
  background: #fff;
  font-family: "Zen Old Mincho", serif;
}

.sub-coco-header {
  height: 6.9444vw;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 9999;
}

.sub-coco-header-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5vw;
}

.sub-coco-header-logo img {
  width: 11.75vw;
  height: auto;
}

.sub-coco-header-menu-box {
  display: flex;
  align-items: center;
  gap: 2vw;
}

.sub-coco-header-nav ul {
  display: flex;
  gap: 2.7778vw;
}

.sub-coco-header-nav a {
  position: relative;
  display: inline-block;
  font-family: "Aboreto", serif;
  font-size: 1.3889vw;
  letter-spacing: 0.1111vw;
  color: #000;
  padding-bottom: 0.4167vw;
}

.sub-coco-header-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0.4167vw;
  height: 0.4167vw;
  border-radius: 50%;
  background: #ba9502;
  opacity: 0;
  transform: translateX(-50%) scale(0);
  transition: opacity 0.3s, transform 0.3s;
}

.sub-coco-header-nav a:hover::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.sub-coco-header-links-box {
  display: flex;
  align-items: center;
  gap: 1.6667vw;
}

.sub-coco-header-insta img {
  width: 1.9444vw;
  height: auto;
}

.sub-coco-header-hotpepper img {
  width: 6.5278vw;
  height: auto;
}

.sub-coco-header-line img {
  width: 2.1528vw;
  height: auto;
}

.sub-coco-header-tel {
  display: flex;
  align-items: center;
  gap: 0.6944vw;
  background: #d8c57a;
  color: #fff;
  font-family: "Aboreto", serif;
  font-size: 1.3889vw;
  letter-spacing: 0.1111vw;
  padding: 0.6944vw 0.3889vw;
  white-space: nowrap;
}

.sub-coco-header-tel-icon {
  width: 0.9vw;
  height: 0.9vw;
}

.sp-header.is-coco {
  background-color: #fff;
}

/* p4-title 共通 */
.p4-title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8vw;
  margin-bottom: 2.7778vw;
}

.p4-title {
  font-family: "Aboreto", serif;
  font-weight: 400;
  font-size: 3.3333vw;
  letter-spacing: 0.2vw;
  color: #ba9502;
  text-align: center;
}

.p4-title.is-white {
  color: #fff;
}

.p4-title-deco {
  width: 6.9444vw;
  height: auto;
}

.p4-f .p4-title-deco {
  margin: 0 auto;
}

/* p4-a : ヒーロー */
.p4-a {
  position: relative;
  width: 100%;
  height: 53.96vw;
  overflow: hidden;
}

.p4-a-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.p4-a-container img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.p4-a-container img.is-active {
  opacity: 1;
}

.p4-a-box {
  position: absolute;
  right: 6vw;
  top: 8.5vw;
  display: flex;
  align-items: flex-start;
  gap: 1.1111vw;
}

.p4-a-catch-label {
  writing-mode: vertical-rl;
  background: #000;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1.6667vw;
  letter-spacing: 0.0667vw;
  padding: 0.6944vw 0.4vw;
}

.p4-a-catch-main {
  writing-mode: vertical-rl;
  color: #000;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 2.7778vw;
  letter-spacing: 0.1111vw;
  text-shadow: 0 0 0.8333vw rgba(255, 255, 255, 0.44);
}

.p4-a-deco {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 15.2083vw;
  height: auto;
}

/* p4-b : コンセプト */
.p4-b {
  background-image: url(../image/p4-a-back4.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 6.9444vw 0;
}

.p4-b-box {
  width: 88.89vw;
  margin: 0 auto;
}

.p4-b-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p4-b-text-box {
  display: flex;
  flex-direction: column;
  gap: 1.9444vw;
}

.p4-b-text {
  width: 45.97vw;
  font-size: 1.1111vw;
  line-height: 1.85;
  color: #353535;
}

.p4-b-text.p4-b-text2 {
  width: 44.0972vw;
}

.p4-b-img-box {
  flex-shrink: 0;
  width: 40.9vw;
}

.p4-b-img {
  width: 100%;
  height: 27.2917vw;
  object-fit: cover;
}

.p4-b-deco {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 19.7222vw;
  height: auto;
  z-index: 1;
}

/* p4-c : メニュー */
.p4-c {
  padding: 6.9444vw 0;
  position: relative;
}

.p4-c-box {
  width: 88.89vw;
  margin: 0 auto;
  position: relative;
}

.p4-c-list {
  display: flex;
  justify-content: center;
  gap: 1.7361vw;
}

.p4-c-item {
  position: relative;
  width: 27.6389vw;
  height: 20.7639vw;
  overflow: hidden;
}

.p4-c-item::after {
  content: "";
  position: absolute;
  inset: 0.6944vw;
  border: 1px solid #fff;
  pointer-events: none;
}

.p4-c-link {
  display: block;
  width: 100%;
  height: 100%;
}

.p4-c-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p4-c-name {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: "Aboreto", serif;
  font-size: 4.4444vw;
  letter-spacing: 0.3556vw;
  color: #fff;
  text-shadow: 0 0 0.8333vw #303030;
  white-space: nowrap;
}

.p4-c-deco {
  position: absolute;
  left: 0;
  bottom: -4vw;
  width: 19.0278vw;
  height: auto;
  z-index: -1;
}

/* p4-d : スタッフ */
.p4-d {
  padding: 6.9444vw 0 0;
  position: relative;
}

.p4-d-box {
  width: 88.89vw;
  margin: 0 auto;
  position: relative;
}

.p4-d-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.6389vw;
}

.p4-d-photos {
  position: relative;
  flex-shrink: 0;
  width: 31.3194vw;
  height: 32.9167vw;
}

.p4-d-img {
  position: absolute;
  object-fit: cover;
}

.p4-d-img1 {
  left: 0;
  top: 0;
  width: 31.3194vw;
  height: 15.0694vw;
}

.p4-d-img2 {
  left: 0;
  bottom: 0;
  width: 15.2778vw;
  height: 16.1111vw;
}

.p4-d-img3 {
  right: 0;
  bottom: 0;
  width: 15.2778vw;
  height: 16.1111vw;
}

.p4-d-text {
  width: 45.4861vw;
  font-size: 1.3889vw;
  line-height: 1.85;
  color: #353535;
}

.p4-d-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18.4028vw;
  margin-top: 2vw;
  padding: 0.6944vw;
  border: 1px solid #927500;
  font-family: "Aboreto", serif;
  font-size: 1.3889vw;
  letter-spacing: 0.0972vw;
  color: #ba9502;
}

.p4-d-btn-arrow {
  position: absolute;
  right: 1.3889vw;
  top: 50%;
  transform: translateY(-50%);
  width: 3.0208vw;
  height: auto;
}

.p4-d-deco {
  position: absolute;
  right: -2vw;
  bottom: -13vw;
  width: 23.68vw;
  height: auto;
  z-index: -1;
}

/* p4-e : インスタグラム */
.p4-e {
  padding: 17.22vw 0 6.9444vw;
  text-align: center;
}

.p4-e-box {
  width: 88.89vw;
  margin: 0 auto;
}

.p4-e-list {
  width: 100%;
}

/* p4-f : リザベーション */
.p4-f {
  padding: 6.9444vw 0;
  text-align: center;
  background: url(../image/p4-a-back5.png) no-repeat center / cover;
}

.p4-f-box {
  width: 88.89vw;
  margin: 0 auto;
}

.p4-f-title-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.3vw;

}

.p4-f-title-line {
  display: block;
  width: 30.8333vw;
  height: 1px;
  background: #fff;
}

.p4-f-btn {
  display: inline-block;
  width: 37.9861vw;
  background: #fff8f8;
  border: 2px solid #ba9502;
  margin-top: 2.7778vw;
}

.p4-f-btn-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6944vw;
  width: 100%;
  height: 100%;
  background: #fffcf2;
  padding: 1.4vw 3vw;
}

.p4-f-btn-text {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1.1111vw;
  color: #ba9502;
}

.p4-f-btn-line {
  display: block;
  width: 20.0694vw;
  height: 0.4167vw;
  border-top: 1px solid #ba9502;
  border-bottom: 2px solid #ba9502;
}

.p4-f-btn-img {
  width: 18.26vw;
  height: auto;
}

/* p4-g : サロン情報 */
.p4-g {
  padding: 6.9444vw 0;
  position: relative;
  background: url(../image/p4-a-back6.png) no-repeat center / cover;
}

.p4-g-box {
  width: 59.1vw;
  margin: 0 auto;
  position: relative;
}

.p4-g-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.3889vw;
  color: #353535;
  margin-bottom: 2.7778vw;
}

.p4-g-table th {
  width: 20%;
  text-align: left;
  font-weight: 400;
  padding: 1.5vw 1vw 1.5vw 0;
  vertical-align: top;
  border-bottom: 2px solid #927500;
}

.p4-g-table td {
  padding: 1.5vw 0;
  line-height: 1.7;
  border-bottom: 2px solid #cdbc79;
}

.p4-g-table-label {
  display: inline-block;
  width: 6.9444vw;
}

.p4-g-deco1 {
  position: absolute;
  left: -8.4vw;
  top: 2.78vw;
  width: 9.9306vw;
  height: auto;
}

.p4-g-deco2 {
  position: absolute;
  right: -12.8vw;
  bottom: -4vw;
  width: 9.0972vw;
  height: auto;
}

/* p4-h : マップ */
.p4-h-map {
  display: block;
  width: 100%;
  height: 40.9722vw;
  border: 0;
}

/* --- sub-coco / p5- : cocoメニューページ --- */
/* p3-cat / p3-staff 共有クラスの配色をゴールドに上書き（coco-menuページのみ） */
body.is-coco .p3-cat-sub-title-line {
  color: #ba9502;
}

body.is-coco .p3-cat-sub-title-line::after {
  border-top: 1px solid #ba9502;
}

body.is-coco .p3-cat-sub-note {
  color: #ba9502;
}

body.is-coco .p3-cat-table-box {
  border: 1px solid #ba9502;
}

body.is-coco .p3-cat-name::after {
  border-top: 1px dotted #ba9502;
}

/* p5-f : スタッフ（円リング＋花装飾） */
.p5-f-list {
  width: 66.6667vw;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 8vw;
  column-gap: 4vw;
  justify-items: center;
}

.p5-f-item-ring {
  position: relative;
  width: 24.8611vw;
  aspect-ratio: 1 / 1;
}

.p5-f-item-circle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.p5-f-item-ring.is-flip .p5-f-item-circle {
  transform: rotate(180deg);
}

.p5-f-item-flower {
  position: absolute;
  height: auto;
  pointer-events: none;
}

.p5-f-item-flower.is-tl {
  left: 2%;
  top: -10%;
  width: 40%;
}

.p5-f-item-flower.is-br {
  right: 0%;
  bottom: -8%;
  width: 34%;
}

.p5-f-item-info {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -70%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6944vw;
  width: 100%;
  text-align: center;
}

.p5-f-item-name {
  font-family: "Aboreto", serif;
  font-weight: 400;
  font-size: 2.7778vw;
  letter-spacing: 0.1vw;
  color: #ba9502;
  white-space: nowrap;
}

.p5-f-item-name span {
  display: inline-block;
  margin-left: 0.3vw;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1.6667vw;
  letter-spacing: 0.0417vw;
  color: #ba9502;
}

.p5-f-item-comment {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1.3889vw;
  letter-spacing: 0.0417vw;
  color: #ba9502;
  white-space: nowrap;
}

.p5-f-item-role-box {
  position: absolute;
  left: -15%;
  top: 72%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3889vw;
}

.p5-f-item-role {
  padding: 0.69vw;
  background: #eacd57;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1.3889vw;
  white-space: nowrap;
}

.p5-a {
  position: relative;
  width: 100%;
  height: 30.5556vw;
  overflow: hidden;
}

.p5-a-container {
  width: 100%;
  height: 100%;
}

.p5-a-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p5-a-box {
  position: absolute;
  top: 50%;
  right: 21.5972vw;
  transform: translateY(-50%);
}

.p5-a-title {
  font-family: "Aboreto", serif;
  font-weight: 400;
  font-size: 2.5vw;
  letter-spacing: 0.2vw;
  color: #000;
  text-shadow: 0 4px 4px rgba(255, 255, 255, 0.25);
}

.p5-a-deco {
  position: absolute;
  right: 2.92vw;
  bottom: 0;
  z-index: 1;
  width: 15.2083vw;
  height: auto;
}

/* --- sub-coco : フッター --- */
.sub-coco-footer {
  position: relative;
  width: 100%;
  background: #fff;
  overflow: hidden;
}

.sub-coco-footer-deco1 {
  position: absolute;
  left: -4vw;
  bottom: 0;
  width: 24.0972vw;
  height: auto;
  z-index: 0;
}

.sub-coco-footer-deco2 {
  position: absolute;
  right: 12.5vw;
  top: 3.06vw;
  width: 7.9861vw;
  height: auto;
}

.sub-coco-footer-box {
  position: relative;
  z-index: 1;
  width: 88.89vw;
  margin: 0 auto;
  padding: 7.29vw 0 3.47vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.9444vw;
}

.sub-coco-footer-teaser {
  position: relative;
  display: flex;
  align-items: center;
  width: 33.9583vw;
  height: 10.7639vw;
  overflow: visible;
  background: #fff;
  border: 1px solid #f5b2b2;
}

.sub-coco-footer-teaser-logo {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 10.9722vw;
  margin-left: 2.5vw;
}

.sub-coco-footer-teaser-photo {
  position: absolute;
  right: 0;
  top: 0;
  width: 18.6111vw;
  height: 100%;
  overflow: hidden;
}

.sub-coco-footer-teaser-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub-coco-footer-teaser-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent, #fff);
}

.sub-coco-footer-teaser-more {
  position: absolute;
  z-index: 2;
  right: 0.5vw;
  bottom: 0.7639vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 1.1111vw;
  letter-spacing: 0.0889vw;
  color: #D59684;
}

.sub-coco-footer-teaser-more img {
  width: 7.3958vw;
  height: auto;
}

.sub-coco-footer-logo {
  width: 17.9167vw;
  height: auto;
}

.sub-coco-footer-tel {
  display: flex;
  align-items: center;
  gap: 0.6944vw;
  background: #d8c57a;
  color: #fff;
  font-family: "Aboreto", serif;
  font-size: 1.3889vw;
  letter-spacing: 0.1111vw;
  padding: 1.2944vw 0.3889vw;
  white-space: nowrap;
}

.sub-coco-footer-tel-icon {
  width: 0.9vw;
  height: 0.9vw;
}

.sub-coco-footer-menu-box {
  display: flex;
  align-items: center;
  gap: 2vw;
}

.sub-coco-footer-nav ul {
  display: flex;
  gap: 2.7778vw;
}

.sub-coco-footer-nav a {
  position: relative;
  display: inline-block;
  font-family: "Aboreto", serif;
  font-size: 1.3889vw;
  color: #000;
  padding-bottom: 0.4167vw;
}

.sub-coco-footer-links-box {
  display: flex;
  align-items: center;
  gap: 1.1111vw;
}

.sub-coco-footer-insta img {
  width: 1.9444vw;
  height: auto;
}

.sub-coco-footer-line img {
  width: 2.1528vw;
  height: auto;
}

.sub-coco-footer-hotpepper img {
  width: 10.5556vw;
  height: auto;
}

.sub-coco-footer-top {
  position: fixed;
  right: 2vw;
  bottom: 2vw;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.2361vw;
  height: 4.2361vw;
  border-radius: 50%;
  background: #927500;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
}

.sub-coco-footer-top.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sub-coco-footer-top span {
  display: block;
  width: 0.8vw;
  height: 0.8vw;
  border-top: 0.15vw solid #fff;
  border-left: 0.15vw solid #fff;
  transform: rotate(45deg);
  margin-top: 0.3vw;
}

.sub-coco-footer-copy {
  width: 100%;
  padding: 0.9vw 0;
  background: #303030;
  text-align: center;
  font-family: "Kaisei Opti", serif;
  font-size: 0.8333vw;
  letter-spacing: 0.0667vw;
  color: #fff;
}

@media screen and (max-width: 767px) {

  /* 全体 */
  #header,
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  /* ヘッダー */
  .sp-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 16vw;
    background-color: #fff;
    z-index: 9999;
    display: block;
  }

  .sp-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 4vw;
  }

  .sp-header-logo img {
    height: 8vw;
    width: auto;
  }

  /* ハンバーガーボタン */
  .sp-menu-btn {
    position: relative;
    width: 10.6667vw;
    height: 10.6667vw;
    background-color: #000;
    border: none;
    z-index: 1000;
  }

  .sp-header.is-ah .sp-menu-btn {
    background-color: #d59684;
  }

  .sp-header.is-coco .sp-menu-btn {
    background-color: #ba9502;
  }

  .sp-menu-btn span {
    position: absolute;
    left: 2vw;
    width: 6.6667vw;
    height: 1.0667vw;
    background-color: #fff;
    transition: 0.3s;
  }

  .sp-menu-btn span:nth-child(1) {
    top: 2.6667vw;
  }

  .sp-menu-btn span:nth-child(2) {
    top: 4.8vw;
  }

  .sp-menu-btn span:nth-child(3) {
    top: 6.9333vw;
  }

  .sp-menu-btn.is-active span:nth-child(1) {
    top: 4.8vw;
    transform: rotate(45deg);
  }

  .sp-menu-btn.is-active span:nth-child(2) {
    opacity: 0;
  }

  .sp-menu-btn.is-active span:nth-child(3) {
    top: 4.8vw;
    transform: rotate(-45deg);
  }

  /* 全画面メニュー */
  .sp-header-nav {
    position: fixed;
    top: 0;
    right: -68vw;
    width: 68vw;
    height: 100vh;
    background-color: #fff;
    transition: 0.4s;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  .sp-header-nav.is-active {
    right: 0;
  }

  .sp-nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sp-nav-list li {
    margin: 6.6667vw 0;
  }

  .sp-nav-list li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #d59684;
    text-decoration: none;
    font-size: 4.2667vw;
  }

  .sp-nav-list li a .first-span {
    font-size: 5.8667vw;
  }

  .sp-header.is-coco .sp-nav-list li a {
    color: #ba9502;
  }

  /* p1-a：トップ選択画面 */
  .p1-a {
    height: auto;
    padding: 10.6667vw 0;
  }

  .p1-a-container img {
    object-fit: cover;
  }

  .p1-a-box {
    position: static;
    transform: none;
    flex-direction: column;
    align-items: center;
    gap: 8vw;
    padding: 0 5.3333vw;
  }

  .p1-a-item {
    width: 88.89vw;
    height: 71.7867vw;
  }

  .p1-a-item.is-pink .p1-a-logo {
    left: 21.8462vw;
    top: 19.3011vw;
    width: 45.2114vw;
    height: 22.6772vw;
  }

  .p1-a-item.is-black .p1-a-logo {
    left: 18.4533vw;
    top: 2.8797vw;
    width: 51.9886vw;
    height: 51.9886vw;
  }

  .p1-a-btn {
    left: 12.0163vw;
    top: 46.0533vw;
    width: 64.6764vw;
    height: 11.5093vw;
    gap: 5.4667vw;
    padding: 1.6907vw 1.6907vw 1.6907vw 9.6604vw;
  }

  .p1-a-text {
    font-size: 4vw;
  }

  .p1-a-arrow {
    border-top-width: 1.8vw;
    border-bottom-width: 1.8vw;
    border-left-width: 2.0667vw;
  }

  /* sub-ah / p2：arp hills ページ */
  .sub-ah-header {
    display: none;
  }

  .sub-ah-footer-box {
    padding: 8vw 5.3333vw;
    gap: 6vw;
  }

  .sub-ah-footer-tel {
    font-size: 4.8vw;
    gap: 2vw;
    padding: 2.5vw 5vw;
  }

  .sub-ah-footer-tel-icon {
    width: 3vw;
    height: 3vw;
  }

  .sub-ah-footer-logo {
    width: 26vw;
  }

  .sub-ah-footer-teaser {
    width: 80vw;
    height: 32vw;
  }

  .sub-ah-footer-teaser-logo {
    width: 45vw;
    margin-left: 4vw;
  }

  .sub-ah-footer-teaser-photo {
    width: 37.3vw;
    height: 31.6vw;
    top: 0;
  }

  .sub-ah-footer-teaser-more {
    right: 2vw;
    bottom: 2vw;
    font-size: 3.5vw;
  }

  .sub-ah-footer-teaser-more img {
    width: 20vw;
  }

  .sub-ah-footer-menu-box {
    flex-direction: column;
    gap: 6vw;
  }

  .sub-ah-footer-nav ul {
    gap: 8vw;
  }

  .sub-ah-footer-nav a {
    font-size: 4.5vw;
  }

  .sub-ah-footer-links-box {
    gap: 6vw;
  }

  .sub-ah-footer-insta img {
    width: 8vw;
  }

  .sub-ah-footer-hotpepper img {
    width: 24vw;
  }

  .sub-ah-footer-epark img {
    width: 26vw;
  }

  .sub-ah-footer-copy {
    font-size: 3vw;
    text-align: center;
    padding: 0 5vw;
  }

  .sub-ah-fixed {
    display: none;
  }

  body.is-arphills {
    padding-bottom: 19.7333vw;
  }

  .sub-ah-bottom-bar {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 999;
    display: flex;
    align-items: stretch;
    width: 100%;
    height: 19.7333vw;
    background: #f5b2b2;
  }

  .sub-ah-bottom-bar-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8vw;
  }

  .sub-ah-bottom-bar-item+.sub-ah-bottom-bar-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.2667vw;
    height: 13.3333vw;
    background: #fff;
  }

  .sub-ah-bottom-bar-item.is-insta {
    width: 28.2667vw;
  }

  .sub-ah-bottom-bar-item.is-hotpepper {
    width: 42.1333vw;
  }

  .sub-ah-bottom-bar-item.is-tel {
    width: 29.6vw;
  }

  .sub-ah-bottom-bar-item.is-insta img {
    width: 7.4667vw;
    height: 7.4667vw;
  }

  .sub-ah-bottom-bar-item.is-hotpepper img {
    width: 26.4vw;
    height: 8.2667vw;
  }

  .sub-ah-bottom-bar-item.is-hotpepper span {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-size: 4.2667vw;
    color: #9f1547;
    letter-spacing: 0.3413vw;
  }

  .sub-ah-bottom-bar-item.is-tel img {
    width: 5.8667vw;
    height: 5.8667vw;
  }

  .sub-ah-bottom-bar-item.is-tel span {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-size: 5.3333vw;
    color: #fff;
    letter-spacing: 0.4267vw;
  }

  .p2-a-title,
  .p2-b-title,
  .p2-c-title,
  .p2-d-title,
  .p2-e-title,
  .p2-f-title,
  .p2-g-title,
  .p2-h-title,
  .p2-i-title,
  .p2-j-title {
    font-size: 7.5vw;
    letter-spacing: 0.3vw;
  }

  .p2-a {
    height: 173.8667vw;
    margin-top: 16vw;
  }

  .p2-a-box {
    position: absolute;
    left: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    height: auto;
    padding: 6vw 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6vw;
    background: rgba(245, 178, 178, 0.73);
  }

  .p2-a-catch {
    writing-mode: horizontal-tb;
    flex-direction: column;
    text-align: center;
    gap: 1vw;
    font-size: 5vw;
    width: 100%;
  }

  .p2-a-logo {
    width: 26vw;
  }

  .p2-title-box {
    gap: 5.3333vw;
    margin-bottom: 6vw;
  }

  .p2-title-dots {
    gap: 1.9556vw;
  }

  .p2-title-dots span {
    width: 1.3333vw;
    height: 1.3333vw;
  }

  .p2-b-lead {
    font-size: 4.5vw;
    margin-bottom: 8vw;
  }

  .p2-b-item {
    flex-direction: column;
    gap: 6vw;
    margin-bottom: 10vw;
  }

  .p2-b-item.is-reverse {
    flex-direction: column-reverse;
    gap: 6vw;
    margin-bottom: 10vw;
  }

  .p2-b-text {
    width: 100%;
    text-align: center;
    font-size: 4vw;
  }

  .p2-b-text.p2-b-text2 {
    width: 100%;
  }

  .p2-b-img {
    width: 100%;
    height: auto;
  }

  .p2-b-img.p2-b-img {
    width: 100%;
    height: auto;
  }

  .p2-c-box {
    width: 100%;
  }

  .p2-c-list {
    flex-direction: column;
    align-items: center;
    gap: 2.1333vw;
    margin-bottom: 4.74vw;
  }

  .p2-c-list .p2-c-item {
    flex: none;
    width: 49.0667vw;
  }

  .p2-c-list.is-row2 {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2.1333vw;
    column-gap: 2.9333vw;
  }

  .p2-c-list.is-row2 .p2-c-item {
    flex: 1;
    width: auto;
  }

  .p2-c-img {
    height: 36vw;
  }

  .p2-c-list.is-row2 .p2-c-img {
    height: 32.5333vw;
  }

  .p2-d {
    background-image: url(../image/sp-back1.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 38.4vw;
  }

  .p2-d-list {
    flex-wrap: wrap;
    gap: 3vw;
  }

  .p2-d-item {
    width: 44vw;
    height: 30vw;
  }

  .p2-d-name {
    height: 16.5333vw;
    font-size: 4vw;
  }

  .p2-e-lead {
    font-size: 4vw;
  }

  .p2-e-list {
    gap: 2.0417vw;
  }

  .p2-e-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 2vw;
    padding: 5vw;
  }

  .p2-e-meta-box {
    width: auto;
    gap: 1.5vw;
  }

  .p2-e-date {
    font-size: 3.5vw;
  }

  .p2-e-name {
    font-size: 4.2vw;
  }

  .p2-e-text {
    width: 100%;
    font-size: 3.7vw;
    white-space: normal;
  }

  .p2-f-icon {
    width: 10vw;
  }

  .p2-g-btn {
    width: auto;
    padding: 3vw 8vw;
  }

  .p2-g-text {
    font-size: 4.5vw;
  }

  .p2-g-text::after {
    width: 100%;
  }

  .p2-g-img {
    width: 60vw;
  }

  .p2-h-list {
    flex-direction: column;
    gap: 4vw;
  }

  .p2-h-item {
    width: 100%;
  }

  .p2-i {
    background-color: #fff;
    background-image: url(../image/sp-back2.png);
    background-repeat: no-repeat;
    background-size: cover;
  }

  .p2-i-box {
    width: 89.3333vw;
  }

  .p2-i-week {
    display: inline;
    width: auto;
  }

  .p2-i-text p {
    font-size: 4.2667vw;
  }

  .p2-i-table {
    font-size: 4.2667vw;
  }

  .p2-i-table th {
    width: 23vw;
    padding: 4vw 2vw 4vw 0;
    border-bottom-width: 0.5333vw;
  }

  .p2-i-table td {
    padding: 4vw 0;
    border-bottom-width: 0.5333vw;
  }

  .sub-round-btn {
    display: flex;
    justify-content: center;
    margin: 14.13vw 0 10.6667vw;
  }

  .sub-round-btn-link {
    display: inline-flex;
    align-items: center;
    gap: 11.7333vw;
    background-color: #fff;
    border: 0.5333vw solid #d59684;
    border-radius: 9.3333vw;
    padding: 2.6667vw 2.6667vw 2.6667vw 17.6vw;
  }

  .sub-round-btn-text {
    font-family: "Kaisei Opti", serif;
    font-size: 5.3333vw;
    color: #d59684;
    letter-spacing: 0.32vw;
    white-space: nowrap;
  }

  .sub-round-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.7333vw;
    height: 3.7333vw;
  }

  .sub-round-btn-icon img {
    width: 2.1067vw;
    height: 2.7227vw;
  }

  .p2-j-text {
    width: 100%;
    font-size: 3.8vw;
  }

  .p2-j-text2 {
    font-size: 4.5vw;
  }

  .p2-j-img {
    height: 80vw;
  }

  /* お知らせ内容 1100で可変 */
  .single-container {
    width: 100%;
    padding: 40px 0;
  }

  .single-box {
    width: 94%;
    margin: 0 auto;
  }

  .single-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
  }

  .single-img {
    width: 100%;
    max-width: 400px;
    margin-bottom: 30px;
  }

  .single-img img {
    width: 100%;
    height: auto;
    display: block;
  }

  .single-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
  }

  .single-content img {
    max-width: 100%;
    height: auto;
  }

  .p3-view-container {
    margin: 16vw 4vw 0;
    width: auto;
    height: 60vw;
  }

  .p3-view-title {
    left: 6vw;
    top: 50%;
    transform: translateY(-50%);
    font-size: 7vw;
    letter-spacing: 0.4vw;
  }

  .p3-cat {
    margin-bottom: 10vw;
  }

  .p3-cat:last-child {
    padding-bottom: 26.6667vw;
  }

  img.p3-view-deco {
    width: 40vw;
    height: 30vw;
  }

  .p3-staff {
    padding: 12vw 0 20vw;
  }

  .p3-staff-title {
    font-size: 7vw;
  }

  .p3-staff-line {
    height: 6vw;
  }

  .p3-staff-box {
    margin-top: 10vw;
    flex-direction: column;
    align-items: center;
    gap: 4vw;
  }

  .p3-staff-item {
    width: 80vw;
  }

  .p3-staff-item-name {
    font-size: 10vw;
  }

  .p3-staff-item-name span {
    font-size: 4.5vw;
  }

  .p3-staff-item-comment,
  .p3-staff-item-role {
    font-size: 3.5vw;
  }

  .p3-staff-item-role {
    width: 61vw;
    height: 13vw;
  }

  .p3-cat-banner {
    height: 79.7333vw;
  }

  .p3-cat-banner::after {
    inset: 1.6944vw;
  }

  .p3-cat-banner-box {
    gap: 4vw;
    padding: 0 6vw;
  }

  .p3-cat-title {
    font-size: 12vw;
    letter-spacing: 0.4vw;
  }

  .p3-cat-lead p {
    font-size: 3.4vw;
  }

  .p3-cat-more {
    font-size: 5.5vw;
    gap: 2.67vw;
  }

  .p3-cat-more img {
    width: 1.1vw;
    height: auto;
    margin-top: 2.13vw;
  }

  .p3-cat-box {
    width: 89.3333vw;
    margin-top: 8vw;
    gap: 8vw;
  }

  .p3-cat-sub {
    gap: 1vw;
  }

  .p3-cat-sub-head,
  .p3-cat-sub-head.is-reverse {
    flex-direction: column;
    gap: 4vw;
    /* margin-bottom: 6.9333vw; */
  }

  .p3-cat-sub-img {
    width: 100%;
    height: 50vw;
  }

  .p3-cat-sub-title,
  .p3-cat-sub-title-line {
    font-size: 6vw;
  }

  .p3-cat-sub-desc {
    font-size: 3.5vw;
    margin-bottom: 6.9333vw;
  }

  .p3-cat-sub-note {
    font-size: 3.5vw;
  }

  .p3-cat-feature {
    flex-direction: column;
    gap: 4vw;
    /* margin-bottom: 8vw; */
  }

  .p3-cat-feature.is-reverse {
    flex-direction: column;
  }

  .p3-cat-feature-img {
    width: 100%;
    height: 50vw;
  }

  .p3-cat-feature-title {
    font-size: 5vw;
  }

  .p3-cat-feature-lead {
    font-size: 4vw;
  }

  .p3-cat-attention-text {
    font-size: 3.7vw;
  }

  .is-epilation .p3-cat-sub-desc strong {
    font-size: 4vw;
  }

  .p3-cat-table-box {
    padding: 8vw 4vw;
  }

  .p3-cat-table th,
  .p3-cat-table td {
    font-size: 3.7vw;
    padding: 2.5vw 0;
  }

  .p3-cat-table th {
    width: 160px;
    padding-right: 20px;
  }

  .p3-cat-name::after {
    display: none;
  }

  .p3-cat-note,
  .p3-cat-table-note {
    font-size: 3.2vw;
  }

  /* sub-coco / p4：COCO＆Nail ページ */
  .sub-coco-header {
    display: none;
  }

  .sp-header.is-coco {
    background-color: #fff;
  }

  .sp-header.is-coco-top {
    position: fixed;
    background-color: transparent;
    height: 24vw;
  }

  .sp-header.is-coco-top .sp-header-logo img {
    height: 24.8vw;
  }

  .sp-header.is-coco-top .sp-menu-btn {
    width: 13.33vw;
    height: 13.33vw;
    background-color: #303030;
  }

  .sp-header.is-coco-top .sp-menu-btn span {
    width: 6.67vw;
    height: 0.53vw;
    left: 3.3vw;
  }

  .sp-header.is-coco-top .sp-menu-btn span:nth-child(1) {
    top: 3.7333vw;
  }

  .sp-header.is-coco-top .sp-menu-btn span:nth-child(2) {
    top: 6.4vw;
  }

  .sp-header.is-coco-top .sp-menu-btn span:nth-child(3) {
    top: 9.0667vw;
  }

  .sp-header.is-coco-top .sp-menu-btn.is-active span:nth-child(1),
  .sp-header.is-coco-top .sp-menu-btn.is-active span:nth-child(3) {
    top: 6.4vw;
  }

  .p4-main {
    margin-top: 0;
  }

  .p4-title {
    font-size: 8vw;
  }

  .p4-title-deco {
    width: 16vw;
  }

  .p4-a {
    height: 196.8vw;
    margin-top: 0;
  }

  body.is-coco-top {
    margin-bottom: 19.7333vw;
  }

  .p4-a-tools {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 8.7vw;
    height: 19.7333vw;
    background: #cdbc79;
  }

  .p4-a-tools-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8vw;
  }

  .p4-a-tools-item img {
    width: 7.4667vw;
    height: 7.4667vw;
  }

  .p4-a-tools-reserve img {
    width: 26.4vw;
    height: 8.2667vw;
  }

  .p4-a-tools-reserve span {
    font-family: "Zen Old Mincho", serif;
    font-weight: 500;
    font-size: 4.2667vw;
    letter-spacing: 0.3413vw;
    color: #9f1547;
  }

  .p4-a-tools-tel-icon {
    width: 5.3333vw;
    height: 5.3333vw;
  }

  .p4-a-tools-tel span {
    font-family: "Aboreto", serif;
    font-size: 5.3333vw;
    letter-spacing: 0.4267vw;
    color: #fff;
  }

  .p4-a-tools-line {
    width: 1px;
    height: 13.3333vw;
    background: #fff;
  }

  .p4-a-box {
    right: auto;
    left: 5%;
    top: auto;
    bottom: 6vw;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 3vw;
  }

  .p4-a-catch-label {
    writing-mode: horizontal-tb;
    font-size: 3.5vw;
    padding: 1.5vw 3vw;
  }

  .p4-a-catch-main {
    writing-mode: horizontal-tb;
    font-size: 6vw;
  }

  .p4-a-deco {
    width: 30vw;
    right: 4vw;
  }

  .p4-b {
    background-image: url(../image/sp-back3.png);
    padding-top: 26.67vw;
  }

  .p4-b-item {
    flex-direction: column;
    gap: 8vw;
  }

  .p4-b-text-box {
    gap: 5vw;
  }

  .p4-b-text,
  .p4-b-text.p4-b-text2 {
    width: 100%;
    font-size: 3.7vw;
  }

  .p4-b-img-box {
    width: 100%;
  }

  .p4-b-img {
    height: 60vw;
  }

  .p4-b-deco {
    width: 30vw;
  }

  .p4-c {
    padding: 13.33vw 0;
  }

  .p4-c-list {
    flex-direction: column;
    align-items: center;
    gap: 4vw;
  }

  .p4-c-item {
    width: 60.53vw;
    height: 45.6vw;
  }

  .p4-c-name {
    font-size: 8vw;
  }

  .p4-c-deco {
    width: 40vw;
    bottom: -13vw;
  }

  .p4-d {
    padding: 13.33vw 0;
  }

  .p4-title-box {
    margin-bottom: 7.2vw;
  }

  .p4-d-item {
    flex-direction: column-reverse;
    gap: 34.67vw;
  }

  .p4-d-photos,
  .p4-d-text {
    width: 100%;
  }

  .p4-d-photos {
    height: 70vw;
  }

  .p4-d-img1 {
    width: 100%;
    height: 32vw;
  }

  .p4-d-img2,
  .p4-d-img3 {
    width: 43vw;
    height: 35vw;
  }

  .p4-d-text {
    font-size: 3.7vw;
  }

  .p4-d-btn {
    width: 70.6667vw;
    padding: 2.6667vw;
    font-size: 5.3333vw;
    letter-spacing: 0.3733vw;
    line-height: 1.85;
    margin: 7.2vw auto 0;
  }

  .p4-d-btn-arrow {
    right: 5.4667vw;
    width: 11.6vw;
  }

  .p4-d-deco {
    width: 40vw;
    bottom: 54vw;
  }

  .p4-f-title-box {
    gap: 3vw;
  }

  .p4-f-title-line {
    width: 20vw;
  }

  .p4-f-btn {
    width: 100%;
    padding: 1.5vw;
  }

  .p4-f-btn-inner {
    padding: 6vw;
  }

  .p4-f-btn-line {
    width: 50vw;
  }

  .p4-f-btn-img {
    width: 45vw;
  }

  .p4-f-btn-text {
    font-size: 4vw;
  }

  .p4-g {
    padding: 12.8vw 0 32vw;
  }

  .p4-g-box {
    width: 88.89vw;
  }

  .p4-g-table {
    font-size: 3.7vw;
    margin-top: 10.67vw;
  }

  .p4-g-table th,
  .p4-g-table td {
    padding: 4vw 0;
  }

  .p4-g-table-label {
    display: inline;
    width: auto;
  }

  .p4-g-deco1 {
    left: -2.67vw;
    top: 7.73vw;
    width: 23.2vw;
  }

  .p4-g-deco2 {
    right: 0;
    bottom: -28vw;
    width: 21.33vw;
  }

  .p4-h-map {
    height: 80vw;
  }

  .sub-coco-footer-deco1,
  .sub-coco-footer-deco2 {
    display: none;
  }

  .sub-coco-footer-box {
    padding: 12vw 5vw 8vw;
    gap: 6vw;
  }

  .sub-coco-footer-logo {
    width: 45vw;
  }

  .sub-coco-footer-tel {
    gap: 0.8vw;
    padding: 2.6667vw;
    font-size: 6.4vw;
    letter-spacing: 0.512vw;
  }

  .sub-coco-footer-tel-icon {
    width: 4.5333vw;
    height: 4.5333vw;
  }

  .sub-coco-footer-teaser {
    width: 90.1333vw;
    height: 41.3333vw;
  }

  .sub-coco-footer-teaser-logo {
    width: 29.1167vw;
    margin-left: 6.6347vw;
  }

  .sub-coco-footer-teaser-photo {
    width: 49.44vw;
  }

  .sub-coco-footer-teaser-more {
    right: 1.328vw;
    bottom: 2.0267vw;
    font-size: 4.27vw;
    letter-spacing: 0.236vw;
  }

  .sub-coco-footer-teaser-more img {
    width: 28.27vw;
  }

  .sub-coco-footer-menu-box {
    flex-direction: column;
    gap: 6vw;
  }

  .sub-coco-footer-nav ul {
    gap: 8vw;
  }

  .sub-coco-footer-nav a {
    font-size: 4.5vw;
  }

  .sub-coco-footer-links-box {
    gap: 6vw;
  }

  .sub-coco-footer-insta img {
    width: 8vw;
  }

  .sub-coco-footer-line img {
    width: 9vw;
  }

  .sub-coco-footer-hotpepper img {
    width: 36vw;
  }

  .sub-coco-footer-top {
    width: 14vw;
    height: 14vw;
  }

  .sub-coco-footer-top span {
    width: 2.5vw;
    height: 2.5vw;
  }

  .sub-coco-footer-copy {
    font-size: 3vw;
    padding: 3vw 5vw;
  }

  /* sub-coco / p5- : cocoメニューページ */
  .p5-main {
    margin-top: 0;
  }

  .p5-a {
    height: 60vw;
  }

  .p5-a-box {
    right: 26vw;
  }

  .p5-a-title {
    font-size: 7vw;
  }

  .p5-f-item {
    width: 80vw;
  }

  .p5-a-deco {
    width: 20vw;
  }

  .p5-f-list {
    width: 89.3333vw;
    grid-template-columns: 1fr;
    align-items: center;
    row-gap: 16vw;
    margin-top: 26.67vw;
  }

  .p5-f-item-ring {
    width: 100%;
  }

  .p5-f-item-info {
    gap: 0.6933vw;
  }

  .p5-f-item-name {
    font-size: 8vw;
  }

  .p5-f-item-name span {
    margin-left: 0.2933vw;
    font-size: 5.7067vw;
  }

  .p5-f-item-comment {
    font-size: 5.2vw;
  }

  .p5-f-item-role-box {
    left: -10%;
    gap: 0.4vw;
  }

  .p5-f-item-role {
    font-size: 3.7067vw;
    padding: 2vw 4vw;
  }

}