@charset "UTF-8";
/*==========================================
  Common
==========================================*/
/* ＝＝＝＝＝＝ フェードインアニメーション ＝＝＝＝＝＝ */
.load-fade, .scroll-up {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
}

.load-fade.is-show, .scroll-up.is-show {
  opacity: 1;
  visibility: visible;
}

.scroll-up {
  transform: translateY(50px);
}

.scroll-up.is-show {
  transform: translateY(0px);
}

/* ＝＝＝＝＝＝ スマホ専用非表示 ＝＝＝＝＝＝ */
.sp {
  display: none !important;
}

/* ＝＝＝＝＝＝ ページネーション ＝＝＝＝＝＝ */
.wp-pagenavi {
  clear: both;
  text-align: center;
}

.wp-pagenavi a, .wp-pagenavi span {
  color: #999;
  background-color: #FFF;
  border: solid 1px #e0e0d2;
  padding: 8px 15px;
  margin: 0 2px;
  white-space: nowrap;
  border-radius: 3px;
  transition: 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
}

.wp-pagenavi a:hover {
  color: #FFF;
  background-color: #999;
  border-color: #999;
}

.wp-pagenavi span.current {
  color: #FFF;
  background-color: #9e67a9;
  border-color: #9e67a9;
  font-weight: bold;
}

/* ＝＝＝＝＝＝ フレックスレイアウト ＝＝＝＝＝＝ */
.row {
  display: flex;
  flex-wrap: wrap;
}

/* ＝＝＝＝＝＝ メインエリア ＝＝＝＝＝＝ */
main {
  display: block;
  overflow: hidden;
}

.link_box {
  padding-bottom: 6rem;
  max-width: 800px;
  margin: auto;
}
.link_box .link01 {
  padding-bottom: 6rem;
}

/* ＝＝＝＝＝＝ コンテナ ＝＝＝＝＝＝ */
.container {
  max-width: 1015px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 900px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ＝＝＝＝＝＝ ヘッダー ＝＝＝＝＝＝ */
header {
  border-top: 28px solid #eaaea0;
  padding-inline: 35px 26px;
  background-color: #fff;
  column-gap: 35px;
  height: 208px;
  z-index: 99;
  /* ロゴとアイコンを横並びに */
  /* メール・インスタ */
}
@media (max-width: 1100px) {
  header {
    top: 10px;
  }
}
header nav {
  z-index: 1;
}
header nav ul {
  display: flex;
  justify-content: center;
  column-gap: clamp(20px, 3vw, 40px);
  margin-left: -40px;
}
@media (max-width: 1114px) {
  header nav ul {
    column-gap: clamp(20px, 2.5vw, 40px);
  }
  header nav ul a {
    font-size: 14px;
  }
}
header nav a {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  color: #801b4d;
  position: relative;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 1341px) {
  header nav a {
    font-size: 15px;
  }
}
header nav a:hover {
  color: #801b4d;
  opacity: 0.7;
}
header nav a:active {
  color: #801b4d;
}
header nav a::after {
  content: "";
  display: block;
  height: 1px;
  background-color: #801b4d;
  position: absolute;
  bottom: 1px;
  bottom: -1px;
  left: 0;
  width: 100%;
}
header nav a::before {
  content: "";
  display: block;
  height: 1px;
  background-color: #801b4d;
  position: absolute;
  bottom: 4px;
  right: -14px;
  width: 16px;
  transform: rotate(141deg);
}
header .hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 15px;
}
header .hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 1px;
  background-color: #717071;
  transition: 0.2s;
}
header .hamburger span:nth-of-type(1) {
  transform-origin: right top;
}
header .hamburger span:nth-of-type(3) {
  transform-origin: right bottom;
}
header .hamburger.active span:nth-of-type(1) {
  transform: rotate(-26deg);
  width: 30px;
}
header .hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
header .hamburger.active span:nth-of-type(3) {
  transform: rotate(26deg);
  width: 30px;
}
header .header_main {
  position: relative;
  padding: 30px 0;
}
header .logo {
  font-size: 1.8rem;
  font-weight: bold;
  margin: auto;
  width: 136px;
}
header .icon_area {
  margin-left: 16px;
  text-decoration: none;
  color: #60003d;
  font-weight: 500;
  font-size: 1rem;
  position: absolute;
  right: 0;
  top: 32%;
  display: flex;
  gap: 10px;
}
header .icon_area a img {
  width: 45px;
  height: 45px;
}
header .header_menu {
  background-color: #fff;
  width: 200px;
  position: fixed;
  right: 0;
  top: 150px;
  padding: 50px 35px;
  box-sizing: border-box;
  transform: translateX(100%);
  transition: 0.2s ease-out;
  box-shadow: 5px 0 10px rgba(112, 112, 112, 0.5);
  z-index: 98;
}
header .header_menu li + li {
  margin-top: 20px;
}
header .header_menu a {
  font-size: 18px;
  transition: 0.3s;
}
header .header_menu a:hover {
  color: #801b4d;
  opacity: 0.7;
}
header .header_menu a:active {
  color: #801b4d;
}
header .header_menu.active {
  transform: translateX(0);
}

@media (max-width: 1114px) {
  #header {
    padding: 0 30px;
  }
}
/* ＝＝＝＝＝＝ アンカーリンクの調整 ＝＝＝＝＝＝ */
.anc {
  display: block;
  margin-top: -102px;
  padding-top: 102px;
}

.anchor {
  position: absolute;
  top: -130px;
}
@media (max-width: 1100px) {
  .anchor {
    top: -100px;
  }
}

/* ＝＝＝＝＝＝ 電話リンクの無効化 ＝＝＝＝＝＝ */
a[href^="tel:"] {
  pointer-events: none;
}

/* ＝＝＝＝＝＝ サブヘッダー ＝＝＝＝＝＝ */
.sub_header {
  height: 238px;
  background: url(/images/top/bg_pink.jpg) repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-size: cover;
}
.sub_header h1 {
  color: #510b2f;
  font-size: 48px;
  text-align: center;
  font-weight: 300;
  font-family: "Noto Serif JP", serif;
}
.sub_header h1 > span {
  font-size: clamp(24px, 2.5vw, 30px);
  display: block;
  font-family: "Noto Sans JP", sans-serif;
}

.subtitle {
  color: #333;
  text-align: center;
  font-size: 2.5rem;
}
.subtitle > small {
  font-size: 18px;
  display: block;
}

.breadcrumb ol {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #333;
}

.breadcrumb li a {
  color: #333;
  font-family: "Noto Serif JP", serif;
}

.breadcrumb li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("/images/common/breadcrumb_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 10px;
}

.header_tit02 {
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: center;
  background-color: #eaaea0;
}
.header_tit02 h2 {
  font-size: 3.2rem;
  /*height: 70px;
  line-height: 70px;*/
  text-align: center;
  margin: 0;
  z-index: 1;
  position: relative;
  padding: 0 4rem;
  background-color: white;
}
.header_tit02 h2 > span {
  font-size: 19px;
  display: block;
  height: 20px;
  line-height: 1.7;
}

.tit_style01 {
  color: #eaaea0;
  font-size: 7rem;
  position: relative;
  font-weight: 400;
  z-index: 0;
}

.bg_leaf {
  position: absolute;
  left: -24rem;
  bottom: -160px;
  width: 130%;
  z-index: -1;
}

.tit_en {
  font-family: "Times New Roman", Times, "Times-Roman", serif;
}

.tit03 {
  background: #eaaea0;
  padding: 20px;
  font-size: 2.5rem;
  text-align: center;
  font-weight: 400;
}

.color_lpink {
  color: #eaaea0;
}

.info_text {
  padding-top: 6rem;
  padding-bottom: 10rem;
  text-align: center;
}
.info_text > span {
  font-size: 2rem;
  text-align: center;
  display: block;
  margin: auto;
  padding-bottom: 2rem;
}

/* ＝＝＝＝＝＝ フッター ＝＝＝＝＝＝ */
.logo_sec_footer {
  margin: 50px 0 50px;
  position: relative;
}
.logo_sec_footer > a > img {
  max-width: 180px;
  margin: auto;
  display: flex;
}

footer .content nav {
  z-index: 1;
}
footer .content nav ul {
  display: flex;
  justify-content: center;
  column-gap: clamp(20px, 3vw, 40px);
  padding: 2.5rem;
  background: #d1899c;
}
footer .content nav a {
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 500;
  letter-spacing: 0;
  color: #ffffff;
  position: relative;
  font-family: "Noto Serif JP", serif;
}
footer .content nav a::after {
  content: "";
  display: block;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  bottom: 1px;
  bottom: -1px;
  left: 0;
  width: 100%;
}
footer .content nav a::before {
  content: "";
  display: block;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  bottom: 4px;
  right: -14px;
  width: 16px;
  transform: rotate(141deg);
}
footer .content .copy {
  height: 33px;
  background-color: #d1899c;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .content .copy p {
  color: #fff;
  font-size: 12px;
}

/* loader
==================================*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1001;
}

/* Animation
==================================*/
.c-anim-up {
  transform: translate(0, 30px);
  opacity: 0;
  transition: 0.3s ease;
}

/* ＝＝＝＝＝＝ Component Styles ＝＝＝＝＝＝ */
html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
}
html.no_move {
  overflow: hidden;
}
html * {
  margin: 0;
}

body {
  color: #606060;
  background-color: #fff;
  font-weight: 400;
  /*font-family: "Noto Serif JP", serif;*/
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.4;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  margin: 0;
}

.text_en {
  font-family: "EB Garamond", serif;
}

/* 画像のスタイル */
img {
  max-width: 100%;
  height: auto;
  display: block; /* 画像の下の余白をなくす */
}

/* 入力フォームのスタイル */
input,
textarea,
select {
  font-style: normal;
  font-family: "Noto Sans JP", "小塚ゴシック Pro", "Kozuka Gothic Pro", sans-serif;
  font-weight: 400;
}

/* 見出しタグ */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  letter-spacing: 0.03em;
}

/* 太字・強調 */
b, strong {
  font-weight: bold;
}

/* クリア */
.clear {
  clear: both;
}

/* 小さい文字 */
small {
  font-size: 1.4rem; /* 14px */
}

/* リンクスタイル */
a {
  color: #801b4d; /* 変数未定義の場合エラーを防ぐ */
  text-decoration: none;
  transition: 0.3s;
}
a:visited {
  color: #801b4d;
}
a:hover {
  color: #801b4d;
  text-decoration: none;
  opacity: 0.7;
}
a:active {
  color: #801b4d;
}
a.tel, a.link {
  pointer-events: none;
  cursor: default;
}

/* フォーカス時のスタイル */
*:focus {
  outline: none;
}

/*＝＝＝＝＝＝top＝＝＝＝＝＝*/
#Top main {
  position: relative;
  overflow: hidden;
}
#Top main .fv_swiper {
  position: relative;
}
#Top main .fv_swiper .reservation {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  padding: 30px 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  background-color: #801b4d;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 1px;
  opacity: 1;
}
#Top main .swiper {
  width: 100%;
  height: 100vh;
}
#Top main .swiper-wrapper {
  display: flex;
}
#Top main .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}
#Top main .slide_content {
  position: relative;
  width: 100%;
  height: 100%;
}
#Top main .slide_image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}
#Top main .slider_overlay_container {
  max-width: 1154px;
  width: 100%;
  padding: 0 50px;
  box-sizing: border-box;
  margin: 0 auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 900px) {
  #Top main .slider_overlay_container {
    padding: 0 20px;
  }
}
#Top main .slide_overlay {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  z-index: 2;
  color: white;
  padding-left: 30px;
}
#Top main .slide_logo {
  max-width: 315px;
  margin-bottom: 20px;
  padding-left: 95px;
  padding-top: 20px;
}
#Top main .slide_text {
  font-size: clamp(1.8rem, 2.5vw, 37px);
  font-weight: 500;
  line-height: 1.5;
  color: #801b4d;
  text-shadow: 0 0 8px rgb(255, 255, 255), 0 0 4px rgba(255, 255, 255, 0.9);
  padding-left: 95px;
  font-family: "Noto Serif JP", serif;
}
#Top main .haab_logo_wrap .text_wrap {
  display: flex;
  align-items: center;
  letter-spacing: -2px;
  line-height: 1.2;
}
#Top main .haab_logo_wrap .text_wrap img {
  width: auto;
  height: 60px;
  padding-bottom: 12px;
}
#Top main .haab_logo_wrap .text_wrap p {
  font-size: 18px;
  margin-bottom: 2rem;
  padding-left: 20px;
  color: #211815;
}
#Top main .haab_logo_wrap .text_wrap p > span {
  font-size: 25px;
}
#Top main .swiper-pagination {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}
#Top main .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #9fa0a1;
  opacity: 0.6;
  border-radius: 50%;
  margin: 0 5px;
  display: inline-block;
  transition: 0.3s;
}
#Top main .swiper-pagination-bullet-active {
  opacity: 1;
  background: #eaaea0; /* アクティブ時の色 */
}
#Top main .link_box {
  padding-top: 14rem;
}
#Top main .sec_profile .tit_style01.bg_leaf {
  padding-top: 5rem;
}
#Top main .sec_profile .profile_top {
  display: grid;
  grid-template-columns: 25% 1fr;
  margin-top: 5rem;
  gap: 50px;
}
#Top main .sec_profile .profile_top .ceo_photo > img {
  max-width: 280px;
}
#Top main .sec_profile .profile_top .text_box .caption {
  font-size: 18px;
  padding: 0.5rem;
  border: 2px solid black;
  text-align: center;
  letter-spacing: 0.3rem;
  color: #333;
}
#Top main .sec_profile .profile_top .text_box .ceo > img {
  max-width: 330px;
  padding-top: 20px;
}
#Top main .sec_profile .profile_top .text_box h3 {
  font-size: 28px;
}
#Top main .sec_profile .profile_top .text_box h4 {
  font-size: 20px;
  color: #801b4d;
  font-weight: 400;
  letter-spacing: -1px;
  padding-top: 20px;
}
#Top main .sec_profile .profile_top .text_box > p {
  color: #606060;
  font-size: 18px;
  letter-spacing: 0px;
  padding-top: 15px;
  line-height: 1.6;
}
#Top main .sec_profile .descri {
  padding-top: 56px;
  padding-bottom: 5rem;
}
#Top main .sec_profile .descri > p {
  color: #606060;
  font-size: 18px;
  padding-bottom: 20px;
}
#Top main .sec_profile .descri > ul {
  padding-bottom: 10rem;
  padding-top: 2rem;
  padding: 0 10px 30px;
  box-sizing: border-box;
}
#Top main .sec_profile .descri > ul > li {
  padding-left: 15px;
  font-size: 16px;
  position: relative;
  line-height: 1.8;
}
#Top main .sec_profile .descri > ul > li::after {
  content: "";
  display: block;
  background: #606060;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 22px;
  transform: translate(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
#Top main .sec_profile .cont_box {
  padding-top: 10rem;
}
#Top main .deco {
  width: 80%;
  margin: auto;
  display: flex;
}
#Top main .sec_concept {
  padding-top: 5rem;
  padding-bottom: 12.25rem;
}
#Top main .sec_concept .tit_bg {
  bottom: -16rem;
}
#Top main .sec_concept .caption {
  font-size: 35px;
  padding-top: 11rem;
  padding-bottom: 5.5rem;
}
#Top main .sec_concept .cont_box {
  max-width: 1010px;
  margin: 0 auto;
  display: flex;
  gap: 76px;
  position: relative;
  overflow: visible;
}
#Top main .sec_concept .cont_box .text_area {
  width: 66.5%;
  flex-shrink: 0;
}
#Top main .sec_concept .cont_box .text_area > p {
  font-size: 18px;
  line-height: 2;
  padding-top: 2rem;
}
#Top main .sec_concept .cont_box .text_area .logo_box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  position: relative;
}
#Top main .sec_concept .cont_box .text_area .logo_box::after {
  content: "";
  display: block;
  height: 1px;
  background-color: #717071;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 200%;
}
#Top main .sec_concept .cont_box .text_area .logo_box .haab_logo {
  padding-bottom: 2.8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#Top main .sec_concept .cont_box .text_area .logo_box .haab_logo > img {
  width: 45%;
}
#Top main .sec_concept .cont_box .text_area .logo_box .haab_logo span {
  font-size: 16px;
  /*white-space: nowrap;*/
}
#Top main .sec_concept .cont_box .text_area .logo_box .haab_logo .text_s {
  font-size: 12px;
}
#Top main .sec_concept .cont_box .text_area .logo_box > img {
  width: 100%;
}
#Top main .sec_concept .cont_box .image_wrap {
  position: relative;
  flex-shrink: 0;
}
#Top main .sec_concept .cont_box .image_wrap img {
  display: block;
  width: auto;
  max-width: none;
  position: relative;
  right: 0px;
}
#Top main .sec_concept .cont_box.reverse {
  flex-direction: row-reverse;
  padding-top: 12rem;
}
#Top main .sec_concept .cont_box.reverse .image_wrap img {
  left: 0px;
  right: auto;
}
@media (max-width: 900px) {
  #Top main .sec_concept .cont_box {
    flex-direction: column;
    gap: 30px;
  }
  #Top main .sec_concept .cont_box.reverse {
    flex-direction: column;
  }
  #Top main .sec_concept .cont_box .text_area {
    width: 100%;
  }
  #Top main .sec_concept .cont_box .image_wrap img {
    right: 0;
    width: 100%;
    max-width: 100%;
  }
}
#Top main .bg_pink {
  background: url(/images/top/bg_pink.jpg) repeat;
}
#Top main .sec_services {
  padding-top: 8rem;
}
#Top main .sec_services .card_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
  margin-bottom: 45px;
}
#Top main .sec_services .card_list a {
  display: block;
  height: 100%;
  background: white;
  position: relative;
}
#Top main .sec_services .card_list div.card_wrap {
  font-size: clamp(1.6rem, 2.2vw, 23px);
  background-color: white;
}
#Top main .sec_services .card_list div.card_wrap.list01 > p {
  padding-top: 30px;
  background: url(/images/top/border01.png) repeat-x;
}
#Top main .sec_services .card_list div.card_wrap.list02 > p {
  padding-top: 30px;
  background: url(/images/top/border02.png) repeat-x;
}
#Top main .sec_services .card_list div.card_wrap.list02 .img_box img {
  max-width: 350px;
  margin: auto;
}
#Top main .sec_services .card_list div.card_wrap.list03 > p {
  padding-top: 30px;
  background: url(/images/top/border03.png) repeat-x;
}
#Top main .sec_services .card_list div.card_wrap.list03 .img_box img {
  max-width: 350px;
  margin: auto;
}
#Top main .sec_services .card_list div.card_wrap.list04 {
  background-color: rgba(154, 154, 154, 0.8);
}
#Top main .sec_services .card_list div.card_wrap.list04 .img_box > img {
  max-height: 124px;
}
#Top main .sec_services .card_list div.card_wrap.list04 .text_box {
  padding-top: 30px 1rem 2rem;
}
#Top main .sec_services .card_list div.card_wrap::after {
  content: "";
  display: block;
  width: 40px;
  height: 30px;
  background: url(/images/top/tri_gray.svg) no-repeat;
  position: absolute;
  right: 0;
  bottom: 10px;
}
#Top main .sec_services .card_list div.card_wrap.list04 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2rem;
  box-sizing: border-box;
  position: relative;
  height: 100%;
}
#Top main .sec_services .card_list div.card_wrap.list04::after {
  content: "";
  background: url(/images/top/tri_wh.svg) no-repeat;
}
#Top main .sec_services .card_list div.card_wrap.list04 .icon {
  max-width: 40%;
}
#Top main .sec_services .card_list div.card_wrap.list04 h4 {
  font-size: 35px;
  text-align: center;
  line-height: 1.2;
  color: white;
  padding-top: 10px;
}
#Top main .sec_services .card_list div.card_wrap.list04 p {
  color: white;
}
#Top main .sec_services .card_list div.card_wrap > p {
  padding: 3rem;
}
#Top main .sec_services .card_list div.card_wrap .img_box {
  aspect-ratio: 479/255;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  flex-direction: column;
  box-sizing: border-box;
}
#Top main .sec_services .card_list div.card_wrap .img_box img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
}
#Top main .sec_services .card_list div.card_wrap .img_box > h4 {
  font-size: 4rem;
}
#Top main .sec_services .card_list div.card_wrap .text_box {
  padding: 1rem;
}
#Top main .link_box .link01 {
  padding-bottom: 5rem;
}
#Top main .sec_media_coverage {
  padding-bottom: 6rem;
}
#Top main .sec_media_coverage h2 {
  padding: 4rem 7rem;
  margin-bottom: 5rem;
  background-color: white;
  border-radius: 109px;
  margin-top: 13rem;
}
#Top main .sec_media_coverage h2 > img {
  margin: auto;
  max-width: 500px;
}
#Top main .sec_media_coverage .caption {
  font-size: clamp(3.6rem, 6vw, 6.3rem);
  margin-bottom: 5rem;
}
#Top main .sec_media_coverage .marked-text {
  background: linear-gradient(transparent 70%, rgba(234, 174, 160, 0.5) 30%);
  padding: 0.2em 0.3em;
  font-size: 35px;
  text-align: center;
  line-height: 1;
  display: flex;
  justify-content: center;
  font-weight: 600;
  color: #717071;
}
#Top main .sec_media_coverage .image_wrap {
  /* width: 120%;
   margin-left: auto; 
   transform: translateX(-2%);*/
  overflow: visible;
}
#Top main .sec_media_coverage .image_wrap img {
  width: 100%;
  height: auto;
  display: block;
}
#Top main .sec_media_coverage .magazine {
  padding-bottom: 7rem;
}
#Top main .sec_salon {
  padding: 15rem 0 10rem;
}
#Top main .sec_salon .container {
  max-width: 1100px;
}
#Top main .sec_salon h3 {
  text-align: center;
  padding: 1.6rem;
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  margin-top: 7rem;
  font-family: "Noto Serif JP", serif;
}
#Top main .sec_salon .cont_wrap {
  display: grid;
  grid-template-columns: 60% 34%;
  gap: 40px;
}
#Top main .sec_salon .cont_wrap .left_box > dl {
  display: flex;
  border-bottom: 1px solid black;
  padding: 10px;
}
#Top main .sec_salon .cont_wrap .left_box > dl.dl_last {
  margin-bottom: 19px;
}
#Top main .sec_salon .cont_wrap .left_box > dl > dt {
  width: 25%;
  text-align: center;
}
#Top main .sec_salon .cont_wrap .left_box > dl > dd {
  font-size: 14px;
  padding: 0 2rem;
  width: 75%;
}
#Top main .sec_salon .cont_wrap .left_box .map {
  aspect-ratio: 649/300;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
#Top main .sec_salon .cont_wrap .left_box .map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
#Top main .sec_salon .cont_wrap .right_box > img {
  max-height: 453px;
}
#Top main .sec_gallery {
  padding-bottom: 92px;
}
#Top main .sec_gallery h2 {
  font-size: clamp(43px, 2.5vw, 58px);
  text-align: center;
  color: #1a1311;
  font-weight: 500;
  padding-bottom: 5.3rem;
  padding-top: 8.5rem;
  font-family: "Noto Serif JP", serif;
}
#Top main .sec_gallery h2 > span {
  font-size: clamp(20px, 2.5vw, 24px);
  display: block;
  font-family: "Noto Serif JP", serif;
}
#Top main .sec_gallery .gallery-text {
  background-color: #717071;
  color: white;
  border-radius: 30px;
  width: 248px;
  height: 50px;
  margin: 33px auto auto;
  text-align: center;
  line-height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#Top main .sec_gallery .sec_gallery_cont {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: auto;
}
#Top main .sec_gallery .sec_gallery_cont img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
#Top main .sec_contact {
  padding-top: 12rem;
}
#Top main .sec_contact h2 {
  font-size: clamp(36px, 5vw, 58px);
  text-align: center;
  color: black;
  font-weight: 500;
  margin-bottom: 7rem;
  font-family: "Noto Serif JP", serif;
}
#Top main .sec_contact h2 > span {
  font-size: clamp(18px, 2.5vw, 25px);
  display: block;
  font-family: "Noto Serif JP", serif;
}
#Top main .sec_contact .icon_wrap img {
  max-width: 100px;
}
#Top main .sec_contact .contact-section {
  display: grid;
  grid-template-columns: 70% 25%;
  gap: 4%;
}
#Top main .sec_contact .contact-section h2 {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
  align-items: center;
  justify-content: center;
  grid-template-columns: 60% 1fr;
  margin-bottom: 100px;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
}
#Top main .sec_contact .contact-section .contact-column {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  justify-content: space-around;
}
#Top main .sec_contact .contact-section .contact-column h3 {
  font-size: 35px;
  margin-bottom: 20px;
  text-align: center;
  text-align: center;
  color: black;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
}
#Top main .sec_contact .contact-section .contact-column h3 > span {
  display: block;
  color: black;
  font-size: 1.5rem;
  font-family: "Noto Serif JP", serif;
}
#Top main .sec_contact .contact-section .contact-column .icon_wrap {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
}
#Top main .sec_contact .contact-section .contact-column .icon_wrap.line a {
  width: 100%;
}
#Top main .sec_contact .contact-section .contact-column .icon_wrap a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-direction: column;
  width: 48%;
}
#Top main .sec_contact .contact-section .contact-column .icon_wrap img {
  width: 75px;
  height: 75px;
}
#Top main .sec_contact .contact-section .contact-column .icon_wrap .btn {
  font-size: 0.9rem;
  line-height: 1.4;
  background-color: #717071;
  padding: 9px 33px;
  color: white;
  margin-top: 40px;
  border-radius: 44px;
  font-size: 16px;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}
#Top main .logo_sec_footer {
  margin: 50px 0 50px;
  position: relative;
}
#Top main .logo_sec_footer::before {
  content: "";
  display: block;
  background: url(/images/top/deco_leaf02.svg) no-repeat;
  height: 849px;
  width: 189px;
  position: absolute;
  left: -9px;
  background-size: contain;
  top: -64rem;
  z-index: -1;
}
#Top main .logo_sec_footer > a > img {
  max-width: 180px;
  margin: auto;
  display: flex;
}
@media (max-width: 1147px) {
  #Top main .logo_sec_footer::before {
    height: 849px;
    width: 189px;
    position: absolute;
    left: 0;
    background-size: contain;
    top: -64rem;
  }
}

/* ＝＝＝＝＝＝Blog＝＝＝＝＝＝　*/
.wp-block-image img {
  padding-bottom: 20px;
}

.wp-block-image .alignright::after,
.wp-block-image .alignleft::after {
  content: "";
  display: block;
  clear: both;
}

.wp-block-image {
  overflow: hidden;
  zoom: 1;
}

/*前頁カテゴリー*/
#news1 {
  border: 2px solid rgb(195, 195, 195);
  border: white;
  border-radius: 13px;
  padding: 3px 8px;
  width: 70px;
  background: #6fb36f;
  color: white;
}

.date {
  font-size: 12px;
  padding-bottom: 5px;
}

.cate {
  margin-bottom: 5px;
  font-size: 13px;
}

.cate a {
  border: 2px solid rgb(195, 195, 195);
  border: white;
  border-radius: 13px;
  padding: 3px 8px;
  width: 70px;
  background: #6fb36f;
  color: white;
}

.excerpt {
  padding-top: 10px;
}
.excerpt a {
  color: rgb(121, 121, 121);
  font-size: 11px;
  padding: 5px 21px 5px 12px;
  border-radius: 3px;
  position: relative;
}
.excerpt a > img {
  width: 40px;
  position: absolute;
  right: -30px;
  top: 7px;
  height: 10px;
}

#blog main {
  /*シングルページ*/
}
#blog main .sub-header h1 {
  font-size: 35px;
}
#blog main .wrapper {
  position: relative;
  background-color: #eee;
  padding-bottom: 50px;
  /*フォント　デザイン*/
  /*margin: 0 0 130px;*/
  /*pager*/
}
#blog main .wrapper .breadcrumbs {
  width: 100%;
  margin: auto;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 20px;
  padding-bottom: 45px;
  font-size: 12px;
  color: #949494;
}
@media (max-width: 1080px) {
  #blog main .wrapper .breadcrumbs {
    box-sizing: border-box;
  }
}
#blog main .wrapper .breadcrumbs span {
  font-size: 12px;
  line-height: 1.3;
}
#blog main .wrapper .fontBig01 {
  font-size: 25px;
}
#blog main .wrapper .fontBig02 {
  font-size: 20px;
}
#blog main .wrapper .fontBold {
  font-weight: 600;
}
#blog main .wrapper .underL {
  border-bottom: 2px solid #7f7f7f;
  padding-top: 20px;
}
#blog main .wrapper .padBottom {
  padding-bottom: 15px;
}
#blog main .wrapper .padtop10 {
  padding-top: 10px;
}
#blog main .wrapper .padtop20 {
  padding-top: 20px;
}
#blog main .wrapper .squareLine {
  border: 1px solid #7f7f7f;
  padding: 20px;
}
#blog main .wrapper .list01 {
  padding-bottom: 10px;
}
#blog main .wrapper .list01 > li {
  position: relative;
  padding-left: 20px;
}
#blog main .wrapper .list01 > li::after {
  content: "■";
  color: #7f7f7f;
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 0px;
  border-radius: 50%;
}
#blog main .wrapper .marB20 {
  margin-bottom: 20px;
}
#blog main .wrapper .test {
  font-size: large;
}
#blog main .wrapper .container02 {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
}
#blog main .wrapper .container {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
}
#blog main .wrapper ul.blog_con {
  margin: 0 -20px auto;
  padding-left: 0;
  justify-content: flex-start;
  display: flex;
  flex-wrap: wrap;
}
#blog main .wrapper ul.blog_con > li {
  width: 33.333%;
  list-style: none;
  box-sizing: border-box;
  margin-bottom: 40px;
  border-bottom: 1px solid rgb(223, 223, 223);
  padding: 0 22px 65px;
}
#blog main .wrapper ul.blog_con > li .card_wrapper {
  background-color: white;
  height: 100%;
  transition: 0.3s;
  padding-bottom: 25px;
  position: relative;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .blog_thumb:hover {
  opacity: 0.7;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper {
  padding: 20px 20px;
  color: #5e5e5e;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper > .category > .post-categories > li > a {
  color: #5e5e5e;
  font-size: 12px;
  text-align: center;
  display: inline-block;
  width: 100%;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 13px;
  display: inline-block;
  width: 70px;
  margin-top: 15px;
  position: relative;
  border: 2px solid #484848;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper > a > h4.title_blog {
  padding-top: 13px;
  padding-bottom: 5px;
  font-size: 18px;
  line-height: 1.7;
  color: #7f7f7f;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper .more > a {
  background-color: #4eb735;
  border-radius: 5px;
  color: white;
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  margin-bottom: 25px;
  width: 125px;
  height: 30px;
  display: inline-block;
  padding-right: 10px;
  position: absolute;
  bottom: 0;
  line-height: 30px;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper .more > a:hover {
  opacity: 0.7;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper .more > a > .arrow {
  width: 7px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
#blog main .wrapper ul.blog_con > li .blog_thumb {
  display: block;
  position: relative;
  padding-top: 53.25%;
  overflow: hidden;
}
#blog main .wrapper ul.blog_con > li .blog_thumb > img {
  /*max-width: 306px;*/
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#blog main .wrapper .page-numbers.current, #blog main .wrapper .page-numbers, #blog main .wrapper .pagination .prev, #blog main .wrapper .next.page-numbers {
  box-sizing: border-box;
  display: block;
  color: #A4A4A4;
  text-decoration: none;
  text-align: center;
  background: #FFF;
  border: 1px solid #A4A4A4;
  border-radius: 50%;
  min-width: 40px;
  transition: all 0.2s;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  line-height: 38px;
}
#blog main .wrapper .page-numbers {
  margin: 0 6px;
}
#blog main .wrapper .prev.page-numbers, #blog main .wrapper .next.page-numbers {
  margin: 0 13px;
}
#blog main .wrapper .page-numbers:hover, #blog main .wrapper .pagination .prev:hover, #blog main .wrapper .next.page-numbers:hover {
  color: #FFF;
  background: #6E6E6E;
  /*border: 1px solid #6E6E6E;*/
}
#blog main .wrapper .page-numbers.current {
  margin: 0 0.28em;
}
#blog main .wrapper .pnavi {
  display: flex;
  justify-content: center;
  color: #A4A4A4;
  line-height: 1;
  margin: 0;
  padding: 2em 0;
}
#blog main .wrapper .page-numbers.current {
  background: #6E6E6E;
  color: #fff;
  font-weight: bold;
  border: none;
  margin: 0 0.28em;
}
#blog main .wrapper .cate_wrap .list_ttl {
  font-weight: 600;
  border-left: 2px solid #7f7f7f;
  padding-left: 20px;
  margin-bottom: 7px;
  margin-top: 30px;
  color: #7f7f7f;
}
#blog main .wrapper .cate_wrap > ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}
#blog main .wrapper .cate_wrap > ul > li:first-child {
  padding-left: 20px;
}
#blog main .wrapper .cate_wrap > ul > li > a {
  padding: 5px 10px;
  border: 1px solid #7f7f7f;
  border-radius: 7px;
  margin: 5px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
  color: #7f7f7f;
}
#blog main .wrapper .cate_wrap > ul > li > a:hover {
  background-color: #ffb9ff;
  color: white;
  border: 1px solid #ffb9ff;
}
#blog main.single-page .wrapper {
  min-height: 300px;
  padding-bottom: 100px;
  /* スクリーンリーダー限定テキスト： the_post_navigation() 用 */
}
#blog main.single-page .wrapper .cont .entryinfo {
  padding-bottom: 33px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}
#blog main.single-page .wrapper .cont .entryinfo .categories {
  width: 100px;
}
#blog main.single-page .wrapper .cont .entryinfo .categories .cate {
  padding-bottom: 0px;
  line-height: 1.5;
}
#blog main.single-page .wrapper .cont .entryinfo .categories .post-categories > li > a {
  color: #7f7f7f;
  font-size: 12px;
  text-align: center;
  display: inline-block;
  width: 100%;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 13px;
  display: inline-block;
  width: 70px;
  position: relative;
  border: 2px solid #7f7f7f;
}
#blog main.single-page .wrapper .cont .entryinfo time {
  font-weight: bold;
}
#blog main.single-page .wrapper p {
  line-height: 1.7;
  padding-bottom: 15px;
}
#blog main.single-page .wrapper .nav-links {
  clear: both;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}
#blog main.single-page .wrapper .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
#blog main.single-page .wrapper .nav-previous {
  float: left;
}
#blog main.single-page .wrapper .nav-next {
  float: right;
}
#blog main.single-page .wrapper .nav-previous, #blog main.single-page .wrapper .nav-next {
  max-width: 45%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0 20px;
}
#blog main.single-page .wrapper .nav-previous > a, #blog main.single-page .wrapper .nav-next > a {
  font-size: 14px;
  color: #303030;
  letter-spacing: 0.01em;
}

/*＝＝＝＝＝＝concept＝＝＝＝＝＝*/
#Christina main {
  position: relative;
  overflow: hidden;
}
#Christina main .header_tit02 img {
  max-width: 410px;
}
#Christina main .caption {
  padding: 52px 0 132px;
  line-height: 1.7;
}
#Christina main .caption > p {
  font-size: 14px;
}
#Christina main .caption > p:first-child {
  padding-bottom: 38px;
}
#Christina main .mission {
  padding-bottom: 8rem;
}
#Christina main .mission .descri {
  padding: 4rem 0rem;
  border-top: 1px solid #9fa0a1;
  border-bottom: 1px solid #9fa0a1;
  margin: 4rem 0;
}
#Christina main .mission .descri .descri-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media (max-width: 768px) {
  #Christina main .mission .descri .descri-grid {
    grid-template-columns: 2fr;
  }
}
#Christina main .mission .descri .descri-grid .descri-item {
  text-align: center;
  padding: 2rem 2rem 5rem;
}
#Christina main .mission .descri .descri-grid .descri-item .image-box {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 400;
  border: 1px solid #9fa0a1;
}
#Christina main .mission .descri .descri-grid .descri-item .item-title {
  font-size: 14px;
  margin-top: 1rem;
  position: relative;
  font-weight: 400;
}
#Christina main .mission .descri .descri-grid .descri-item .item-line {
  width: 100%;
  height: 3px;
  background-color: #9fa0a1;
  margin: 0.5rem auto;
}
#Christina main .mission .descri .descri-grid .descri-item .item-text {
  font-size: 13px;
  color: #555;
  padding-top: 30px;
  text-align: left;
  line-height: 1.8;
}
#Christina main .box02 .descri {
  padding: 5rem 0 10rem;
}
#Christina main .box02 .descri > p {
  font-size: 14px;
  line-height: 1.8;
}
#Christina main .sec_flow .descri {
  padding: 2rem 0rem;
}
#Christina main .sec_flow .descri .descri-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  #Christina main .sec_flow .descri .descri-grid {
    grid-template-columns: 2fr;
  }
}
#Christina main .sec_flow .descri .descri-grid .descri-item {
  text-align: center;
}
#Christina main .sec_flow .descri .descri-grid .descri-item .image-box {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  background-color: #eaaea0;
}
#Christina main .sec_flow .descri .descri-grid .descri-item .item-title {
  font-size: 15px;
  margin-top: 1rem;
  position: relative;
  letter-spacing: -0.1rem;
  font-weight: 400;
}
#Christina main .sec_flow .descri .descri-grid .descri-item .item-line {
  width: 100%;
  height: 3px;
  background-color: #eaaea0;
  margin: 0.5rem auto;
}
#Christina main .sec_flow .descri .descri-grid .descri-item .item-text {
  font-size: 14px;
  padding-top: 18px;
  text-align: left;
}
#Christina main .sec_service {
  padding-top: 8rem;
}
#Christina main .service_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 54px;
  margin: 0 auto;
  padding: 2rem 0;
}
#Christina main .service_box .service_item {
  background: #fff;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.15);
  padding: 3.7rem 2.2rem 8rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /*aspect-ratio: 476 / 539;*/
}
#Christina main .service_box .service_item.item09 .service_title {
  padding-bottom: 30px;
}
#Christina main .service_box .service_item.item10 .service_title span {
  display: inline-block;
}
#Christina main .service_box .service_item.item10 .service_title img {
  max-width: 190px;
  padding-top: 8px;
}
#Christina main .service_box .service_item.item10 .service_image {
  padding-top: 10px;
}
#Christina main .service_box .service_item .service_title {
  font-size: 26px;
  font-weight: 400;
}
#Christina main .service_box .service_item .service_sub {
  font-size: 16px;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  color: inherit;
}
#Christina main .service_box .service_item .service_image {
  padding-bottom: 2rem;
}
#Christina main .service_box .service_item .service_image img {
  height: auto;
  aspect-ratio: 256/156;
  object-fit: cover;
  max-width: 190px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
#Christina main .service_box .service_item .service_text {
  font-size: 14px;
  margin-bottom: 2.5rem;
  color: #444;
}
#Christina main .service_box .service_item .service_border {
  width: 100%;
  height: 5px;
  border-radius: 2px;
}
#Christina main .service_box .color1 .service_border {
  background-color: #3db7a9;
}
#Christina main .service_box .color1 .service_sub {
  color: #3db7a9;
}
#Christina main .service_box .color2 .service_border {
  background-color: #54852a;
}
#Christina main .service_box .color2 .service_sub {
  color: #54852a;
}
#Christina main .service_box .color3 .service_border {
  background-color: #a7a8a9;
}
#Christina main .service_box .color3 .service_sub {
  color: #a7a8a9;
}
#Christina main .service_box .color4 .service_border {
  background-color: #a9928b;
}
#Christina main .service_box .color4 .service_sub {
  color: #a9928b;
}
#Christina main .service_box .color5 .service_border {
  background-color: #d55e9d;
}
#Christina main .service_box .color5 .service_sub {
  color: #d55e9d;
}
#Christina main .service_box .color6 .service_border {
  background-color: #801b4d;
}
#Christina main .service_box .color6 .service_sub {
  color: #801b4d;
}
#Christina main .service_box .color7 .service_border {
  background-color: #ecb269;
}
#Christina main .service_box .color7 .service_sub {
  color: #ecb269;
}
#Christina main .service_box .color8 .service_border {
  background: url(/images/christina/purple-line.png) no-repeat;
  background-size: cover;
}
#Christina main .service_box .color8 .service_sub {
  color: #ba99be;
}
#Christina main .service_box .color9 .service_border {
  background-color: #801b4d;
}
#Christina main .service_box .color9 .service_sub {
  color: #801b4d;
}
#Christina main .service_box .color10 .service_border {
  background-color: #801b4d;
}
#Christina main .service_box .color10 .service_sub {
  color: #801b4d;
}
#Christina main .service_box .color11 .service_border {
  background-color: #212c73;
}
#Christina main .service_box .color11 .service_sub {
  color: #212c73;
}
#Christina main .info_text {
  padding-top: 6rem;
  padding-bottom: 10rem;
  text-align: center;
}

/*＝＝＝＝＝＝Victoria＝＝＝＝＝＝*/
#Products-list main {
  position: relative;
  overflow: hidden;
}
#Products-list main .header_tit02 img {
  max-width: 410px;
}
#Products-list main .caption {
  padding: 52px 0 132px;
  line-height: 1.7;
}
#Products-list main .caption > p {
  font-size: clamp(18px, 2vw, 21px);
}
#Products-list main .caption .img_box {
  width: 445px;
  margin: auto;
  padding-top: 6rem;
  position: relative;
}
#Products-list main .caption .img_box::after {
  content: "";
  display: block;
  width: 94px;
  background: url(/images/victoria/badge_best.png) no-repeat center;
  position: absolute;
  height: 150px;
  background-size: contain;
  right: -97px;
  bottom: 0;
}
#Products-list main .top_heading h2 {
  font-size: clamp(3rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5rem 0 4rem;
}
#Products-list main .top_heading h2 .text_s {
  font-size: 2.4rem;
  display: block;
}
#Products-list main .top_heading .caption {
  font-size: 27px;
  text-align: center;
  padding-bottom: 33px;
}
#Products-list main .top_heading .descri {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  max-width: 729px;
  justify-content: center;
  margin: auto;
  padding-bottom: 10rem;
}
#Products-list main .top_heading .descri > p {
  font-size: 1.8rem;
  line-height: 1.7;
  margin-top: -10px;
}
#Products-list main .product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 50px 0px;
  box-sizing: border-box;
  padding-top: 0;
}
#Products-list main .product-grid .product-card {
  border-radius: 8px;
  padding: 30px 27px;
  background-color: #fff;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.1);
}
#Products-list main .product-grid .product-card .subtitle {
  display: block;
  font-size: 2.1rem;
}
#Products-list main .product-grid .product-card .product-card-title h3 {
  font-size: 3.4rem;
  margin: 0;
  text-align: center;
  border-bottom: 6px solid #c99958;
  padding-bottom: 2.2rem;
  box-sizing: border-box;
  margin-bottom: 20px;
}
#Products-list main .product-grid .product-card .product_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
#Products-list main .product-grid .product-card .product_wrap ul {
  padding-top: 10px;
}
#Products-list main .product-grid .product-card .product_wrap ul li {
  font-size: 1.8rem;
  text-indent: -1.8rem;
  margin-left: 1.8rem;
  line-height: 1.7;
}
#Products-list main .product-grid .product-card .product_wrap .text_wrap h4 {
  font-size: 1.8rem;
}
#Products-list main .product-grid .product-card .product_wrap.hellas_premium {
  align-items: center;
}
#Products-list main .product-grid .product-card .product_wrap.hellas_premium .text_s {
  font-size: 1.6rem;
}
#Products-list main .product-grid .product-card .product-text {
  padding-top: 20px;
}
#Products-list main .product-grid .product-card .price {
  padding-top: 20px;
  text-align: right;
  font-size: 24px;
}
#Products-list main .product-grid .product-card .price > span {
  padding-left: 20px;
}
#Products-list main .wakasa-grid {
  margin-top: 5rem;
}
#Products-list main .product-card.wakasa h3 {
  font-size: 3.4rem;
  border-bottom: 6px solid #1e8139 !important;
}
#Products-list main .grid_box {
  padding-top: 70px;
  display: grid;
  grid-template-columns: 324px 1fr;
  /* 斜め線を疑似要素で追加 */
}
#Products-list main .grid_box .text_box .subtitle {
  font-size: clamp(2rem, 3vw + 1rem, 3.4rem);
  text-align: center;
  color: #eaaea0;
}
#Products-list main .grid_box .text_box h3 {
  font-size: clamp(3rem, 5vw, 6rem);
  text-align: center;
}
#Products-list main .grid_box .text_box h3 span {
  font-size: 20px;
  display: block;
  text-align: center;
}
#Products-list main .grid_box .text_box .text01 {
  max-width: 476px;
  margin: auto;
  margin-top: 30px;
  font-size: 3rem;
}
#Products-list main .grid_box .text_box .text01 .text_l {
  text-align: left;
}
#Products-list main .grid_box .text_box .text01 .text_r {
  text-align: right;
}
#Products-list main .grid_box .point_wrap {
  position: relative;
}
#Products-list main .grid_box .point_wrap h4 {
  font-size: 5rem;
  color: #eaaea0;
  position: absolute;
  left: -7rem;
  bottom: 8rem;
  width: 145px;
}
@media (max-width: 1000px) {
  #Products-list main .grid_box .point_wrap h4 {
    font-size: 4rem;
    left: -9rem;
    bottom: 13rem;
  }
}
#Products-list main .grid_box .point_list {
  display: flex;
  justify-content: space-between;
  gap: 1px; /* スキマ調整 */
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
#Products-list main .grid_box .point_list li {
  flex: 1;
  text-align: center;
  padding: 1.5rem;
  position: relative;
  font-size: 1rem;
  font-size: 1.8rem;
}
#Products-list main .grid_box .point_list li span {
  display: block;
  font-size: 6rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
#Products-list main .grid_box .point_list li span img {
  height: 61px;
  padding-bottom: 10px;
}
#Products-list main .grid_box .point_list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 12px;
  right: -5rem;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom left, transparent 48%, #000000 50%, transparent 52%);
  transform: rotate(25deg);
  transform-origin: top right;
}
#Products-list main .grid_box .img_box > img {
  max-height: 384px;
  margin: auto;
}
#Products-list main .descri {
  padding-top: 2rem;
  max-width: 640px;
  margin: auto;
}
#Products-list main .price_text_wrap {
  margin-top: 3rem;
}
#Products-list main .price_text_wrap p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
#Products-list main .manjyaro {
  margin-top: 16rem;
}
#Products-list main .manjyaro_text, #Products-list main .biyou_text {
  font-size: 2.2rem;
  padding-top: 1rem;
  line-height: 1.7;
  padding-bottom: 2rem;
}
#Products-list main .manjyaro_wrap {
  bottom: 0;
}
#Products-list main .manjyaro_wrap .img_box > img {
  max-height: 346px;
  margin: auto;
}
#Products-list main .manjyaro_wrap h3 {
  text-align: center;
}
#Products-list main .manjyaro_wrap .point_wrap h4 {
  left: -13rem;
  bottom: 5rem;
}
#Products-list main .manjyaro_price {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
#Products-list main .manjyaro_price > p {
  justify-content: flex-end;
}
#Products-list main .product-section {
  text-align: center;
  padding-top: 2rem;
  max-width: 850px;
  margin: auto auto 15rem;
}
#Products-list main .scalp {
  margin-top: 8rem;
  margin-bottom: 13rem;
}
#Products-list main .border-wrap {
  position: relative;
}
#Products-list main .beauty-supple-tit {
  text-align: center;
  width: 200px;
  background: white;
  font-size: 3rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
#Products-list main .product-section.Beauty-supple {
  max-width: 100%;
  margin-left: auto;
  display: grid;
}
#Products-list main .product-section.Beauty-supple .product-grid-custom {
  max-width: 100%;
  grid-template-columns: 1fr 1fr;
  padding: 4rem;
  border: 1px solid #717071;
}
@media (max-width: 1000px) {
  #Products-list main .product-section.Beauty-supple .product-grid-custom {
    padding: 4rem 2rem;
  }
}
#Products-list main .product-section.Beauty-supple .product-item {
  justify-content: space-between;
  text-align: left;
}
#Products-list main .product-section.Beauty-supple .product-item:nth-child(even) {
  text-align: left;
}
#Products-list main .product-section .section-title {
  font-size: 30px;
  margin-bottom: 2rem;
}
#Products-list main .product-section .product-grid-custom {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* ← 1カラムにも対応 */
  gap: 2rem;
  font-size: 1.9rem;
  padding: 1rem;
  margin: auto;
  max-width: 748px;
}
#Products-list main .product-section .product-item {
  display: flex;
  padding-bottom: 0.5rem;
}
#Products-list main .product-section .product-name {
  font-weight: normal;
}
#Products-list main .product-section .product-price {
  font-weight: bold;
  padding-left: 30px;
}
#Products-list main .product-section .product-price .spn_w {
  padding-right: 10px;
}
#Products-list main .product-section .product-price .spn_w02 {
  width: 66px;
  display: inline-block;
  text-align: left;
}
#Products-list main .product-section .product-price .mar01 {
  margin-right: -6px;
}
#Products-list main .glp-1 {
  margin-bottom: 15rem;
  position: relative;
  border: 1px solid #717071;
  margin-top: 5rem;
}
#Products-list main .glp-1 .section-title {
  position: absolute;
  left: 50%;
  width: 180px;
  background-color: white;
  background-color: white;
  top: -2rem;
  transform: translateX(-50%);
}
#Products-list main .biyou_wrap {
  gap: 90px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 5rem;
}
#Products-list main .biyou_wrap .img_box > img {
  max-height: 469px;
}
#Products-list main .biyou_wrap .subtitle {
  text-align: left !important;
}
#Products-list main .biyou_text ul {
  padding-top: 1rem;
}

/*＝＝＝＝＝＝Victoria＝＝＝＝＝＝*/
#Victoria main {
  position: relative;
  overflow: hidden;
}
#Victoria main .header_tit02 img {
  max-width: 410px;
}
#Victoria main .caption {
  padding: 52px 0 132px;
  line-height: 1.7;
}
#Victoria main .caption > p {
  font-size: clamp(18px, 2vw, 21px);
}
#Victoria main .caption .img_box {
  width: 445px;
  margin: auto;
  padding-top: 6rem;
  position: relative;
}
#Victoria main .caption .img_box::after {
  content: "";
  display: block;
  width: 94px;
  background: url(/images/victoria/badge_best.png) no-repeat center;
  position: absolute;
  height: 150px;
  background-size: contain;
  right: -97px;
  bottom: 0;
}
#Victoria main .heading {
  padding-bottom: 5rem;
}
#Victoria main .heading .grid {
  border-top: 1px solid gray;
  /*max-width: 770px;*/
  margin: auto;
  display: grid;
  height: 440px;
  grid-template-columns: 60% 40%;
  position: relative;
  justify-content: center;
  align-items: center;
  z-index: 0;
}
#Victoria main .heading .grid::after {
  content: "";
  display: block;
  width: 100%;
  height: 40px;
  background: radial-gradient(ellipse at center bottom, rgba(255, 224, 255, 0.5) 0%, rgba(255, 224, 255, 0.3) 50%, rgba(255, 224, 255, 0.2) 60%, rgba(255, 224, 255, 0.01) 80%, rgba(255, 224, 255, 0) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 100;
}
#Victoria main .heading .grid .text_wrap > h3 > img {
  /*  max-width: 440px;*/
}
#Victoria main .heading .grid .img_box {
  position: absolute;
  right: -136px;
  top: 0;
  width: 660px;
  height: 440px;
  z-index: 1;
}
#Victoria main .heading .grid .img_box img {
  width: 100%;
  height: auto;
  display: block;
}
#Victoria main .heading .box02 {
  padding-top: 66px;
  padding-bottom: 10rem;
  display: flex;
}
#Victoria main .heading .box02 .text01 {
  font-size: 27px;
  padding-bottom: 2rem;
}
#Victoria main .heading .box02 .grid02 {
  display: grid;
  max-width: 770px;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: flex-start;
  font-size: 18px;
  line-height: 1.6;
}
#Victoria main .salon_link {
  padding-bottom: 10rem;
  max-width: 800px;
}
#Victoria main .sec_price {
  padding-bottom: 10rem;
}
#Victoria main .price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 50px 0px;
  box-sizing: border-box;
}
#Victoria main .price-grid .price-card {
  border-radius: 8px;
  padding: 40px 30px;
  background-color: #fff;
  aspect-ratio: 480/449;
  max-width: 480px;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1010px) {
  #Victoria main .price-grid .price-card {
    aspect-ratio: auto !important;
  }
}
#Victoria main .price-grid .price-card .price-card-title h3 {
  font-size: 3.4rem;
  margin: 0;
  text-align: center;
  border-bottom: 6px solid #801b4d;
  padding-bottom: 2.2rem;
  min-height: 110px;
  box-sizing: border-box;
}
#Victoria main .price-grid .price-card .price-card-title .subtitle {
  font-size: 2.1rem;
  color: #666;
  display: block;
}
#Victoria main .price-grid .price-card .price-card-title.text_s h3 {
  padding-bottom: 1rem;
}
#Victoria main .price-grid .price-card .price-card-title.text_s h3 .subtitle {
  font-size: 1.6rem;
}
#Victoria main .price-grid .price-card .price-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#Victoria main .price-grid .price-card .price-list .price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 1.9rem;
  padding-bottom: 1rem;
  background: url(/images/victoria/border-dotted.svg) repeat-x center bottom;
  align-items: center;
}
#Victoria main .price-grid .price-card .price-list .price-row .price-value {
  text-align: right;
  line-height: 1.4;
}
#Victoria main .price-grid .price-card .price-list .price-row .price-value:last-child {
  border-bottom: none;
}
#Victoria main .price-grid .price-card .price-list .price-row .price-value .price-note {
  font-size: 1.6rem;
  color: #888;
  display: block;
  margin-top: 4px;
}
#Victoria main .sec_kids_menu .heading {
  display: grid;
  grid-template-columns: 1fr 334px;
  gap: 76px;
  padding-top: 15rem;
}
#Victoria main .sec_kids_menu .heading .text_box h3 {
  font-size: 3.4rem;
  padding-bottom: 2rem;
  color: #717071;
}
#Victoria main .sec_kids_menu .heading .text_box p {
  font-size: 18px;
}
#Victoria main .sec_kids_menu .heading .text_box .float_img {
  float: right;
  margin-bottom: 1rem;
  width: 40%;
  max-width: 300px;
  height: auto;
  display: block;
}
#Victoria main .sec_kids_menu .heading .img_box {
  clear: both;
}
#Victoria main .sec_kids_menu .sec_price {
  padding-top: 5rem;
}
#Victoria main .info_text {
  padding-top: 6rem;
  padding-bottom: 10rem;
  text-align: center;
}
#Victoria main .info_text > span {
  font-size: 2rem;
  text-align: center;
  display: block;
  margin: auto;
  padding-bottom: 2rem;
}

/*＝＝＝＝＝＝ldm＝＝＝＝＝＝*/
#Products main .top_heading h2 {
  font-size: clamp(3rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5rem 0 4rem;
}
#Products main .top_heading h2 .text_s {
  font-size: 2.4rem;
  display: block;
}
#Products main .top_heading .caption {
  font-size: 27px;
  text-align: center;
  padding-bottom: 33px;
}
#Products main .top_heading .descri {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 400px;
  justify-content: center;
  margin: auto;
  padding-bottom: 10rem;
}
#Products main .before-after .before-after-heading {
  padding-top: 16rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 3vw, 70px);
}
#Products main .before-after .bg_leaf {
  left: -22rem;
}
#Products main .before-after .text_wrap h3 {
  font-size: 47px;
  color: #eaaea0;
  padding-bottom: 1rem;
}
#Products main .before-after .text_wrap h3 > span {
  font-size: 35px;
  color: #717071;
}
#Products main .before-after .text_wrap p {
  font-size: clamp(20px, 2.2vw, 23px);
  line-height: 1.7;
}
#Products main .before-after .grid_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
  padding-top: 10rem;
}
#Products main .before-after .grid_box .item h4 {
  font-size: clamp(2.4rem, 3vw, 3.9rem);
  margin-bottom: 0.5rem;
  color: #eaaea0;
}
#Products main .before-after .grid_box .item .underline {
  position: relative;
  height: 2px;
  background-color: #eaaea0;
  margin: 0 auto 1rem;
  width: 100%;
  border-radius: 2px;
  margin-bottom: 30px;
}
#Products main .before-after .grid_box .item .underline .triangle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-top: 20px solid #eaaea0;
}
#Products main .before-after .grid_box .item img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
#Products main .menu_wrap .menu_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
}
#Products main .menu_wrap .menu_grid h3 {
  font-size: 3.4rem;
  padding-bottom: 3rem;
  text-align: center;
  height: 75px;
}
#Products main .menu_wrap .menu_grid h3 > span {
  font-size: 24px;
  display: block;
}
#Products main .menu_wrap .menu_grid .image01 {
  padding-bottom: 3rem;
  max-width: 280px;
  margin: auto;
}
#Products main .menu_wrap .menu_grid .machine_wrap {
  display: grid;
  grid-template-columns: 56% 44%;
  position: relative;
  max-width: 381px;
  padding-top: 2rem;
}
#Products main .menu_wrap .menu_grid .machine_wrap::after {
  content: "";
  display: block;
  width: 339px;
  height: 341px;
  background: url(/images/products/machine02.png) no-repeat;
  position: absolute;
  right: -109px;
  /* top: -4px; */
  background-size: contain;
  bottom: -34px;
  margin-right: auto;
}
@media (max-width: 950px) {
  #Products main .menu_wrap .menu_grid .machine_wrap::after {
    height: 310px;
    position: absolute;
    right: -135px;
  }
}
#Products main .menu_wrap .menu_grid p {
  font-size: 1.8rem;
}
#Products main .menu_wrap .menu_grid .left_col, #Products main .menu_wrap .menu_grid .box01, #Products main .menu_wrap .menu_grid .box02 {
  margin-top: 8.6rem;
  padding: 45px 36px 30px;
}
#Products main .menu_wrap .menu_grid .left_col .text_wrap {
  font-size: 1.8rem;
}
#Products main .menu_wrap .menu_grid .left_col .price {
  text-align: center;
  padding-top: 2rem;
}
#Products main .menu_wrap .menu_grid .box02 {
  margin-top: 5rem;
}
#Products main .menu_wrap .menu_grid .box02 h4 {
  padding-top: 2rem;
}
#Products main .menu_wrap .menu_grid .box02 .border_red {
  height: 6px;
  background-color: #801b4d;
  width: 100%;
  margin-top: 2rem;
}
#Products main .menu_wrap .menu_grid .box02 .flow {
  padding-bottom: 2rem;
}
#Products main .menu_wrap .menu_grid .box02 .select_wrap {
  padding-top: 2rem;
}
#Products main .menu_wrap .menu_grid .box02 .text_right {
  text-align: right;
}
#Products main .menu_wrap .menu_grid .right_col .flow {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
#Products main .menu_wrap .menu_grid .box_shadow {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 -4px 8px rgba(0, 0, 0, 0.05);
}
#Products main .menu_wrap .menu_grid .silver_box {
  background: url(/images/products/silver_bg.png) no-repeat center;
  background-size: cover;
  padding: 1rem 2rem 2rem;
  border-radius: 20px;
  margin-bottom: 30px;
  margin-top: 4rem;
}
#Products main .menu_wrap .menu_grid .title {
  background-color: white;
  border-radius: 30px;
  padding: 4px 20px;
  text-align: center;
  margin-bottom: 20px;
}
#Products main .menu_wrap .menu_grid .golden_box {
  background: url(/images/products/gold_bg.png) no-repeat center;
  background-size: cover;
  padding: 1rem 2rem 2rem;
  border-radius: 20px;
}
#Products main .menu_wrap .menu_grid .border_red {
  height: 6px;
  background-color: #801b4d;
  width: 100%;
  margin-top: 3rem;
}
#Products main .menu_wrap .price-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#Products main .menu_wrap .price-list .price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 1.9rem;
  padding-bottom: 1rem;
  background: url(/images/victoria/border-dotted.svg) repeat-x center bottom;
  align-items: center;
}
#Products main .menu_wrap .price-list .price-row .price-value {
  text-align: right;
  line-height: 1.4;
}
#Products main .menu_wrap .price-list .price-row .price-value:last-child {
  border-bottom: none;
}
#Products main .menu_wrap .price-list .price-row .price-value .price-note {
  font-size: 1.6rem;
  color: #888;
  display: block;
  margin-top: 4px;
}
#Products main .menu_wrap .price-list .price-row:last-child {
  background: none;
}
#Products main .link_box {
  padding: 16rem 0 16rem;
}