@charset "utf-8";
/* CSS Document */
/* ---------- サロンの特徴ブロック（cate4） ---------- */
.cate4 .point_wrap {
  display: flex;
  align-items: stretch;
  gap: clamp(20px, 3vw, 32px);
}
/* 各ボックス本体 */
.cate4 .point_box {
  width: 380px;
  background: #22282c;
  padding: clamp(28px, 3.2vw, 36px) clamp(24px, 3vw, 32px);
  box-sizing: border-box;
}
/* 丸アイコン（imgboxを利用） */
.cate4 .point_box .imgbox {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #9F8554;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto clamp(24px, 2.4vw, 28px);
}
.cate4 .point_box .imgbox img {
  width: 56px;
  height: auto;
  object-fit: contain;
  display: block;
}
/* テキスト部分 */
.cate4 .point_box .txtbox {
  text-align: left;
  color: #e6e0d4;
}
.cate4 .point_box .txtbox .default_title2 {
  text-align: center;
  line-height: 1.8;
  /* 余白はHTML側の mg-b-20px クラスで調整 */
}
.cate4 .point_box .txtbox .default_txt2 {
  line-height: 2;
}
/* スマホで縦並びに */
@media screen and (max-width: 768px) {
  .cate4 .point_box {
    width: 100%;
  }
}
.cate3 .flow_a1 .item {
  padding-bottom: 40px;
}
.cate3 .flow_a1 .col-num::before {
  bottom: 0px;
}
/* ---------- circle menu ---------- */
.circlemenu_wrap {
  width: 100%;
  padding: 80px 0px;
}
.circlemenu_inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(24px, 4vw, 40px);
}
/* 丸1つ分 */
.circle_item {
  width: clamp(200px, 22vw, 260px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
/* クリック範囲 */
.circle_item a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
}
/* 画像エリア（imgbox） */
.circle_item .imgbox {
  width: 100%;
  height: 100%;
}
.circle_item .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
/* テキストオーバーレイ（txtbox） */
.circle_item .txtbox {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: radial-gradient(circle at 50% 20%, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.9));
  transition: background .4s ease;
}
/* 英字（en_txt） */
.circle_item .txtbox .en_txt {
  margin: 0 0 6px;
  color: #f5efe4;
  letter-spacing: .18em;
}
/* 日本語（default_txt3） */
.circle_item .txtbox .default_txt3 {
  margin: 0;
  color: #f5efe4;
  letter-spacing: .16em;
}
/* PC時：下段を少し下げて段差をつける */
@media screen and (min-width: 900px) {
  .circle_item:nth-child(4), .circle_item:nth-child(5) {
    margin-top: clamp(16px, 2vw, 32px);
  }
}
/* ホバー演出 */
.circle_item a:hover .imgbox img {
  transform: scale(1.05);
}
.circle_item a:hover .txtbox {
  background: radial-gradient(circle at 50% 20%, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.85));
}
/* SP：余白だけ少し詰める */
@media screen and (max-width: 768px) {
  .circlemenu_inner {
    gap: 20px;
  }
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px) {}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px) {}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px) {}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px) {
   .cate3 .circlemenu_inner {
flex-direction:column;
    }}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px) {}