@charset "UTF-8";
/* CSS Document */

@media screen and (min-width: 320px) {
  /* スマホ用レイアウト 320px以上の範囲に収めるデザインはこの中に記述 */
  /*==============================================================
    　　コンセプト
  ==============================================================*/
  .concept {
    position: relative;
    padding: 0 20px 50px;
    margin-top: 50px;
  }

  .concept::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../img/section/section-about.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.16;
    z-index: -1;
  }

  .concept .section-title {
    position: relative;
    top: -15px;
  }

  .concept-lead {
    font-family: var(--font-serif);
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.18em;
    margin-top: 8px;
  }


  /*==============================================================
    　　スタッフ
  ==============================================================*/
  .staff {
    padding: 60px 20px 80px;
  }

  .staff__image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    margin-top: 30px;
  }

  .staff__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 40% 50%;
  }

  .staff-info__title {
    font-family: var(--font-serif);
    font-size: 25px;
    line-height: 1.2;
    margin-top: 5px;
  }

  .staff-info__item dt {
    font-family: var(--font-en);
    color: var(--color-text-sub);
    font-size: 13px;
    margin-top: 20px;
    line-height: 2;
    font-weight: 800;
  }

  .staff-info__item dd {
    font-family: var(--font-base);
    font-size: 13px;
    margin-top: 5px;
    line-height: 2;
    font-weight: 300;
    letter-spacing: 0.18em;
  }

  /*==============================================================
    　　施術について
  ==============================================================*/
  .treatment {
    background-color: rgba(var(--color-bg-sub-rgb), 0.06);
    padding-bottom: 80px;
    /* margin-bottom: 80px; */
  }

  .treatment .section-title {
    position: relative;
    top: -15px;
  }

  .tab-container {
    margin: 24px 15px 0;
    font-family: var(--font-base);
  }

  .tab-buttons {
    display: flex;
  }

  .tab-button {
    font-family: var(--font-serif);
    padding: 19px 10px 18px;
    border: none;
    cursor: pointer;
    background-color: #eee;
    flex: 1;
    font-weight: 500;
    text-align: center;
    /* border-radius: 15px 15px 0 0; */
    color: #9c9c9c;
    border-bottom: 2px solid #eee;
    letter-spacing: 0.18em;
    font-size: 15px;
    line-height: 1.62;
  }

  .tab-button.active {
    background-color: var(--color-bg-base);
    border-bottom: 2px solid var(--color-line-item);
    color: var(--color-text-sub);
  }

  .tab-content {
    display: none;
    padding: 40px 20px 56px;
    background-color: var(--color-bg-base);
  }

  .tab-content.active {
    display: block;
  }

  .treatment-item {
    margin-bottom: 40px;
  }

  .treatment .item-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--color-text-sub);
    margin-bottom: 24px;
  }

  .treatment .item-text,
  .treatment .item-list {
    font-family: var(--font-serif);
    font-size: 13px;
    line-height: 2;
    letter-spacing: 0.18em;
  }

  .treatment .title-sub {
    position: relative;
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    width: fit-content;
    z-index: 5;
  }

  .treatment .title-sub:before {
    display: block;
    content: "";
    background: var(--color-line-item);
    width: 100%;
    height: 10px;
    position: absolute;
    bottom: 2px;
    left: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.3;
  }

  .treatment .item-list {
    margin-bottom: 32px;
  }

  .treatment .item-list li {
    position: relative;
    padding-left: 16px;
  }

  .treatment .item-list li::before {
    content: '・';
    position: absolute;
    top: 0;
    left: 0;
  }

  /* ボタン */
  .treatment .btn-box {
    font-size: 14px;
    text-align: center;
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    row-gap: 16px;
    max-width: 270px;
    margin: 0 auto;
    margin-top: 52px;
  }

  .treatment .btn-01 {
    border: 1px solid var(--color-line-item);
    font-family: var(--font-serif);
    color: var(--color-text-sub);
    padding: 16px 0 18px;
  }

  .treatment .btn-02 {
    border: 1px solid var(--color-line-item);
    font-family: var(--font-serif);
    color: var(--color-text-white);
    background-color: var(--color-bg-sub);
    padding: 16px 0 18px;
  }

  /*==============================================================
    　　サロン情報
  ==============================================================*/
  .info {
    position: relative;
    padding: 0 0 75px;
  }

  .info::before {
    content: "";
    position: absolute;
    height: 270px;
    inset: 0;
    background-color: #F6F6F6;
    z-index: -1;
  }

  .info .section-title {
    position: relative;
    top: -15px;
    padding: 0;
  }

  .info-inner {
    padding: 0 20px;
  }

  .info-box {
    font-family: var(--font-base);
    background-color: var(--color-bg-base);
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .info-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(144, 114, 15, 0.2);
  }

  .info-item.end {
    border-bottom: none;
  }

  .info-box dt {
    font-size: 15px;
    color: var(--color-text-sub);
    letter-spacing: 0.2em;
    line-height: 2;
    font-weight: 500;
  }

  .info-box dd {
    font-size: 13px;
    letter-spacing: 0.18em;
    line-height: 2;
    font-weight: 300;
  }

  .map-inner {
    width: 100%;
    height: 345px;
    background-color: var(--color-bg-img);
    margin-top: 30px;
  }

}


@media screen and (min-width: 640px) {
  /* タブレット用レイアウト 640px以上の範囲に収めるデザインはこの中に記述 */
  /*==============================================================
    　　TB_コンセプト
  ==============================================================*/
  .concept {
    padding: 0 40px 85px;
    margin-top: 80px;
  }

  .concept-lead {
    font-size: 16px;
    margin-top: 40px;
    text-align: center;
  }

  /*==============================================================
    　　TB_スタッフ
  ==============================================================*/
  .staff {
    padding: 115px 0 135px;
    max-width: 345px;
    margin: 0 auto;
  }

  .staff__image {
    margin-top: 40px;
  }

  .staff-info__title {
    font-size: 28px;
  }

  /*==============================================================
    　　TB_施術について
  ==============================================================*/
  .treatment {
    padding-bottom: 120px;
  }

  .tab-container {
    margin: 40px 40px 0;
  }

  .tab-content {
    padding: 64px 40px 80px;
  }

  .tab-button {
    padding:  24px;
    font-size: 18px;
  }

  .tab-button.active {
    border-bottom: 3px solid var(--color-line-item);
  }

  .treatment-item {
    margin-bottom: 56px;
  }

  .treatment .item-title {
    font-size: 25px;
    margin-bottom: 24px;
  }

  .treatment .item-text,
  .treatment .item-list {
    font-size: 15px;
  }

  .treatment .title-sub {
    font-size: 17.5px;
    margin-bottom: 16px;
  }

  .treatment .item-list {
    margin-bottom: 40px;
    line-height: 2.1;
  }

  /* ボタン */
  .treatment .btn-box {
    font-size: 18px;
    grid-template-rows: 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: none;
    margin-top: 80px;
  }

  .treatment .btn-01,
  .treatment .btn-02 {
    padding: 20px 0 22px;
  }

  /*==============================================================
    　　TB_サロン情報
  ==============================================================*/
  .info {
    padding: 0 0 165px;
  }

  .info::before {
    height: 395px;
  }

  .info-inner {
    padding: 0 40px;
    margin-top: 40px;
  }

  .info-box {
    padding: 15px 30px 15px 40px;
  }

  .info-item {
    padding: 25px;
    display: grid;
    grid-template-columns: 135px auto;
  }

  .info-box dt {
    font-size: 14px;
  }

  .map-inner {
    margin-top: 20px;
  }

}

@media screen and (min-width: 1024px) {
  /* パソコン用レイアウト 1024px以上の範囲に収めるデザインはこの中に記述 */
  /*==============================================================
    　　PC_コンセプト
  ==============================================================*/
  .concept {
    margin-top: 100px;
    padding: 0 40px 115px;
  }

  .concept .section-title {
    top: -22px;
  }

  .concept-lead {
    text-align: center;
    font-size: 17.6px;
    line-height: 2.4;
    margin-top: 50px;
  }

  /*==============================================================
    　　PC_スタッフ
  ==============================================================*/
  .staff {
    max-width: 406px;
  }

  .staff__image {
    margin-top: 55px;
  }

  /*==============================================================
    　　PC_施術について
  ==============================================================*/
  .treatment {
    padding-bottom: 150px;
  }

  .treatment .section-title {
    top: -22px;
  }

  .tab-container {
    max-width: 1300px;
    margin: 52px auto 0;
    padding: 0 20px;
  }

  .tab-content {
    padding: 128px 120px 128px;
  }

  .tab-button {
    padding:  28px;
    font-size: 23px;
  }

  .treatment-item {
    margin-bottom: 92px;
  }

  .treatment .item-title {
    font-size: 34px;
    margin-bottom: 44px;
  }

  .treatment .item-text,
  .treatment .item-list {
    font-size: 15.7px;
    line-height: 2.25;
  }

  .treatment .title-sub {
    font-size: 18.5px;
    margin-bottom: 16px;
  }

  .treatment .item-list {
    margin-bottom: 48px;
  }

  /* ボタン */
  .treatment .btn-box {
    font-size: 22px;
    gap: 32px;
    margin-top: 108px;
  }

  .treatment .btn-01,
  .treatment .btn-02 {
    border: 1.5px solid var(--color-line-item);
    padding: 26px 0 28px;
    letter-spacing: 0.15em;
  }



  /*==============================================================
    　　PC_サロン情報
  ==============================================================*/
  .info {
    padding: 0 20px 165px;
  }

  .info .section-title {
    top: -22px;
  }

  .info-inner {
    background-color: var(--color-bg-base);
    max-width: 1300px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }

  .info-box {
    padding: 15px 30px 45px 40px;
    width: 100%;
  }

  .info-box dt {
    font-size: 13.5px;
  }

  .info-box dd {
    font-size: 12.5px;
  }

  .map {
    /* padding: 30px 40px 30px 30px; */
    padding: 30px 40px 45px 30px;
  }

  .map-inner {
    height: 100%;
    margin-top: 0;
  }


}

@media screen and (min-width: 1400px) {
  /* PC全画面用レイアウト 1400px以上の範囲に収めるデザインはこの中に記述 */
  /*==============================================================
    　　PC-big_施術について
  ==============================================================*/
  /*======== アニメーション ========*/
  .treatment .btn-01,
  .treatment .btn-02 {
    transition: all 0.3s ease;
  }

  .treatment .btn-01:hover,
  .treatment .btn-02:hover {
    opacity: 0.6;
  }

}