@charset "UTF-8";
.scrollanime {
  opacity: 0;
} /*一瞬表示されるのを防ぐ*/
.fadeInDown2 {
  animation-name: fadeInDown2;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes sub_main {
  0% {
    background-position: center top;
    opacity: 0;
  }
  100% {
    background-position: center bottom;
    opacity: 1;
  }
}
@keyframes fadeInDown2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
/*バウンドアニメーション*/
@keyframes fuwafuwa {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
/*上下の動きを指定*/
.updown {
  transform: translateY(-100px);
}

.downup {
  transform: translateY(100px);
}

/*左右の動きを指定*/
.sect02 {
  overflow: hidden;
} /*横スクロールバーを隠す*/
.slide-right {
  transform: translateX(200px);
}

.slide-left {
  transform: translateX(-200px);
}

.mb_10 {
  margin-bottom: 10px;
}

.mb_20 {
  margin-bottom: 20px;
}

.mb_30 {
  margin-bottom: 30px;
}

.mb_40 {
  margin-bottom: 40px;
}

.mb_50 {
  margin-bottom: 50px;
}

.m0a {
  margin: 0 auto;
}

.fw_b {
  font-weight: bold;
}

.pb_50 {
  padding-bottom: 50px;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.bold {
  font-weight: bold;
}

.flex_bw {
  display: flex;
  justify-content: space-between;
}

/*下層ページタイトル*/
#page-title {
  display: flex;
  padding-top: 80px;
}
#page-title h2 {
  width: clamp(300px, 35%, 760px);
  background-color: #90ce37;
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-size: clamp(26px, 3vw, 50px);
  text-align: center;
  line-height: 1.4;
  text-shadow: 1px 2px 2px #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 10px;
}
#page-title h2 span {
  color: #fff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "Noto Sans JP", "ＭＳ Ｐゴシック", "Helvetica Neue", sans-serif;
  font-size: clamp(14px, 1.8vw, 20px);
  display: block;
  text-align: center;
  text-shadow: 1px 2px 2px #ccc;
}
#page-title img {
  width: 65%;
  max-width: 1160px;
}
@media screen and (max-width: 1100px) {
  #page-title {
    padding-top: 70px;
  }
}
@media screen and (max-width: 767px) {
  #page-title {
    flex-direction: column;
    padding-top: 55px;
  }
  #page-title h2 {
    width: 100%;
    padding: 10px;
  }
  #page-title img {
    width: 100%;
  }
}

.bread {
  margin: 5px 10px;
}
.bread li a {
  transition: 0.5s;
}
.bread li a:hover {
  color: #90ce37;
}

.h2-gold {
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-size: clamp(25px, 2.8vw, 35px);
  text-align: center;
  margin: 0 auto 40px auto;
  line-height: 1.3;
  position: relative;
}
.h2-gold:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #D8BE7D;
  position: absolute;
  left: 0;
  bottom: -10px;
}
.h2-gold:after {
  content: "";
  width: 180px;
  height: 5px;
  background: linear-gradient(to right, #896B1F, #DBC774, #896B1F);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
}
.h2-gold span {
  color: #896B1F;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "Noto Sans JP", "ＭＳ Ｐゴシック", "Helvetica Neue", sans-serif;
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 500;
  display: block;
  text-align: center;
  padding: 5px;
}

.text-serif {
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  text-align: center;
  margin-bottom: 30px;
}

/* Facial */
.belle-intro {
  align-items: flex-start;
  gap: 40px;
  width: 95%;
  margin: 0 auto;
}
.belle-intro .list-green {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 55%;
}
.belle-intro .list-green li {
  text-align: center;
  background-color: #D5F5A6;
  border-radius: 5px;
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-size: clamp(14px, 1.8vw, 18px);
  padding: 8px 20px;
}
.belle-intro img {
  width: 40%;
  min-width: 350px;
}
@media screen and (max-width: 767px) {
  .belle-intro {
    flex-direction: column;
    gap: 20px;
  }
  .belle-intro .list-green {
    width: 100%;
  }
  .belle-intro img {
    width: 100%;
    min-width: auto;
  }
}

.b-shadow {
  box-shadow: 2px 2px 5px #ccc;
}

.course-green {
  position: relative;
  padding: 12px 20px 12px 20px;
  background-color: #90ce37;
  color: #333;
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-weight: bold;
  font-size: clamp(16px, 1.8vw, 22px);
  text-align: center;
  text-shadow: 1px 1px 2px #fff;
  overflow: hidden;
  margin: 0 auto 20px auto;
}
.course-green:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 7px;
  height: 100%;
  background: linear-gradient(#896B1F, #DBC774, #896B1F);
}

.course-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.course-flow {
  margin: 0 auto 30px auto;
  text-align: center;
  padding-right: 25px;
  overflow: hidden;
}
.course-flow li {
  display: inline-block;
  position: relative;
  background: linear-gradient(-90deg, #D8BE7D, #FCFCFC);
  padding: 12px 15px 10px 25px;
  color: #000;
  margin: 0 0 5px 0;
  font-size: 14px;
}
.course-flow li:before {
  top: 0;
  right: -24px;
  border-style: solid;
  border-color: transparent transparent transparent #FCFCFC;
  border-width: 22px 0 22px 20px;
  z-index: 10;
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin: auto;
}
.course-flow li:after {
  top: 0px;
  right: -19px;
  border-color: transparent transparent transparent #D8BE7D;
  border-width: 22px 0 22px 20px;
  z-index: 10;
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin: auto;
}
.course-flow li:last-child:after {
  display: none;
}

.mb_5 {
  margin-bottom: 5px;
}

.facial-course {
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
}
.facial-course .flex-inner-right {
  width: clamp(350px, 55%, 450px);
}
.facial-course .flex-inner-right .price {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #D8BE7D;
  padding: 10px 10px 8px 10px;
}
.facial-course .flex-inner-right .price:first-of-type {
  padding-top: 0;
}
.facial-course .flex-inner-right .small-text {
  text-align: right;
  font-size: 12px;
}
.facial-course .flex-inner-right .price-option {
  display: flex;
  align-items: center;
  border: 1px solid #D8BE7D;
  margin-top: 10px;
  align-items: stretch;
}
.facial-course .flex-inner-right .price-option dt {
  background-color: #D8BE7D;
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  padding: 10px;
}
.facial-course .flex-inner-right .price-option dd {
  line-height: 1.4;
  padding: 0 10px;
  font-size: 13px;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 767px) {
  .facial-course {
    flex-direction: column;
  }
  .facial-course .flex-inner-right {
    width: 100%;
  }
  .facial-course .flex-inner-right .price {
    justify-content: space-around;
  }
}

.detail-ion {
  background-color: #F1EBDF;
  padding: 30px;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 60px;
}
.detail-ion .flex-inner-left {
  width: 50%;
}
.detail-ion .flex-inner-left h3 {
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  position: relative;
  padding-left: 15px;
  margin-bottom: 15px;
  font-size: clamp(17px, 2.2vw, 21px);
}
.detail-ion .flex-inner-left h3:before {
  position: absolute;
  content: "";
  width: 3px;
  height: 100%;
  background-color: #D8BE7D;
  left: 0;
  top: 0;
}
.detail-ion .flex-inner-left .gold-box {
  border: 1px solid #BBB39F;
  padding: 10px;
  font-size: 14px;
}
.detail-ion .flex-inner-right {
  position: relative;
}
.detail-ion .flex-inner-right img {
  border-radius: 5px;
  width: 100%;
  max-width: 373px;
}
.detail-ion .flex-inner-right:before {
  content: "オプションパック";
  left: 10px;
  top: 10px;
  font-size: 12px;
  position: absolute;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .detail-ion {
    flex-direction: column;
    gap: 20px;
  }
  .detail-ion .flex-inner-left {
    width: 100%;
  }
  .detail-ion .flex-inner-right {
    width: 100%;
    text-align: center;
  }
  .detail-ion .flex-inner-right:before {
    content: "オプションパック";
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: 10px;
    font-size: 12px;
    position: absolute;
    z-index: 10;
  }
}

.menu-movie .movie-box {
  background-color: #FCF6EB;
  padding: 3.5vw;
  height: 500px;
}
@media screen and (max-width: 767px) {
  .menu-movie .movie-box {
    height: auto;
  }
}

/* Bridal */
.text-green {
  color: #90ce37;
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}

.text-serif-l {
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-size: clamp(16px, 2.1vw, 24px);
}

@media screen and (max-width: 767px) {
  .text-green {
    margin-bottom: 20px;
  }
}
.text-serif-m {
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
}

.menu-box {
  display: flex;
  gap: 20px;
  width: 90%;
  margin: 0 auto 60px auto;
}
.menu-box .bridal-menu {
  display: flex;
  width: 50%;
}
.menu-box .bridal-menu dt {
  width: 35%;
  background-color: #D8BE7D;
  border: 1px solid #D8BE7D;
  padding: 6px 10px 5px;
  text-align: center;
  display: grid;
  place-items: center;
}
.menu-box .bridal-menu dd {
  width: 65%;
  border: 1px solid #D8BE7D;
  padding: 6px 10px 5px;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 600px) {
  .menu-box {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }
  .menu-box .bridal-menu {
    width: 100%;
  }
}

.bridal-option .option-inner {
  background-color: #F1EBDF;
  width: 97%;
  max-width: 1000px;
  padding: 30px;
  text-align: center;
  margin: 0 auto;
}
.bridal-option .option-inner .option-back {
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-size: clamp(18px, 2.1vw, 22px);
  font-weight: bold;
  margin: 0 auto 25px auto;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.bridal-option .option-inner .option-back span {
  border: 1px solid #9C8032;
  padding: 7px 10px;
  font-weight: bold;
  font-size: clamp(16px, 2.1vw, 18px);
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "Noto Sans JP", "ＭＳ Ｐゴシック", "Helvetica Neue", sans-serif;
}

.h3-gold {
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-size: clamp(18px, 2.1vw, 22px);
  color: #896B1F;
  font-weight: bold;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center; /* 垂直方向に中央揃え */
  justify-content: center; /* 水平方向に中央揃え */
  padding: 0 0 10px 0; /* 上下の余白を設定 */
  position: relative;
}
.h3-gold::before, .h3-gold::after {
  content: ""; /* 空の内容を挿入 */
  flex: 1; /* 残りのスペースを均等に埋める */
  height: 1px; /* 線の高さ */
  background-color: #896B1F; /* 線の色 */
}
.h3-gold::before {
  margin-right: 10px; /* テキストとの間にスペース */
}
.h3-gold::after {
  margin-left: 10px; /* テキストとの間にスペース */
}

.moniter-box {
  align-items: stretch;
  gap: 30px;
}
.moniter-box .moniter {
  background-color: #D5F5A6;
  border-radius: 30px;
  width: 50%;
  max-width: 505px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px;
}
.moniter-box .moniter .moniter-name {
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-size: clamp(18px, 2.1vw, 22px);
  font-weight: bold;
  color: #896B1F;
}
@media screen and (max-width: 767px) {
  .moniter-box {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .moniter-box .moniter {
    width: 100%;
    border-radius: 20px;
    padding: 20px;
  }
}

.banner-box {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto 60px auto;
}

/* Eyelash */
.text-serif-green {
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 30px;
  background-color: #D5F5A6;
  border-radius: 5px;
  padding: 7px 10px;
  text-align: center;
}

.belle-intro {
  margin-bottom: 40px;
}
.belle-intro .eyelash-item {
  display: flex;
  margin-bottom: 20px;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.belle-intro .eyelash-item dt {
  width: 101px;
}
.belle-intro .eyelash-item dt img {
  width: 101px;
  min-width: 101px;
}
.belle-intro .eyelash-item dd {
  width: calc(100% - 101px);
  margin: 0;
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
}
@media screen and (max-width: 767px) {
  .belle-intro .intro-left {
    width: 100%;
    margin-bottom: 0;
  }
}

.eyelash-banner {
  display: flex;
  border: 1px solid #896B1F;
  border-radius: 30px;
}
.eyelash-banner dt {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  background-color: #F1EBDF;
  padding: 30px 20px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  width: 35%;
}
.eyelash-banner dt .eyelash-recommend {
  text-align: center;
}
.eyelash-banner dt .eyelash-recommend span {
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-size: clamp(18px, 2.1vw, 26px);
  color: #896B1F;
  font-weight: bold;
  display: block;
}
.eyelash-banner dd {
  width: 60%;
  padding: 30px 20px;
}
.eyelash-banner dd .text-serif-l {
  color: #90ce37;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .eyelash-banner {
    flex-direction: column;
  }
  .eyelash-banner dt {
    width: 100%;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 0;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    padding: 20px;
  }
  .eyelash-banner dd {
    width: 100%;
  }
}

.qa-list {
  width: 97%;
  max-width: 1000px;
  margin: 0 auto;
}
.qa-list li {
  margin-bottom: 30px;
  background-color: #F1EBDF;
  padding: 30px 20px;
}
.qa-list li h3 {
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-size: clamp(16px, 2vw, 21px);
  margin-bottom: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}
.qa-list li h3 span {
  font-size: 35px;
  background-color: #fff;
  border-radius: 50%;
  color: #896B1F;
  width: 57px;
  height: 57px;
  display: grid;
  place-items: center;
  min-width: 57px;
}

/* Cavitation */
.img-box1 {
  text-align: center;
}
.img-box1 img {
  box-shadow: 0 3px 6px #999;
}

/* air */
.img-box3 {
  display: flex;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

/* Super Celum */
.celum-title {
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-size: clamp(18px, 2.1vw, 26px);
  color: #896B1F;
  font-weight: bold;
  text-align: center;
  background-image: url(../img/page/celum/celum2.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  height: 75px;
  padding: 0 15px;
  line-height: 75px;
  margin-bottom: 30px;
}

.celum-flex {
  width: 100%;
  max-width: 850px;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}
.celum-flex li:nth-child(even) {
  margin-top: 80px;
}
@media screen and (max-width: 900px) {
  .celum-flex li:nth-child(even) {
    margin-top: 0;
  }
}

/* Aroma */
.aroma-left {
  width: 55%;
}

.aroma-img {
  width: 95%;
  margin: 0 auto;
  justify-content: space-around;
}
.aroma-img img {
  width: clamp(200px, 30%, 313px);
}
@media screen and (max-width: 500px) {
  .aroma-img img {
    width: 80%;
  }
}

.aroma-course {
  margin-bottom: 0;
}

/* Contact */
.contact-box {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-box dl {
  margin-bottom: 20px;
}
.contact-box dl dt {
  position: relative;
  padding: 0 20px 7px 35px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.contact-box dl dt:before {
  position: absolute;
  content: "";
  left: 10px;
  top: 0;
  background-image: url(../img/diamond.png);
  background-size: cover;
  width: 17px;
  height: 22px;
}
.contact-box dl dt span {
  background-color: #F65792;
  color: #fff;
  font-size: 12px;
  padding: 3px 5px;
  border-radius: 5px;
}
.contact-box dl dd input, .contact-box dl textarea {
  background-color: #F1EBDF;
  height: 50px;
  width: 100%;
  resize: none;
}
.contact-box dl dd input.area-big, .contact-box dl textarea.area-big {
  height: 200px;
}

.contact-more {
  width: 250px;
  font-size: clamp(18px, 1.8vw, 22px);
  padding: 10px 20px 10px 20px;
  font-weight: bold;
  border-bottom: 5px solid #896B1F;
}

/* policy */
.policy-box {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 60px auto;
}
.policy-box p {
  margin-bottom: 20px;
}

.policy-list li {
  margin-bottom: 30px;
}
.policy-list li .policy-green {
  color: #90ce37;
  font-size: clamp(16px, 3vw, 18px);
  font-weight: bold;
  margin-top: 10px;
}
.policy-list li .policy-list2 li {
  position: relative;
  padding: 0 10px 0 45px;
  margin-bottom: 10px;
}
.policy-list li .policy-list2 li:before {
  position: absolute;
  content: "●";
  color: #90ce37;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}

/* 脱毛 */
.hair-img {
  margin: 0 auto 40px auto;
  justify-content: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 30px;
}
.hair-img img {
  width: clamp(200px, 33%, 306px);
}
@media screen and (max-width: 500px) {
  .hair-img img {
    width: 80%;
  }
}

.hair-hikari {
  background-image: url(../img/page/hair/hair-bg.jpg);
  background-size: cover;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 40px;
}
.hair-hikari .aroma-course {
  margin-bottom: 40px;
}
.hair-hikari .flex-inner-left {
  width: 53%;
  max-width: 530px;
}
.hair-hikari .flex-inner-left .h2-hikari {
  color: #896B1F;
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-weight: bold;
  text-shadow: 1px 2px 2px #fff;
  font-size: clamp(28px, 5vw, 65px);
  margin-bottom: 20px;
  text-align: center;
}
.hair-hikari .flex-inner-left .h2-hikari span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  width: 1.8em;
  height: 1.8em;
  line-height: 1;
  font-size: 1em;
}
.hair-hikari .flex-inner-left .hair-list li {
  background-color: #fff;
  margin-bottom: 10px;
  padding: 5px 10px 5px 20px;
  position: relative;
}
.hair-hikari .flex-inner-left .hair-list li:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(#896B1F, #DBC774, #896B1F);
}
.hair-hikari .flex-inner-left .hair-list li .c-pink {
  font-weight: bold;
  color: #F53A7F;
}
.hair-hikari .h3-voice {
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  color: #896B1F;
  font-weight: bold;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center; /* 垂直方向に中央揃え */
  justify-content: center; /* 水平方向に中央揃え */
  padding: 0 0 10px 0; /* 上下の余白を設定 */
  position: relative;
}
.hair-hikari .h3-voice::before, .hair-hikari .h3-voice::after {
  content: ""; /* 空の内容を挿入 */
  flex: 1; /* 残りのスペースを均等に埋める */
  height: 1px; /* 線の高さ */
  background-color: #896B1F; /* 線の色 */
}
.hair-hikari .h3-voice::before {
  margin-right: 15px; /* テキストとの間にスペース */
}
.hair-hikari .h3-voice::after {
  margin-left: 15px; /* テキストとの間にスペース */
}
.hair-hikari .h3-voice span {
  display: block;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  padding-bottom: 20px;
}
.hair-hikari .h3-voice span small {
  font-size: 16px;
}
.hair-hikari .hair-voice {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}
.hair-hikari .hair-voice li {
  background-image: url(../img/page/hair/green-circle.png);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 20px;
  font-size: 14px;
  line-height: 1.3;
}
.hair-hikari .hair-voice li:nth-child(even) {
  margin-top: 60px;
  width: 200px;
}
.hair-hikari .hair-voice li:nth-child(odd) {
  width: 180px;
}
@media screen and (max-width: 767px) {
  .hair-hikari {
    padding: 30px 20px;
  }
  .hair-hikari .flex-inner-left {
    width: 100%;
  }
  .hair-hikari .flex-inner-right {
    width: 100%;
    text-align: center;
  }
  .hair-hikari .hair-voice li:nth-child(even) {
    margin-top: 20px;
    width: 150px;
  }
  .hair-hikari .hair-voice li:nth-child(odd) {
    width: 150px;
  }
}
@media screen and (max-width: 400px) {
  .hair-hikari .hair-voice {
    flex-direction: column;
  }
  .hair-hikari .hair-voice li {
    background-image: none;
    background: linear-gradient(#c4f77e, #fff, #c4f77e);
    border-radius: 30px;
    aspect-ratio: auto;
    padding: 20px;
    font-size: 14px;
    line-height: 1.3;
    box-shadow: 2px 2px 5px #ccc;
  }
  .hair-hikari .hair-voice li:nth-child(even) {
    margin-top: 0;
    width: 100%;
  }
  .hair-hikari .hair-voice li:nth-child(odd) {
    width: 100%;
  }
}

.h3-vio {
  text-align: center;
  margin-bottom: 5px;
}
.h3-vio span {
  color: #896B1F;
  display: block;
  font-weight: bold;
  font-family: "shippori-mincho", "游明朝", YuMincho, "Noto serif JP", "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-size: clamp(16px, 2.2vw, 20px);
}
@media screen and (max-width: 600px) {
  .h3-vio img {
    width: 55%;
  }
}

.text-brown {
  background: #896B1F;
  color: #fff;
  font-weight: bold;
  font-size: clamp(14px, 2.2vw, 18px);
  padding: 7px 20px;
  text-align: center;
}

.vio-inner .hair-vio {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 20px;
  padding: 30px 0;
}
.vio-inner .hair-vio .vio-list {
  padding: 50px 10px 10px 20px;
  background-image: url(../img/page/hair/point1.jpg);
  background-repeat: no-repeat;
  background-position: left top;
  width: calc(50% - 20px);
}
.vio-inner .hair-vio .vio-list dt {
  color: #F53A7F;
  font-weight: bold;
  margin-bottom: 5px;
}
.vio-inner .hair-vio .vio-list:nth-child(2) {
  background-image: url(../img/page/hair/point2.jpg);
}
.vio-inner .hair-vio .vio-list:nth-child(3) {
  background-image: url(../img/page/hair/point3.jpg);
}
.vio-inner .hair-vio .vio-list:nth-child(4) {
  background-image: url(../img/page/hair/point4.jpg);
}
@media screen and (max-width: 767px) {
  .vio-inner .hair-vio {
    flex-direction: column;
  }
  .vio-inner .hair-vio .vio-list {
    width: 100%;
  }
}

.hair-best .celum-title {
  font-size: clamp(18px, 2vw, 22px);
}
.hair-best .celum-title span {
  font-size: clamp(24px, 2.5vw, 34px);
}
.hair-best .hair-img {
  padding-top: 20px;
}
.hair-best .hair-img img {
  max-width: 243px;
}

.jupiter-inner .img-box1 {
  text-align: center;
}
.jupiter-inner .img-box1 img {
  box-shadow: none;
}

.table-course {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
}
.table-course th, .table-course td {
  border: 1px solid #D8BE7D;
  padding: 8px 12px;
  text-align: center;
  font-weight: bold;
  vertical-align: middle;
}
.table-course td {
  color: #F61266;
}
.table-course td .text-line {
  font-weight: 400;
  text-decoration: line-through;
  color: #333;
  padding-right: 15px;
}
.table-course thead th {
  background-color: #D5F5A6;
}
.table-course tbody th {
  background-color: #F1EBDF;
}
@media screen and (max-width: 767px) {
  .table-course {
    font-size: clamp(12px, 1.7vw, 14px);
  }
}
@media screen and (max-width: 600px) {
  .table-course td .text-line {
    display: block;
    padding-right: 0;
  }
}
@media screen and (max-width: 400px) {
  .table-course {
    min-width: 350px;
    overflow-x: scroll;
  }
}

.text-right {
  text-align: right;
  margin-bottom: 5px;
}

/* News */
.news-title {
  font-size: clamp(23px, 2.3vw, 30px);
}

.news-box2 {
  padding-top: 20px;
  margin-bottom: 50px;
}
.news-box2 .news-green a {
  position: relative;
  display: block;
  background-color: #90ce37;
  color: #333;
  text-align: left;
  overflow: hidden;
  margin: 0 auto 20px auto;
  padding: 10px 20px 10px 20px;
  font-size: clamp(14px, 1.8vw, 18px);
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "Noto Sans JP", "ＭＳ Ｐゴシック", "Helvetica Neue", sans-serif;
  background-color: #D5F5A6;
  transition: 0.5s;
}
.news-box2 .news-green a:hover {
  transform: translateY(-5px);
}
.news-box2 .news-green a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 7px;
  height: 100%;
  background: linear-gradient(#896B1F, #DBC774, #896B1F);
}
.news-box2 .news-green a time {
  font-size: 14px;
  padding-right: 20px;
  color: #896B1F;
}

.pager {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.pager li a {
  padding: 5px 10px;
  border: 1px solid #90ce37;
  transition: 0.5s;
}
.pager li a:hover {
  background-color: #90ce37;
}

.news-more {
  width: 250px;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: bold;
}

.policy-box h1 {
  margin-bottom: 20px;
}
.policy-box h1 span {
  font-size: 1.5em !important;
  font-weight: bold;
}
.policy-box h2 {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 20px;
}
.policy-box h3 {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 20px;
}
.policy-box h4 {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 20px;
}
.policy-box h5 {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 20px;
}
.policy-box h6 {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 20px;
}
.policy-box a {
  color: #90ce37;
  font-weight: bold;
  transition: 0.5s;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.policy-box a:hover {
  color: #999;
}