@charset "UTF-8";
/*==========================================
コンポーネントファイル
===========================================*/
/*
# パンくずリスト
------------------------*/
div .bread {
  font-size: var(--font-size-14);
  position: relative;
  z-index: 100;
}
div .bread .breadcrumbs {
  position: absolute;
  width: 1080px;
  margin: 0 auto;
  inset: 10px auto auto 0;
  gap: 10px 20px;
}
div .bread li {
  color: var(--primary-color);
  position: relative;
}
div .bread li::after {
  content: " > ";
  color: var(--body-font-color);
  position: absolute;
  inset: 0 -15px 0 auto;
  margin: auto 0;
}
div .bread li:last-child::after {
  content: "";
}
div .bread li a {
  color: var(--body-font-color);
}
div .bread li a:hover {
  text-decoration: underline;
}

/*
# 一覧ぺージ用カテゴリ(セレクトボックス)
------------------------*/
.global-select {
  width: 300px;
  margin: 0 0 45px auto;
}
.global-select select {
  padding: 15px 37px 15px 15px;
}

/*
# c-voice__button
------------------------*/
.c-voice__button {
  width: 800px;
  height: 240px;
  margin: 155px auto 0;
  padding: 0 55px;
  background: url(../img/common/voice-btn_bg.png) left center no-repeat;
}
.c-voice__button::before {
  position: absolute;
  content: "";
  inset: auto 10px 10px auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 0px 16px 16px;
  border-color: transparent transparent var(--color-white) transparent;
  z-index: 1;
}
.c-voice__button:hover {
  transform: scale(0.97);
}
.c-voice__button .section-title {
  margin-bottom: 0;
}
.c-voice__button .section-title .title-en {
  color: var(--color-white);
  padding: 0 20px;
}

/*
# c-contact__section
------------------------*/
.c-contact__section {
  padding: 105px 0;
  background: url(../img/common/contact_bg.jpg) center/cover no-repeat;
  border-top: 3px solid var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
}
.c-contact__section .contact__inbox {
  padding: 65px 0;
  background: rgba(var(--color-white-rgb), 0.7);
}
.c-contact__section .contact__title {
  margin-bottom: 30px;
}
.c-contact__section .contact__title .title-en {
  padding: 0 20px;
}
.c-contact__section .contact__title .title-en::before, .c-contact__section .contact__title .title-en::after {
  background: radial-gradient(ellipse at center, var(--primary-color-extralight) 20%, transparent 100%);
}
.c-contact__section .contact__text {
  margin-bottom: 30px;
}

/*
# c-post__tags
------------------------*/
.c-post__tags {
  gap: 7px;
}
.c-post__tags .c-post__tag {
  font-size: var(--font-size-15);
  padding-left: 35px;
  background: url(../img/top/news-tag_ic.png) left center no-repeat;
}

/*
# c-sns__buttons
------------------------*/
.c-sns__buttons {
  gap: 25px 80px;
}
.c-sns__buttons .c-sns__button {
  width: 340px;
}
.c-sns__buttons .c-sns__button-link {
  height: 62px;
}
.c-sns__buttons .c-sns__button-link span {
  padding: 5px 0 5px 45px;
}
.c-sns__buttons .c-sns__button-link:hover {
  opacity: 1;
  background: var(--primary-color);
  color: var(--color-white);
  transform: scale(0.97);
}
.c-sns__buttons .c-sns__button.sns__button--instagram span {
  background: url(../img/common/sns/Instagram_Glyph_Gradient.svg) left center/30px no-repeat;
}
.c-sns__buttons .c-sns__button.sns__button--line span {
  background: url(../img/common/sns/LINE_logo.svg) left center/30px no-repeat;
}

/*
# c-page__list
------------------------*/
.c-page__list {
  gap: 45px 80px;
  padding: 100px 0;
}
.c-page__list .page__item {
  width: 500px;
}
.c-page__list .page__item-link {
  height: 180px;
  background-repeat: no-repeat;
  background-position: left 35px center;
}
.c-page__list .page__item-link::before {
  position: absolute;
  content: "";
  inset: auto 10px 10px auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 0px 16px 16px;
  border-color: transparent transparent var(--color-white) transparent;
  z-index: 1;
}
.c-page__list .page__item-link:hover {
  transform: scale(0.97);
}
.c-page__list .page__item--skeletal .page__item-link {
  background-image: url(../img/self/skeletal-button_ic.png);
  background-position: left 25px center;
}
.c-page__list .page__item--self .page__item-link {
  background-image: url(../img/skeletal/self-button_ic.png);
}
.c-page__list .page__item--salon .page__item-link {
  background-image: url(../img/skeletal/salon-button_ic.png);
}
.c-page__list .page__item-title {
  width: 100%;
  margin: 0 auto;
  text-align: left;
  padding: 0 25px 0 115px;
}
.c-page__list .page__item-title .title-ja {
  font-size: var(--font-size-24);
}
.c-page__list .page__item-title .title-en {
  color: var(--color-white);
  font-size: var(--font-size-16);
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-table tr {
  display: flex;
  padding: 20px 0;
}
.com-table tr th {
  padding: 0 10px;
  width: 180px;
  vertical-align: top;
}
.com-table tr td {
  width: calc(100% - 180px);
  padding: 0 20px;
}
.com-table tr td a[href^="mailto:"] {
  text-decoration: underline;
}
.com-table tr td .tel__text {
  display: block;
  line-height: 1.3;
}

/*==========================================
共通ブロック・要素
===========================================*/
.com-content p {
  margin-bottom: 30px;
}

.com-text.align-center {
  text-align: center;
}

#g-map .map {
  height: 445px;
}

/*
# com-frame
------------------------*/
.com-frame {
  position: relative;
  z-index: 1;
  padding: 70px 0 80px;
}
.com-frame::before, .com-frame::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 90px;
  background: url(../img/common/com_frame.png) top center/100% no-repeat;
  left: 0;
  right: 0;
  z-index: -1;
}
.com-frame::before {
  top: 0;
}
.com-frame::after {
  transform: rotate(180deg);
  bottom: 0;
}

/*
# com-button
------------------------*/
.com-button {
  width: 160px;
  min-height: 40px;
  font-family: var(--font-secondary);
  background: var(--primary-color);
  color: var(--color-white);
  line-height: 2.5;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.com-button::before, .com-button::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 2px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background: var(--color-white);
  z-index: 1;
}
.com-button::before {
  left: 0;
}
.com-button::after {
  right: -10px;
  opacity: 0;
}
.com-button:hover {
  opacity: 1;
  background: #8b006c;
  transform: translateX(10px);
}
.com-button:hover::before {
  left: -10px;
  opacity: 0;
}
.com-button:hover::after {
  right: 0;
  opacity: 1;
}

/*==========================================
共通タイトル
===========================================*/
.section-title {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  background: url(../img/common/section-ttl_detted.png) bottom center no-repeat;
}
.section-title .title-ja {
  line-height: 1.7391304348;
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-46);
  display: block;
}
.section-title .title-ja span {
  color: var(--primary-color);
}
.section-title .title-en {
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-regular);
  font-family: var(--font-secondary);
  color: var(--primary-color);
  position: relative;
}
.section-title.bg-none {
  background: none;
  padding-bottom: 0;
}
.section-title.align-left {
  text-align: left;
}

.headline-title {
  font-size: var(--font-size-34);
  color: var(--primary-color);
  margin-bottom: 20px;
}

/*==========================================
header
===========================================*/
.headline-width {
  width: clamp(1200px, 92.7083%, 1780px);
  margin: 0 auto;
}

#header {
  padding: 20px 3.6%;
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  background: var(--color-white);
}
#header .header__logo {
  line-height: 1;
}
#header .header__nav-list {
  gap: 15px 40px;
}
#header .header__nav .text-ja {
  font-size: var(--font-size-17);
}
#header .header__nav .text-en {
  font-size: var(--font-size-12);
  letter-spacing: 0.05em;
}
#header .header__nav-link {
  text-align: center;
}
#header .header__nav-link.current .text-en {
  color: var(--color-gray-dark);
}

/*==========================================
mv
===========================================*/
#top-mv {
  height: clamp(550px, 39.062vw, 750px);
  background: url(../img/top/mv/mv_bg.jpg) center/cover no-repeat;
  border-bottom: 2px solid var(--primary-color);
  margin-top: 92px;
}
#top-mv::before {
  position: absolute;
  content: "";
  z-index: 1;
  width: 23.595%;
  max-width: 420px;
  height: clamp(220px, 16.666vw, 320px);
  inset: auto auto -21.3333% -3.6458%;
  background: url(../img/top/mv/mv-lb_img.jpg) center/100% no-repeat;
}
#top-mv .mv__catch {
  width: 305px;
  inset: 14% auto auto calc(50% - 380px);
}
#top-mv .mv__catch .catch-ja {
  margin-left: auto;
  writing-mode: vertical-rl;
  font-size: clamp(4rem, 2.83vw, 5.4rem);
}
#top-mv .mv__catch .catch-ja .border-right::after {
  width: 3px;
  height: 90%;
  position: absolute;
  content: "";
  inset: 0 -5px auto auto;
  background: var(--color-white);
}
#top-mv .mv__catch .catch-en {
  font-size: clamp(1.6rem, 1.05vw, 2rem);
  margin-top: -20px;
}

/*==========================================
footer
===========================================*/
#footer {
  padding: 95px 0;
}
#footer .fixed__sns-list {
  inset: auto 1.5% 150px auto;
  width: 30px;
  z-index: 100;
}
#footer .fixed__sns-list .fixed__sns-item {
  margin-bottom: 25px;
}
#footer .fixed__sns-list .fixed__sns-item:last-child {
  margin-bottom: 0;
}
#footer .footer__inbox {
  position: relative;
}
#footer .footer__logo {
  display: inline-block;
  padding-bottom: 60px;
}
#footer .footer__right {
  width: 690px;
  position: relative;
  z-index: 1;
}
#footer .footer__nav {
  width: 375px;
}
#footer .footer__nav-list {
  -moz-column-count: 2;
       column-count: 2;
}
#footer .footer__nav-item {
  width: 100%;
  display: inline-block;
  margin-bottom: 10px;
  font-size: var(--font-size-15);
}
#footer .footer__nav-item:nth-child(odd) {
  margin-right: 15px;
}
#footer .footer__nav-link {
  padding-left: 18px;
}
#footer .footer__nav-link::before {
  left: 0;
}
#footer .footer__nav-link::after {
  background: none;
}
#footer .footer__nav-link:hover {
  text-decoration: underline;
}
#footer .footer__nav-sub-list {
  position: absolute;
  inset: auto 0 0 auto;
  z-index: -1;
}
#footer .footer__nav-sub-list .footer__nav-sub-item::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 14px;
  background: var(--body-font-color);
  inset: 0 0 0 auto;
  margin: auto 0;
}
#footer .footer__nav-sub-list .footer__nav-sub-item:last-child::after {
  background: none;
}
#footer .footer__nav-sub-list .footer__nav-sub-item:last-child .footer__nav-sub-link {
  padding-right: 0;
}
#footer .footer__nav-sub-list .footer__nav-sub-link {
  font-size: var(--font-size-13);
  padding: 0 20px;
}
#footer .footer__nav-sub-list .footer__nav-sub-link:hover {
  text-decoration: underline;
}

#copyright {
  position: absolute;
  inset: auto auto 0 0;
  word-break: normal;
  text-align: center;
}
#copyright small {
  font-size: var(--font-size-11);
}

/*==========================================
ページトップ
===========================================*/
.pagetop {
  font-size: var(--font-size-13);
  position: fixed;
  bottom: 5%;
  right: 1%;
  z-index: 999;
}
.pagetop::before {
  position: absolute;
  inset: -25px 0 auto;
  margin: 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--color-white);
  font-size: var(--font-size-10);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagetop:hover {
  transform: scale(0.95);
}

/*==========================================
sv
===========================================*/
.lower-sv {
  height: clamp(370px, 23.437vw, 450px);
  border-bottom: 2px solid var(--primary-color);
  margin-top: 92px;
}
.lower-sv .sv__title {
  inset: auto 0 13.333%;
}
.lower-sv .sv__title .title-ja {
  font-size: clamp(3rem, 2.825vw, 5.4rem);
  padding: 15px 0;
  margin-bottom: 40px;
}
.lower-sv .sv__title .title-ja:first-letter {
  color: var(--primary-color);
}
.lower-sv .sv__title .title-ja::before, .lower-sv .sv__title .title-ja::after {
  position: absolute;
  content: "";
  background: var(--color-white);
  left: 0;
  height: 3px;
}
.lower-sv .sv__title .title-ja::before {
  width: 440px;
  top: 0;
}
.lower-sv .sv__title .title-ja::after {
  width: 640px;
  bottom: 0;
}
.lower-sv .sv__title .title-en {
  font-size: var(--font-size-20);
  padding-left: 20px;
}

#skeletal-sv {
  background: url(../img/sv/sv_blur.png) left center/56.7977% 100% no-repeat, url(../../img/sv/skeletal-sv_bg.jpg) center/cover no-repeat;
}

#self-sv {
  background: url(../img/sv/sv_blur.png) left center/56.7977% 100% no-repeat, url(../../img/sv/self-sv_bg.jpg) center/cover no-repeat;
}

#voice-sv {
  background: url(../img/sv/sv_blur.png) left center/56.7977% 100% no-repeat, url(../../img/sv/voice-sv_bg.jpg) center/cover no-repeat;
}

#salon-sv {
  background: url(../img/sv/sv_blur.png) left center/56.7977% 100% no-repeat, url(../../img/sv/salon-sv_bg.jpg) center/cover no-repeat;
}

#blog-sv {
  background: url(../img/sv/sv_blur.png) left center/56.7977% 100% no-repeat, url(../../img/sv/blog-sv_bg.jpg) center/cover no-repeat;
}

#contact-sv {
  background: url(../img/sv/sv_blur.png) left center/56.7977% 100% no-repeat, url(../../img/sv/contact-sv_bg.jpg) center/cover no-repeat;
}

#complete-sv {
  background: url(../img/sv/sv_blur.png) left center/56.7977% 100% no-repeat, url(../../img/sv/complete-sv_bg.jpg) center/cover no-repeat;
}

#privacy-sv {
  background: url(../img/sv/sv_blur.png) left center/56.7977% 100% no-repeat, url(../../img/sv/privacy-sv_bg.jpg) center/cover no-repeat;
}

#site-sv {
  background: url(../img/sv/sv_blur.png) left center/56.7977% 100% no-repeat, url(../../img/sv/site-sv_bg.jpg) center/cover no-repeat;
}

#e404-sv {
  background: url(../img/sv/sv_blur.png) left center/56.7977% 100% no-repeat, url(../../img/sv/e404-sv_bg.jpg) center/cover no-repeat;
}

/*==========================================
top
===========================================*/
.top-bg {
  background: url(../img/top/top_grd.png) top center no-repeat;
  padding-top: 15.625%;
  margin-top: -15.625%;
}

/*
# top-concept
------------------------*/
#top-concept {
  padding: 9.895% 0 17.96875%;
  position: relative;
}
#top-concept .concept__title .title-en {
  padding-left: 20px;
}
#top-concept .concept__title .title-en::after {
  background: none;
}
#top-concept .concept__imgs {
  position: absolute;
  inset: 300px auto auto 8.8541%;
  width: 39.0625%;
  text-align: right;
}
#top-concept .concept__content {
  width: 500px;
  margin-left: auto;
}

/*
# top-worries
------------------------*/
#top-worries {
  padding: 0 0 10.4166%;
}
#top-worries .worries__inbox {
  width: clamp(1150px, 66.6666%, 1280px);
}
#top-worries .worries__title .title-en {
  padding: 0 20px;
}
#top-worries .worries__title .title-en::before, #top-worries .worries__title .title-en::after {
  background: radial-gradient(ellipse at center, var(--primary-color-extralight) 20%, transparent 100%);
}
#top-worries .worries__text {
  width: 1080px;
  margin: 50px auto 0;
  padding: 35px 0;
}
#top-worries .worries__text span {
  font-size: var(--font-size-19);
  border-bottom: 2px solid var(--primary-color-light);
}

.com-worries__list {
  width: 1030px;
  margin: 0 auto;
  row-gap: 10px;
}
.com-worries__list .worries__item {
  width: 470px;
  padding-left: 40px;
  font-size: var(--font-size-20);
}
.com-worries__list .worries__item::before {
  width: 28px;
  height: 28px;
  inset: 0 auto 0 0;
  border: 3px solid var(--primary-color-light);
  border-radius: 50%;
  color: var(--primary-color);
  font-size: var(--font-size-30);
  background: var(--color-white);
}
.com-worries__list .worries__item span {
  padding: 0 5px;
}

/*
# top-reason
------------------------*/
#top-reason {
  padding: 9.6354% 0 25px;
  position: relative;
}
#top-reason .reason__inbox {
  position: relative;
}
#top-reason .reason__img {
  position: absolute;
  inset: auto auto 0 -160px;
}
#top-reason .reason__title {
  margin-bottom: 95px;
}
#top-reason .reason__title .title-en {
  padding-left: 20px;
}
#top-reason .reason__title .title-en::before {
  background: radial-gradient(ellipse at center, var(--primary-color-extralight) 20%, transparent 100%);
}
#top-reason .reason__title .title-en::after {
  background: none;
}
#top-reason .reason__list {
  width: 665px;
  margin-left: auto;
}
#top-reason .reason__item {
  margin-bottom: 55px;
  padding-left: 165px;
}
#top-reason .reason__item:nth-child(1) {
  background: url(../img/top/reason-item01_ic.png) left center no-repeat;
}
#top-reason .reason__item:nth-child(2) {
  background: url(../img/top/reason-item02_ic.png) left center no-repeat;
}
#top-reason .reason__item:nth-child(3) {
  background: url(../img/top/reason-item03_ic.png) left center no-repeat;
}
#top-reason .reason__item:last-child {
  margin-bottom: 0;
}
#top-reason .reason__item-title {
  font-size: var(--font-size-34);
  margin-bottom: 10px;
}
#top-reason .reason__top-img {
  position: absolute;
  inset: -55px 0 auto auto;
  width: 50%;
}

/*
# top-self
------------------------*/
#top-self {
  padding: 18.4895% 0 10.4166%;
  background: url(../img/top/self_bg.png) center top/cover no-repeat;
}
#top-self .self__title {
  margin-bottom: 85px;
}
#top-self .self__title .title-en {
  padding: 0 20px;
}
#top-self .self__part {
  margin-bottom: 100px;
  width: 800px;
  padding: 40px 0 55px;
}
#top-self .self__part:nth-of-type(odd) {
  padding-left: 140px;
  padding-right: 50px;
  margin-left: auto;
}
#top-self .self__part:nth-of-type(even) {
  padding-left: 50px;
  padding-right: 120px;
}
#top-self .self__part-title {
  font-size: var(--font-size-30);
  line-height: 1.6666666667;
  margin-bottom: 25px;
}
#top-self .self__part-img {
  position: absolute;
  top: -40px;
}
#top-self .self__part-caption {
  writing-mode: vertical-rl;
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-medium);
  bottom: 0;
}
#top-self .self__part-text {
  color: var(--primary-color);
  margin-bottom: 30px;
}
#top-self .self__part:nth-of-type(odd) .self__part-img {
  left: -160px;
}
#top-self .self__part:nth-of-type(odd) .self__part-img img {
  box-shadow: 2px 2px var(--primary-color);
}
#top-self .self__part:nth-of-type(odd) .self__part-caption {
  left: -25px;
}
#top-self .self__part:nth-of-type(even) .self__part-img {
  right: -160px;
}
#top-self .self__part:nth-of-type(even) .self__part-img img {
  box-shadow: -2px 2px var(--primary-color);
}
#top-self .self__part:nth-of-type(even) .self__part-caption {
  right: -25px;
}

/*
# top-info
------------------------*/
#top-info {
  padding: 10.1562% 0 8.8541%;
}
#top-info .info__title {
  margin-bottom: 45px;
}
#top-info .info__title .title-en {
  padding: 0 20px;
}
#top-info .info__title .title-en::before, #top-info .info__title .title-en::after {
  background: radial-gradient(ellipse at center, var(--primary-color-extralight) 20%, transparent 100%);
}
#top-info .info__content {
  width: 500px;
}
#top-info .info__content .info__table {
  padding: 25px;
}
#top-info .info__content .info__table tr {
  padding: 0;
  margin-bottom: 10px;
  border-bottom: none;
}
#top-info .info__content .info__table tr:last-child {
  margin-bottom: 0;
}
#top-info .info__content .info__table tr th {
  width: 100px;
  text-align: right;
  margin-right: 20px;
}
#top-info .info__content .info__button {
  margin: 60px auto 0;
}
#top-info #g-map {
  width: 500px;
}

/*
# top-news
------------------------*/
#top-news {
  padding: 135px 0 110px;
}
#top-news .news__inbox {
  position: relative;
  min-height: 305px;
}
#top-news .news__title .title-en {
  padding: 0 20px;
}
#top-news .news__title .title-en::before, #top-news .news__title .title-en::after {
  background: radial-gradient(ellipse at center, var(--primary-color-extralight) 20%, transparent 100%);
}
#top-news .news__post-list {
  width: 742px;
}
#top-news .news__post {
  margin-bottom: 20px;
}
#top-news .news__post-link {
  padding: 25px 0;
  display: grid;
  grid-template-columns: 1fr 5fr;
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
}
#top-news .news__post-link:hover {
  opacity: 1;
  transform: translateX(10px);
  background: var(--primary-color-light);
}
#top-news .news__post-link:hover .news__post-title {
  text-decoration: underline;
}
#top-news .news__post:last-child {
  margin-bottom: 0;
}
#top-news .news__post-date {
  font-size: var(--font-size-14);
  grid-area: 1/1/3/2;
  text-align: center;
}
#top-news .news__post .c-post__tags {
  grid-area: 1/2/2/3;
}
#top-news .news__post-title {
  grid-area: 2/2/3/3;
  font-size: var(--font-size-16);
}
#top-news .news__button {
  position: absolute;
  inset: 165px auto auto 15px;
}

/*==========================================
skeletal
===========================================*/
.skeletal-bg {
  background: url(../img/skeletal/skeletal_grd.png) top center no-repeat;
  padding-top: 15.625%;
  margin-top: -15.625%;
}

/*
# skeletal-about
------------------------*/
#skeletal-about .about__theory {
  position: relative;
  margin-bottom: 80px;
}
#skeletal-about .theory__content {
  width: 500px;
  min-height: 460px;
}
#skeletal-about .theory__img {
  position: absolute;
  inset: 0 0 auto auto;
}
#skeletal-about .about__reason {
  text-align: center;
  margin-bottom: 55px;
}
#skeletal-about .reason__text span {
  font-size: var(--font-size-18);
}
#skeletal-about .about__strengths {
  padding: 50px 60px;
}
#skeletal-about .about__strengths .strengths__title {
  text-align: center;
  font-size: var(--font-size-30);
  margin-bottom: 35px;
}
#skeletal-about .about__strengths .strengths__item {
  margin-bottom: 40px;
}
#skeletal-about .about__strengths .strengths__item:last-child {
  margin-bottom: 0;
}
#skeletal-about .about__strengths .strengths__item::before {
  position: absolute;
  content: "";
  width: 57px;
  height: 68px;
  inset: -8px auto auto 18px;
  background: url(../img/skeletal/strength-item_ic.png) center/100% no-repeat;
}
#skeletal-about .about__strengths .strengths__item-title {
  font-size: var(--font-size-24);
  margin-bottom: 10px;
  padding-left: 90px;
}
#skeletal-about .about__strengths .strengths__item-text {
  padding: 20px;
}

/*
# skeletal-basic
------------------------*/
.com-part {
  width: 1080px;
  margin: 0 auto 100px;
}
.com-part__img {
  position: absolute;
  top: -40px;
}
.com-part__content {
  width: 680px;
  padding: 55px 0 40px;
  min-height: 460px;
}
.com-part__text span {
  font-size: var(--font-size-20);
}
.com-part:nth-of-type(odd) .com-part__img {
  right: 0;
}
.com-part:nth-of-type(odd) .com-part__content {
  padding-left: 50px;
  padding-right: 100px;
}
.com-part:nth-of-type(even) .com-part__img {
  left: 0;
}
.com-part:nth-of-type(even) .com-part__content {
  margin-left: auto;
  padding-left: 100px;
  padding-right: 50px;
}

.com-recommended {
  width: 1080px;
  padding: 50px 0;
  border-top: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  margin: 0 auto 80px;
}
.com-recommended .recommended__title {
  text-align: center;
  font-size: var(--font-size-30);
  margin-bottom: 30px;
}
.com-recommended .recommended__list {
  width: 950px;
  margin: 0 auto;
}
.com-recommended .recommended__item {
  width: 860px;
  margin-bottom: 20px;
  font-size: var(--font-size-24);
  padding: 10px 15px 10px 75px;
  background-image: url(../img/skeletal/recommend_ic.svg);
  background-size: 42px 38px;
  background-repeat: no-repeat;
  background-position: 20px 50%;
  background-color: rgba(var(--color-white-rgb), 0.75);
  border-left: 6px solid var(--primary-color-light);
}
.com-recommended .recommended__item:last-child {
  margin-bottom: 0;
}
.com-recommended .recommended__item.ml-auto {
  margin-left: auto;
}

#skeletal-basic {
  background: url(../img/skeletal/basic_bg.png) center top/cover no-repeat;
}
#skeletal-basic .basic__title .title-ja {
  line-height: 1.0869565217;
}
#skeletal-basic .basic__text {
  margin-bottom: 110px;
}
#skeletal-basic .basic__instructor {
  margin-bottom: 90px;
}
#skeletal-basic .basic__instructor .instructor__inner {
  margin-bottom: 80px;
}
#skeletal-basic .basic__instructor .instructor__inner:last-child {
  margin-bottom: 0;
}
#skeletal-basic .basic__instructor .instructor__title {
  text-align: center;
  margin-bottom: 35px;
}
#skeletal-basic .basic__instructor .instructor__content {
  width: 500px;
  min-height: 480px;
}
#skeletal-basic .basic__instructor .instructor__img {
  width: 520px;
  height: 520px;
}
#skeletal-basic .basic__instructor .instructor__img img {
  width: 480px;
  height: 480px;
  box-shadow: 40px 40px var(--primary-color-light);
}
#skeletal-basic .basic__instructor .instructor__name span {
  font-size: var(--font-size-20);
}
#skeletal-basic .basic__price {
  background: #fbf7fe;
  padding: 50px;
}
#skeletal-basic .basic__price .price__title {
  text-align: center;
  margin-bottom: 30px;
}
#skeletal-basic .basic__price .price__text {
  margin-bottom: 30px;
}
#skeletal-basic .basic__price .menu__item {
  padding: 15px 55px 15px 95px;
}
#skeletal-basic .basic__price .menu__item:nth-child(odd) {
  background: var(--color-white);
}
#skeletal-basic .basic__price .menu__item-title {
  width: 200px;
}
#skeletal-basic .basic__price .menu__item-text {
  max-width: 400px;
}
#skeletal-basic .basic__price .menu__item.menu__item-course .menu__item-title {
  text-align: right;
}

/*==========================================
self
===========================================*/
.self-bg {
  background: url(../img/self/self_grd.png) top center no-repeat;
  padding-top: 15.625%;
  margin-top: -15.625%;
}

/*
# self-care
------------------------*/
#self-care .care__worries {
  margin-bottom: 115px;
}
#self-care .care__worries .worries__title {
  text-align: center;
}
#self-care .care__worries .com-worries__list {
  margin-bottom: 60px;
}
#self-care .care__worries .worries__text span {
  font-size: var(--font-size-20);
}

/*
# care__support
------------------------*/
.care__support {
  padding: 45px 0;
  border-top: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  margin-bottom: 80px;
}
.care__support .support__title {
  text-align: center;
  margin-bottom: 30px;
}
.care__support .support__text span {
  font-size: var(--font-size-20);
}

/*
# care__course
------------------------*/
.care__course {
  width: 1080px;
  margin: 0 auto 60px;
}
.care__course .course__title {
  font-size: var(--font-size-24);
  padding: 25px 0 25px 60px;
  z-index: 1;
  margin-bottom: 15px;
}
.care__course .course__title::before {
  width: 85px;
  height: 85px;
  inset: 0 auto 0 0;
  background: radial-gradient(ellipse at center, var(--primary-color-extralight) 20%, transparent 100%);
  z-index: -1;
}
.care__course .course__title::after {
  background: none;
}
.care__course .course__img {
  width: 320px;
  height: 270px;
}
.care__course .course__list {
  width: 710px;
  padding: 30px;
}
.care__course .course__item {
  margin-bottom: 20px;
}
.care__course .course__item:last-child {
  margin-bottom: 0;
}
.care__course .course__item dt {
  width: 95px;
  text-align: center;
}
.care__course .course__item dd {
  width: calc(100% - 155px);
}

/*==========================================
voice
===========================================*/
.voice-bg {
  background: url(../img/voice/voice_grd.png) top center no-repeat;
  padding-top: 15.625%;
  margin-top: -15.625%;
}

#voice-arvhice .voice__text {
  margin-bottom: 40px;
}
#voice-arvhice .voice__tags {
  padding: 50px 85px;
  margin-bottom: 50px;
  gap: 20px;
}
#voice-arvhice .voice__tags .voice__tag-link {
  width: -moz-fit-content;
  width: fit-content;
  padding: 7px 50px;
}
#voice-arvhice .voice__tags .voice__tag-link.current {
  background: #8b006c;
}
#voice-arvhice .voice__post {
  padding: 60px;
  margin-bottom: 50px;
}
#voice-arvhice .voice__post:last-child {
  margin-bottom: 0;
}
#voice-arvhice .voice__post .voice__post-bfaf {
  gap: 160px;
  margin-bottom: 40px;
}
#voice-arvhice .voice__post .voice__post-bfaf::before {
  opacity: 0;
  position: absolute;
  inset: 0;
  margin: auto;
  color: var(--primary-color);
  font-size: var(--font-size-35);
}
#voice-arvhice .voice__post .voice__post-bfaf:has(.voice__img--after)::before {
  opacity: 1;
}
#voice-arvhice .voice__post-img {
  width: 400px;
  height: 280px;
}
#voice-arvhice .voice__post-title {
  padding: 25px;
  margin-bottom: 25px;
}
#voice-arvhice .voice__post .c-post__tags {
  justify-content: flex-end;
  margin-bottom: 30px;
}
#voice-arvhice .voice__post .voice__post-prof {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 20px auto;
  font-size: var(--font-size-14);
  padding: 3px 10px;
}

/*==========================================
salon
===========================================*/
.salon-bg {
  background: url(../img/salon/salon_grd.png) top center no-repeat;
  padding-top: 15.625%;
  margin-top: -15.625%;
}

/*
# salon-greeting
------------------------*/
#salon-greeting .greeting__inbox {
  border-bottom: 2px solid var(--primary-color);
}
#salon-greeting .greeting__content {
  width: 500px;
}

/*
# salon-info
------------------------*/
#salon-info .info__table {
  margin-bottom: 50px;
  padding: 15px;
}
#salon-info .info__table tr {
  border-bottom: none;
}
#salon-info .info__table th {
  text-align: right;
}
#salon-info .info__table td {
  padding: 0 65px;
}

/*==========================================
news
===========================================*/
.column__wrap .column__list .column__post a {
  padding: 45px 0;
}
.column__wrap .column__list .column__post-meta time {
  width: 95px;
}
.column__wrap .column__list .column__post-meta time,
.column__wrap .column__list .column__post-meta .category-label {
  font-size: var(--font-size-14);
}
.column__wrap .column__list .column__post-meta .category-label {
  width: calc(100% - 115px);
  gap: 5px;
}
.column__wrap .column__list .column__post-meta .category-label li {
  padding: 2px 10px;
}
.column__wrap .column__list .column__post-title {
  font-size: var(--font-size-23);
  margin: 10px 0;
}
.column__wrap .column__list .more-btn {
  width: 125px;
  font-size: var(--font-size-14);
  margin: inherit;
  margin-left: auto;
  font-weight: bold;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  box-sizing: border-box;
  padding: 5px 0;
  display: block;
  color: var(--color-white);
  transition: all 0.3s;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) a {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-thumb {
  width: 210px;
  height: 200px;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-thumb .img-eff {
  width: 100%;
  height: 100%;
  transition-duration: 0.3s;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-meta {
  width: 820px;
}

/*----------------------------------
  詳細ページのカテゴリー表示(タイトル下部)
  ----------------------------------*/
.single__post-meta {
  margin-bottom: 20px;
}
.single__post-meta time {
  font-size: var(--font-size-14);
  width: 95px;
  padding: 3px 0;
}
.single__post-meta .category-label {
  width: calc(100% - 95px);
  font-size: var(--font-size-14);
  gap: 5px;
  margin-left: 10px;
}
.single__post-meta .category-label li a {
  padding: 3px 10px;
}

/*==========================================
  contact
  ===========================================*/
#contact .contact__form {
  width: 980px;
  margin: 0 auto 55px;
}
#contact .contact__form-item .contact__form-label .required {
  margin-left: 10px;
}
#contact .contact__form-item .contact__form-input {
  padding: 15px 0;
}
#contact .contact__form-item .contact__form-input .contact__form-list {
  gap: 15px;
}
#contact .contact__form-item.contact__form-privacy .contact__form-label {
  text-align: center;
}
#contact .contact__form-value {
  padding: 20px 15px;
}
#contact .contact__form-select {
  width: 200px;
}
#contact .contact__form-select::after {
  inset: 0 16px 0 auto;
  width: 8px;
  height: 8px;
}
#contact .contact__form-select select {
  padding: 15px 30px 15px 10px;
}
#contact .contact__form #pc01,
#contact .contact__form #pc02 {
  width: 150px;
}
#contact .contact__form #address {
  margin-top: 15px;
}
#contact .contact__form #date1,
#contact .contact__form #date2,
#contact .contact__form #date3 {
  width: 300px;
}
#contact .contact__form textarea {
  height: 260px;
}
#contact .contact__form .upload-item-wrap .thumb {
  width: 200px;
  margin-right: 25px;
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap {
  width: 130px;
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap .ancion-btn,
#contact .contact__form .upload-item-wrap .ancion-btn-wrap .upload-button {
  font-size: var(--font-size-13);
}
#contact input[type=button],
#contact input[type=submit],
#contact .contact__submits-wrap button {
  height: 75px;
}
#contact .contact__submits-wrap {
  gap: 35px;
}
#contact .contact__submits-wrap .contact__submits-check {
  width: 304px;
}
#contact .contact__submits-wrap .contact__submits-back {
  width: 270px;
}
#contact .contact__submits-wrap .contact__submits-send {
  width: 240px;
}

/*==========================================
  privacy
  ===========================================*/
#privacy .privacy__content {
  margin-bottom: 70px;
}
#privacy .privacy__content:last-child {
  margin-bottom: 0;
}

/*==========================================
  site
  ===========================================*/
#site-map .sitemap__item-link {
  padding: 2% 0 2% 3%;
}

/*==========================================
  プライバシーポリシー(LPフレーム時)
  ===========================================*/