﻿@charset "UTF-8";
/* Theme Name: kyoei_dentsu
Author: num
Description: This is my original theme.
Version: 1.0 */

/*-------------------------------------
定義
-------------------------------------*/
:root {
    --font_ja: "NotoSerifJP", "游明朝", san-serif;
    --font_en: "Times New Roman", "serif";
    --font_en2: "Oswald", "serif";
    --h1_font: clamp(22px, 3vw, 48px);
    --h2_font: clamp(36px, 6.0vw, 80px);
    --h3_font: clamp(22px, 3vw, 40px);
    --m_color: #df5f2a;
    --a_color: #d97e14;
    --f_color: #403c3a;
    --b_color: #e9e4d9;
    --w_color: #fff;
    --tr: 0.3s ease-out;
    --main_w: min(100%, 1240px);
    --single_w: min(100%, 1240px);
    --main_mp: 150px;
    --single_mp: 150px;
    --m_ps30: 30px;
    --m_ps40: 40px;
    --m_ps50: 50px;
    --m_ps60: 60px;
    --m_ps80: 80px;
    --m_ps100: 100px;
    --gr: linear-gradient(45deg, var(--m_color) 0%, #0689cd 50%, #7dcff4 100%);
}
fieldset {
    display: contents;
}

/*-------------------------------------
JSアニメーションパーツ
-------------------------------------*/
/*順番にフェードアップアニメーション*/
.order_fadeUp {
    -webkit-transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s,
        -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s, transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.6s,
        -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
}
.order_fadeUp-is-show {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
/*フェードアップアニメーション*/
.fadeUp {
    -webkit-transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s,
        -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s, transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.6s,
        -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
}
.fadeUp-is-show {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
/*左方向から右へフェードイン*/
.slide_left_fadeIn {
    -webkit-transition: all 800ms cubic-bezier(0.07, 0.76, 0.44, 1);
    transition: all 800ms cubic-bezier(0.07, 0.76, 0.44, 1);
    opacity: 0;
    -webkit-transform: translateX(-20%);
    transform: translateX(-20%);
}
.slide_left_fadeIn-is-show {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}
/*右方向から左へフェードイン*/
.slide_right_fadeIn {
    -webkit-transition: all 800ms cubic-bezier(0.07, 0.76, 0.44, 1);
    transition: all 800ms cubic-bezier(0.07, 0.76, 0.44, 1);
    opacity: 0;
    -webkit-transform: translateX(20%);
    transform: translateX(20%);
}
.slide_right_fadeIn-is-show {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}
.jsCover {
    display: block;
    position: relative;
    overflow: hidden;
}
.jsCover:before {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    z-index: 7;
    background: var(--a_color);
    -webkit-transition: all 0.9s cubic-bezier(0.77, 0, 0.185, 1);
    transition: all 0.9s cubic-bezier(0.77, 0, 0.185, 1);
    -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.185, 1);
    transition-timing-function: cubic-bezier(0.77, 0, 0.185, 1);
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    content: "";
}
.jsCover:after {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    background: #f3f3f3;
    z-index: 8;
    -webkit-transition: all 0.9s cubic-bezier(0.77, 0, 0.185, 1);
    transition: all 0.9s cubic-bezier(0.77, 0, 0.185, 1);
    -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.185, 1);
    transition-timing-function: cubic-bezier(0.77, 0, 0.185, 1);
    content: "";
}
.jsCover.jsCover__isShow:after,
.jsCover.jsCover__isShow:before {
    right: -105%;
}

/*-------------------------------------
共通パーツ
-------------------------------------*/
.pc_none2 {
    display: none;
}
.flex {
    display: -webkit-flex;
    display: flex;
}
.flex_2 {
    display: -webkit-flex;
    display: flex;
}
.flex_c_y {
    -webkit-justify-content: center;
    justify-content: center;
}
.flex_c_t {
    -webkit-align-items: center;
    align-items: center;
}
.flex_reverse {
    flex-direction: row-reverse;
}

.main_w {
    max-width: var(--main_w);
    margin: 0 auto;
    padding-right: 20px;
    padding-left: 20px;
}
.single_w {
    max-width: var(--single_w);
    margin: 0 auto;
    padding-right: 20px;
    padding-left: 20px;
}
.main_col {
    margin-bottom: var(--main_mp);
}
.main_pa {
    padding-top: var(--main_mp);
    padding-bottom: var(--main_mp);
}
.m_lr {
    margin-right: auto;
    margin-left: auto;
}
p {
    font: normal clamp(15px, 1.5vw, 16px) var(--font_ja);
    line-height: 1.8;
}
.mb10 {
    margin-bottom: 10px;
}
.mb20 {
    margin-bottom: 20px;
}
.mb30 {
    margin-bottom: 30px;
}
.mb40 {
    margin-bottom: 40px;
}
.mb50 {
    margin-bottom: 50px;
}
.mb60 {
    margin-bottom: 60px;
}
.mb70 {
    margin-bottom: 70px;
}
.mb80 {
    margin-bottom: 80px;
}
.mb90 {
    margin-bottom: 90px;
}
.mb100 {
    margin-bottom: 100px;
}
.fc {
    text-align: center;
}
.fl {
    text-align: left;
}
.fr {
    text-align: right;
}
.fb {
    font-weight: bold;
}
.annotation {
    font-size: 13px;
    color: gray;
}

/* Font Awesome */
.fa-envelope:before { /*メールアイコン*/
    content: "\f0e0";
}
.fa-line:before { /*LINEアイコン*/
    content: "\f3c0";
}
.fa-phone:before { /*電話アイコン*/
    content: "\f095";
}
.fa-facebook-f:before { /*Facebookアイコン*/
    content: "\f39e";
}
.fa-x-twitter:before { /*Xアイコン*/
    content: "\e61b";
}
.fa-home:before { /*ホームアイコン（パンくず）*/
    content: "\f015";
}
.fa-circle-chevron-right:before {
    content: "\f138";
}
.fa-chevron-up:before {
    content: "\f077";
}
.fa-history:before {
    content: "\f1da";
}
.fa-clock:before {
    content: "\f017";
}
.fa-clock-rotate-left:before {
    content: "\f1da";
}
.fa-download:before {
    content: "\f019";
}
.fa-phone-volume:before {
    content: "\f2a0";
}
.fa-pencil:before {
    content: "\f303";
}
.fa-square-x-twitter:before {
    content: "\e61a";
}
.fa-location-dot:before {
    content: "\f3c5";
}
.fa-square-phone:before {
    content: "\f098";
}
.fa-arrow-up-right-from-square:before {
    content: "\f08e";
}


/* リスト */
.common_list li {
    position: relative;
    padding-left: 24px;
}
.common_list li:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border: 6px solid var(--a_color);
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 0;
}

/*ボタン*/
.common_btn {
    max-width: 360px;
    margin: 0 auto;
    text-align: center;
}
.common_btn_center {
    max-width: 360px;
    margin: 0 auto;
    text-align: center;
}
.common_btn a {
    text-decoration: none;
    color: var(--w_color);
    padding: 20px;
    display: block;
    background: var(--m_color);
    position: relative;
    font: bold 16px var(--font_en);
    letter-spacing: 0.15em;
    transition: var(--tr);
    border-radius: 5px;
}
.common_btn a:before {
    position: absolute;
    right: 25px;
    top: 50%;
    content: "";
    width: 8px;
    height: 8px;
    margin-top: -2px;
    border-right: 1px solid var(--w_color);
    border-top: 1px solid var(--w_color);
    transform: rotate(45deg) translateY(-50%);
}
.common_btn a:hover {
    opacity: 0.8;
}
.common_btn a i {
    margin-right: 5px;
    color: var(--w_color);
}

/*-------------------------------------
CTA
-------------------------------------*/
.common_cta_wrap {
    margin: 0 auto;
    position: relative;
    max-width: 1920px;
    background: var(--m_color);
    padding: 80px 20px;
}
.common_cta_inner {
    align-items: center;
    justify-content: center;
}
.cta_mail a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-decoration: none;
    z-index: 1;
    border-radius: 5px;
    padding: 15px 20px;
}
.cta_mail a {
    background: var(--w_color);
    font-weight: bold;
}
.common_cta_wrap .cta_mail {
    margin: 0 20px 0 20px;
}
.about_cta_wrap .cta_mail {
    margin: 0 auto !important;
}
.cta_mail {
    max-width: 350px;
    width: 100%;
}
.cta_mail a {
    width: 100%;
    padding: 15px 20px;
}
.cta_mail .cercleArrow {
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-weight: bold;
}
.cta_mail .cercleArrow {
    background: var(--m_color);
    color: var(--w_color) !important;
}
.common_cta_inner a:hover {
    opacity: 0.8;
}
.common_cta_inner span {
    color: var(--m_color);
}
.cta_mail_title {
    font: bold clamp(18px, 2vw, 20px) var(--font_ja);
}
.common_cta_inner p {
    color: var(--w_color);
    text-align: center;
    font-size: 16px;
}
.cta_phone {
    min-width: 220px;
}
.cta_phone_number {
    line-height: 1.4;
}
.cta_phone_number a {
    font: bold clamp(36px, 3vw, 42px) var(--font_en2);
    color: var(--w_color);
    text-decoration: none;
}
.cta_phone_number i {
    margin-right: 6px;
    color: var(--w_color);
}
.cta_mail i {
    margin-right: 5px;
    color: var(--m_color);
}

/*-------------------------------------
見出し
-------------------------------------*/
/* TOPの見出し */
.top_h2 {
    position: relative;
    text-align: left;
    margin-bottom: 60px;
}
.top_h2 h2 {
    font: bold clamp(16px, 2vw, 20px) var(--font_ja);
    color: var(--m2_color);
}
.top_h2 .data_text {
    margin-bottom: 10px;
    font: 700 var(--h2_font) var(--font_en2);
    color: var(--m2_color);
    letter-spacing: 0.15em;
}
.top_h2 .data_text::first-letter {
    font-weight: bold;
    color: var(--a_color);
}

/* TOP以外の見出し */
.other_h2 h2 {
    letter-spacing: 0.15em;
    color: var(--f_color);
    text-align: center;
    display: inline-block;
    position: relative;
}
.other_h2 {
    text-align: center;
    position: relative;
    margin-bottom: 80px;
}
.other_h2 span {
    font: bold clamp(14px, 1.5vw, 20px) var(--font_en2);
    color: var(--a_color);
    display: block;
    letter-spacing: 0.2em;
    text-indent: 0.2em;
    margin-bottom: 5px;
}
.other_h2 h2 {
    font: bold clamp(24px, 4vw, 36px) var(--font_ja);
    text-align: center;
}
.other_h2 h2:after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: var(--a_color);
    margin: 30px auto 0;
}
/* 背景白系 */
.heading_f h2 {
    color: var(--f_color);
}
.heading_f .data_text {
    color: var(--f_color);
}
.heading_f:before {
    background: var(--f_color);
}
/* テキスト白系 */
.heading_w h2 {
    color: var(--w_color);
}
.heading_w .data_text {
    color: var(--w_color);
}
.heading_w:before {
    background: var(--w_color);
}
/* テキスト左寄せ */
.heading_left {
    text-align: left;
}
/* テキスト中央寄せ */
.heading_center {
    text-align: center;
}
.heading_center:before {
    margin: 0 auto;
}

/*-------------------------------------
header
-------------------------------------*/
/* サイトタイトル */
.site_ttl {
    width: 170px;
    line-height: 0;
    transition: var(--tr);
    padding: 0px 0;
}
.top_site_ttl {
    width: 170px;
    line-height: 0;
    transition: var(--tr);
    padding: 0px 0;
}
.h_nav_wrap.is-fixed .top_site_ttl {
    width: 120px;
    padding: 0px 0;
}
.site_ttl_box {
    align-items: center;
}
.site_ttl_box p {
    line-height: 1.3;
    background: #efeae1;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 5px 20px;
    margin-left: 20px;
    font: bold 14px "游明朝", san-serif;
    font-weight: bold;
}
.top_site_ttl a,
.site_ttl a {
    display: block;
    color: var(--f_color);
    font-weight: bold;
    text-decoration: none;
    transition: var(--tr);
}
.top_site_ttl a:hover,
.site_ttl a:hover {
    opacity: 0.8;
}
/*ナビ*/
.h_nav_wrap {
    position: fixed;
    margin-left: auto;
    padding: 10px 20px 10px 20px;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1001;
    transition: var(--tr);
}
.page-template-exosome .h_nav_wrap,
.page-template-scalpink .h_nav_wrap {
    background: var(--w_color);
}
.h_nav_wrap.is-fixed {
    align-items: center;
    background: var(--w_color);
}
.h_nav_wrap.is-fixed .pc_h_nav {
    padding: 0;
}
.h_nav_inner {
    justify-content: space-between;
    transition: var(--tr);
    align-items: center;
}
.h_nav_wrap.is-fixed .h_nav_inner {
    transition: var(--tr);
}
.pc_h_nav {
    height: 100%;
}
.pc_h_nav_top {
    justify-content: flex-end;
    margin-bottom: 10px;
    transition: var(--tr);
}
.h_nav_wrap.is-fixed .pc_h_nav_top {
    margin-bottom: 0;
}
.pc_h_nav > ul {
    height: 100%;
    flex-wrap: wrap;
}
.pc_h_nav li {
    display: flex;
}
.pc_h_nav > ul > li {
    position: relative;
}
.nav_cta_inner {
    height: 100%;
    align-items: center;
    text-align: center;
}
.nav_tel_number_box {
    height: 100%;
}
.pc_h_nav ul a {
    text-decoration: none;
    color: var(--f_color);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin-left: 30px;
    font-weight: bold;
}
.pc_h_nav li:last-child a {
    color: var(--w_color);
    font-size: 16px;
    font-weight: bold;
    background: var(--m_color);
    padding: 5px 20px;
    border-radius: 5px;
}
.pc_h_nav li:last-child a i {
    color: var(--w_color);
    margin-right: 5px;
    font-size: 18px;
}
.nav_tel_number {
    margin-right: 20px;
}
.nav_tel_number a {
    font: bold clamp(24px, 2vw, 30px) var(--font_en);
    color: var(--f_color);
    text-decoration: none;
}
.nav_tel_number a i {
    margin-right: 5px;
    color: var(--f_color);
}
.nav_tel_number p {
    font: bold 14px var(--font_en);
}

.pc_h_nav > ul > li > a:before {
    position: absolute;
    top: -17px;
    left: 0px;
    content: "";
    width: 100%;
    height: 2px;
    z-index: 1;
    background: var(--f_color);
    opacity: 0;
    border-radius: 10px;
    visibility: hidden;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
}

.pc_h_nav a:hover {
    opacity: 0.8;
}
.contact_nav a img {
    margin-right: 10px;
    width: 26px;
}
.contact_nav a {
    margin-right: 0 !important;
}

/* ヘッダー画像 */
.header {
    overflow: hidden;
}
.single_image_wrap {
    padding: 140px 20px 60px;
    text-align: center;
}
.main_image_box_inner {
    width: 100%;
    max-width: 1640px;
    margin: 0 auto;
}
.main_image_text p {
    font: normal clamp(30px, 7vw, 100px) var(--font_en);
    text-align: center;
    margin-top: 50px;
    opacity: 0.8;
    color: #101010;
}

/*************************************/
.h_img_wrap {
    position: relative;
}
.header_img_container {
    position: relative;
    margin: 118px 0 0;
    width: 100%;
    height: 400px;
    background: var(--m_color);
    z-index: 0;
}
.other_h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    line-height: 1.5;
    width: 100%;
}
.bg {
    background: url(img/header.jpg) no-repeat;
    background-position: 50% 50%;
    width: 100%;
    max-width: 1920px;
    height: 100vh;
    background-size: 1920px;
    position: relative;
    animation: zoomUp 5s ease-out forwards;
}
.top_header_inner {
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
}
.top_header_text {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    margin: 0 auto;
    z-index: 1000;
}
.top_header_text {
    width: clamp(450px, 55vw, 900px);
}
.top_header_text img {
    width: 100%;
}

@keyframes zoomUp {
    0% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
.other_header {
    position: relative;
    background: url(img/other_header_image.jpg) no-repeat;
    background: url(img/header.jpg) no-repeat;
    background-position: 50% 60%;
    width: 100%;
    max-width: 1920px;
    height: 500px;
}
.other_header .header_box {
    position: absolute;
    max-width: 1240px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    left: 50%;
    top: 50%;
    padding: 0 20px;
    transform: translate(-50%,-50%);
}
.store_header_wrap {
    position: absolute;
    max-width: 540px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    left: 50%;
    top: 50%;
    padding: 0 20px;
    transform: translate(-50%,-50%);
}
.other_header h1 {
    font: bold clamp(16px, 2vw, 30px) var(--font_ja);
    color: var(--f_color);
}
.other_header .data_text {
    content: attr(data-text);
    text-transform:capitalize;
    display: block;
    font: bold clamp(40px, 7vw, 100px) var(--font_en2);
    line-height: 1.2;
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: 0.5rem;
}
.other_header .data_text::first-letter {
    font-weight: bold;
    color: var(--a_color);
}

.top_service_wrap,
.takumi_about_wrap,
.takumi_faq_wrap,
.relaxation_wrap,
.branch_wrap {
    background: #f5f6f8;
    background-image: radial-gradient(#ddd 9%, transparent 11%),radial-gradient(#ddd 9%, transparent 11%);
    background-position: 0 0, 8px 8px;
    background-size: 16px 16px;
}

.store_header_wrap h1 {
    max-width: 540px;
}

/*-------------------------------------
TOP 企業情報
-------------------------------------*/
.top_company_title {
    margin-bottom: 60px;
    font: normal clamp(24px, 3vw,30px) var(--font_ja);
    text-align: center;
}
.top_company_box {
    justify-content: space-between;
    align-items: center;
}
.top_company_image {
    width: 47%;
}
.top_company_image img {
    width: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    aspect-ratio: 1.1 / 1;
}
.top_company_text {
    width: 47%;
}
.top_company_sub {
    margin-bottom: 40px;
    font: bold clamp(20px, 3vw, 32px) var(--font_ja);
    text-align: center;
}
.top_company_text_in {
    margin-bottom: 40px;
}

/*-------------------------------------
TOP 事業内容
-------------------------------------*/
.top_service_list {
    justify-content: space-between;
    margin-bottom: 40px;
}
.top_service_list li {
    width: 30%;
    text-align: center;

}
.top_service_image {
    margin-bottom: 20px;
}
.top_service_text h3 {
    margin-bottom: 10px;
    font: bold clamp(20px, 2vw, 24px) var(--font_ja);
}

/*-------------------------------------
TOP お知らせ
-------------------------------------*/
.top_news_inner {
    max-width: 1240px;
    margin: 0 auto;
}
time {
    font: normal 16px/1 var(--font_en);
    margin-right: 10px;
    color: var(--f_color);
}
.top_news_list {
    width: 100%;
}
.top_news_list li {
    margin-bottom: 0px;
    position: relative;
    padding: 20px 0;
    border-bottom: solid 1px var(--a_color);
}
.top_news_list li:first-child {
    border-top: solid 1px var(--a_color);
}
.top_news_category {
    display: inline-block;
    color: var(--w_color);
    background: var(--a_color);
    line-height: 1;
    padding: 5px 10px;
    font-size: 12px;
    margin-right: 30px;
}
.top_news_title {
    display: inline-block;
    color: var(--f_color);
    font-weight: normal;
    padding-right: 55px;
}
.top_news_text a {
    color: #001CFD;
}
.top_news_text {
    display: none;
    margin-top: 20px;
}
.top_news_text p {
    color: var(--f_color);
    margin-bottom: 20px;
}
.top_news_text p:last-child {
    margin-bottom: 0;
}
/*アイコン*/
.top_news_title_box::before,
.top_news_title_box::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    background-color: var(--m_color);
    transition: var(--tr);
}
.top_news_title_box::before {
    top: 35px;
    right: 20px;
    transform: rotate(0deg);
}
.top_news_title_box::after {
    top: 35px;
    right: 20px;
    transform: rotate(90deg);
}
.top_news_title_box.is-close::before {
    transform: rotate(45deg);
}
.top_news_title_box.is-close::after {
    transform: rotate(-45deg);
}

/*-------------------------------------
企業情報ページ
-------------------------------------*/
.company {
    margin: var(--single_mp) 0;
}
.company_box h3 {
    margin-bottom: 20px;
    font: bold clamp(20px, 2vw, 24px) var(--font_ja);
}
.summary_table {
    margin: 0 auto var(--m_ps50);
}
.summary_table table {
    width: 100%;
    margin: 0 auto;
    font-size: 16px;
}
.summary_table th,
.summary_table td {
    border-bottom: 1px solid #ccc;
}
.summary_table th {
    width: 250px;
    color: var(--f_color);
    border-top: 1px solid #ccc;
    padding: 30px 20px;
    vertical-align: middle;
    font-weight: bold;
    text-align: center;
    background: #f3f3f3;
}
.summary_table td {
    border-top: 1px solid #ccc;
    padding: 30px 20px;
    text-align: left;
}
.summary_table .sup {
    font-size: 15px;
    color: #707070;
}

.company_box_one {
    margin-bottom: 40px;
}
.branch_table_top {
    margin: 0 auto;
}
.branch_table_top_title {
    background: var(--a_color);
    color: var(--w_color);
    padding: 10px 20px;
}
.branch_table_top dl {
    width: 100%;
    border-bottom: solid 1px #ccc;
}
.branch_table_top dt {
    width: 65%;
    padding: 15px 20px;
    background: var(--w_color);
}
.branch_table_top dd {
    width: 35%;
    padding: 15px 20px;
    background: var(--w_color);
}
.branch_table_top i {
    margin-right: 5px;
    color: var(--a_color);
}
.branch_table_top span {
    background: #f3f3f3;
    margin-right: 10px;
    padding: 2px 10px;
    font-weight: bold;
}

/*-------------------------------------
業務内容ページ
-------------------------------------*/
.service_box_top {
    margin-bottom: 60px;
}
.service_box h3 {
    margin-bottom: 30px;
    padding: 0px 0px 10px;
    border-bottom: solid 2px #ccc;
    font: bold clamp(18px, 2vw, 24px) var(--font_ja);
    position: relative;
}
.service_box h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 70px;
    height: inherit;
    border-bottom: 2px solid var(--a_color);
}
.service_box {
    justify-content: space-between;
}
.service_image {
    width: 40%;
}
.service_image img {
    width: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    aspect-ratio: 1.2 / 1;
}
.service_text {
    width: 54%;
}

.takumi_about_box {
    justify-content:space-between;
    width: 100%;
}
.takumi_about_image {
    width: 41%;
}
.takumi_about_text {
    width: 55%;
}

.service_text_box {
    background: #f3f3f3;
    margin-bottom: 20px;
    padding: 30px;
}
.relaxation_box_top {
    margin-bottom: 40px;
}

.service_text_common {
    text-align: center;
}
.relaxation_box .common_list li {
    margin-bottom: 5px;
}
.service_text_box li {
    margin-bottom: 5px;
}
.service_text_box li:last-child {
    margin-bottom: 0;
}
.relaxation_box li:last-child {
    margin-bottom: 0;
}
.relaxation_box li span {
    margin-right: 10px;
    padding: 2px 10px;
    background: var(--a_color);
    color: var(--w_color);
}
.service_text_title {
    margin-bottom: 10px;
    font: bold clamp(15px, 2vw, 20px) var(--font_ja);

}

.relaxation_inner .service_box,
.extermination_inner .service_box {
    margin-bottom: 40px;
}
.relaxation_text ul {
    margin-bottom: 15px;
}

.takumi_about_address {
    background: var(--w_color);
    padding: 30px;
}
.takumi_about_address_top {
    margin-bottom: 5px;
    font: bold clamp(15px, 2vw, 18px) var(--font_ja);
}
.relaxation_text li {
    margin-right: 10px;
    padding: 5px 20px;
    font: bold clamp(15px, 1.5vw, 18px) var(--font_ja);
    background: var(--a_color);
    color: var(--w_color);
    flex: 1 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.relaxation_text li:last-child {
    margin-right: 0;
}
.relaxation_text_box_strong {
    margin-bottom: 15px;
    font: bold clamp(18px, 2vw, 22px) var(--font_ja);
    color: var(--a_color);
}
.relaxation_text p {
    margin-bottom: 20px;
    line-height: 1.7 !important;
    font: normal clamp(16px, 2vw, 18px) var(--font_ja);
}

.service_logo {
    max-width: 250px;
    margin: 0 auto 60px;
}

.takumi_service_box {
    justify-content: space-between;
    margin-bottom: 100px;
}
.takumi_service_inner section:last-child .takumi_service_box {
    margin-bottom: 0;
}
.takumi_service_image {
    width: 40%;
}
.takumi_service_text {
    width: 55%;
}
.menu_box {
    margin-top: 20px;
}
.menu_box table {
    width: 100%;
}
.menu_box th {
    width: 200px;
    background: #f3f3f3;
    vertical-align: middle;
    border: solid 1px #aaa;
    padding: 10px 20px;
    font: bold clamp(14px, 1.5vw, 16px) var(--font_ja);
}
.menu_box td {
    border: solid 1px #aaa;
    padding: 10px 20px;
    font: normal clamp(14px, 1.5vw, 16px) var(--font_ja);
}
.menu_box td div span {
    background: var(--a_color);
    color: var(--w_color);
    padding: 2px 10px;
    font: bold clamp(14px, 1.5vw, 16px) var(--font_ja);
}

.takumi_service_text h3 {
    margin-bottom: 20px;
    font: bold clamp(18px, 2vw, 28px) var(--font_ja);
}

.price_strong {
    margin-left: 10px;
    color: var(--m_color);
}
.price_strong_number {
    color: var(--m_color);
    font: bold clamp(18px, 2vw, 28px) var(--font_ja);
}

.faq_inner dl {
    margin-bottom: 30px;
    padding: 50px;
    background: var(--w_color);
}
.faq_inner dl:last-child {
    margin-bottom: 0;
}
.faq_inner dt {
    margin-bottom: 10px;
    padding: 10px 0 10px 42px;
    font: bold clamp(16px, 2vw, 20px) var(--font_ja);
    line-height: 1.6;
    position: relative;
}
.faq_inner dt::before {
    content: 'Q';
    position: absolute;
    top: 0;
    left: 0;
    font: normal 40px var(--font_en2);
    font-weight: bold;
    color: var(--a_color);
    line-height: 1;
}
.faq_inner dd {
    padding: 10px 0 10px 42px;
    font: normal clamp(14px, 2vw, 16px) var(--font_en2);
    line-height: 1.6;
    position: relative;
}
.faq_inner dd::before {
    content: 'A';
    position: absolute;
    top: 0;
    left: 0;
    font: normal 40px var(--font_en2);
    font-weight: bold;
    color: var(--f_color);
    line-height: 1;
}

.store_map {
    justify-content: space-between;
    margin-bottom: 60px;
}
.store_image {
    width: 49%;
}
.store_image img {
    width: 100%;
}
.store_googlemap {
    width: 49%;
}
.store_googlemap iframe {
    width: 100%;
    border: none;
    height: 450px;
}


.company_googlemap iframe {
    width: 100%;
    border: none;
    height: 450px;
}

/*-------------------------------------
ヘアタトゥーページ
-------------------------------------*/
.scalpink_cta {
    padding: 150px 0px;
}
.scalpink .scalpink_cta {
    background: url("img/basic_back.jpg") no-repeat;
    background-attachment: fixed;
}
.exosome .scalpink_cta {
    background: url("img/exosome_basic_back.jpg") no-repeat;
    background-attachment: fixed;
}
.scalpink_cta_back {
    width: min(1200px, 90%);
    margin: 0 auto;
    background: var(--w_color);
    padding: 50px;
}
.scalpink_cta_wrap {
    align-items: center;
    justify-content: center;
}
.scalpink_cta_image {
    width: 32%;
    margin-right: 40px;
}
.scalpink_cta_box {
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.scalpink_cta_limit {
	width: 80px;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
    border-radius: 50%;
    text-align: center;
    background: url("img/basic_icon.svg") no-repeat;
}
.scalpink_cta_limit p {
	width: 80px;
    font: bold clamp(15px, 2vw, 20px) var(--font_ja);
    line-height: 1.2;
    color: var(--f_color);
}
.scalpink_cta_box_in {
    align-items: center;
}
.scalpink_cta_text {
    margin: 0 10px;
}
.scalpink_cta_text_top {
    background: #d7cbad;
    display: inline-block;
    color: var(--f_color);
    padding: 2px 10px;
    margin-bottom: 10px;
    font: bold clamp(15px, 1vw, 20px) var(--font_ja);
}
.cta_tel_box {
    background: #efeae1;
    padding: 50px;
}
.cta_tel_box {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.cta_tel_title {
    margin-bottom: 10px;
    font: bold clamp(20px, 3.5vw, 24px) var(--font_ja);
}
.tel_number {
    font: bold clamp(24px, 3.5vw, 48px) var(--font_ja);
    color: var(--f_color);
    text-decoration: none;
}
.tel_number i {
    margin-right: 5px;
}
.scalpink_cta_middle {
    margin: 20px auto;
    font: normal clamp(20px, 2.5vw, 24px) var(--font_ja);
    text-align: center;
    color: var(--f_color);
}

.scalpink_cta_price {
    color: var(--a_color);
    font: bold clamp(15px, 1vw, 24px) var(--font_ja);
    align-items: center;
}
.scalpink_cta_price_left {
    font: bold clamp(36px, 4vw, 100px) var(--font_en);
    color: var(--a_color);
}
.scalpink_cta_text_right {
    font: normal clamp(16px, 4.5vw, 30px) var(--font_en);
    margin-left: 5px;
    display: block;
    text-align: center;
    line-height: 1.1;
}
.scalpink_cta_price_right span:first-child {
    font: bold clamp(14px, 1.0vw, 16px) var(--font_ja);
    display: block;
    text-align: center;
    line-height: 1.1;
}
.scalpink_cta_price_right span:last-child {
    font: bold clamp(14px, 2.0vw, 48px) var(--font_ja);
    display: block;
    text-align: center;
    line-height: 1.1;
    color: var(--a_color);
}
.scalpink_cta_text_bottom {
    font: normal clamp(14px, 1vw, 16px) var(--font_en);
}
.scalpink_cta_text_bottom span {
    text-decoration-line: line-through;
    font: normal clamp(16px, 1.5vw, 32px) var(--font_en);
    margin: 0 5px;
}

/* ctaボタン */
.cta_btn {
    position: relative;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid #3ea020;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #3ea020), to(#5ab455));
    background: -webkit-linear-gradient(bottom, #3ea020 50%, #5ab455 100%);
    background: linear-gradient(0deg, #3ea020 50%, #5ab455 100%);
    -webkit-box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 5px 10px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 5px 10px rgba(0, 0, 0, .1);
    color: var(--w_color);
}
.cta_btn::before,
.cta_btn::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}
.cta_btn::before {
    right: 20px;
    width: 22px;
    height: 22px;
    border-radius: 20px;
    background-color: var(--w_color);
}
.cta_btn::after {
    right: 25px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-right: 0 solid transparent;
    border-left: 9px solid #3ea020;
    border-bottom: 6px solid transparent;
    box-sizing: border-box;
}
.scalpink_cta .cta_btn {
    max-width: 700px;
    padding: 20px 50px 20px 30px;
    margin: 0 auto;
    display: block;
    font: bold clamp(14px, 2vw, 20px) var(--font_ja);
    color: var(--w_color);
}
.pc_h_nav .cta_btn {
    padding: 12px 50px 12px 20px;
    margin: 0 auto;
    font: bold clamp(12px, 1.5vw, 20px) var(--font_ja);
}
.pc_h_nav .cta_btn span {
    color: var(--w_color);
}
.sp_h_nav .cta_btn {
    padding: 12px 50px 12px 20px;
    margin: 0 auto;
    font: bold clamp(12px, 1.5vw, 20px) var(--font_ja);
}
.sp_h_nav .cta_btn span {
    color: var(--w_color);
}
.scalpink_solution .cta_btn {
    padding: 20px 50px 20px 20px;
    max-width: 450px;
    margin: 0 auto;
    display: block;
    font: bold clamp(15px, 2vw, 20px) var(--font_ja);
    color: var(--w_color);
}
.exosome_solution .cta_btn {
    padding: 20px 50px 20px 20px;
    max-width: 450px;
    margin: 0 auto;
    display: block;
    font: bold clamp(15px, 2vw, 20px) var(--font_ja);
    color: var(--w_color);
}
.scalpink_contact_mail {
    margin-left: 20px;
}
.scalpink_contact_mail .cta_btn {
    padding: 20px 50px 20px 20px;
    margin: 0 auto;
    display: block;
    font: bold clamp(15px, 2vw, 20px) var(--font_ja);
    max-width: 300px;
    color: var(--w_color);
}

/* メインヘッダー */
.scalpink_header_wrap {
    background-size: cover;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
    height: 100vh;
}
.scalpink_header .scalpink_header_wrap {
    background: url("img/header_scalpink.jpg") no-repeat;
    background-position: 65% 0%;
}
.exosome_header .scalpink_header_wrap {
    background: url("img/header_exosome.jpg") no-repeat;
    background-position: 65% 0%;
}
.scalpink_header_inner {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    height: 100%;
}
.scalpink_header_text {
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0,-50%);
    margin: 0 auto;
    z-index: 1;
}
.scalpink_header .scalpink_header_text {
    width: clamp(450px, 55vw, 700px);
}
.exosome_header .scalpink_header_text {
    width: clamp(450px, 55vw, 720px);
}
.scalpink_header_text img {
    width: 100%;
}
/* 薄毛にお悩み手間やストレスなく即効解決！ */
.scalpink_solution {
    background: #d9d9d9;
    background-size: cover;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 20px;
}
.scalpink .scalpink_solution {
    background: url("img/solution_back.jpg") no-repeat;
    background-position: 28% 30%;
}
.exosome_solution {
    background: url("img/exosome_solution_back.jpg") no-repeat;
    background-position: 50% 100%;
}
.exosome_solution_inner {
    padding: 150px 20px;
}
.exosome_solution_box {
    max-width: 1440px;
    margin: 0 auto 80px;
    align-items: center;
    justify-content: space-between;
}
.exosome_solution_image {
    width: 30%;
}
.exosome_solution_text {
    width: 66%;
}
.scalpink_solution_inner {
    max-width: 1340px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    height: 1080px;
}
.scalpink_solution_text {
    width: 100%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0,-50%);
    width: clamp(500px, 55vw, 740px);
    margin: 0 auto;
    z-index: 1;
}
.solution_text_top {
    margin: 0 auto 40px;
    font: bold clamp(16px, 2.5vw, 20px) var(--font_ja);
    text-align: left;
    /* max-width: 500px; */
    padding: 20px;
    background: var(--w_color);
}
.solution_text_top div {
	position:relative;
    padding: 0px 30px 0px 45px;
    margin-bottom: 10px;
}
.solution_text_top div:last-child {

    margin-bottom: 0px;
}
.solution_text_top div:before,
.solution_text_top div:after{
	content:"";
	display:block;
	position:absolute;
}
.solution_text_top div:before{
	width:26px;
	height:26px;
	border-radius:3px;
	border:2px solid #000000;
	left:0px;
    top:5px;
}
.solution_text_top div:after{
	border-left:3px solid #ff0000;
	border-bottom:3px solid #ff0000;
	width:25px;
	height:10px;
	-webkit-transform:rotate(-45deg);
	transform:rotate(-45deg);
	left:9px;
	top:8px;
}

.exosome_solution_text_top {
    font: bold clamp(16px, 2.3vw, 32px) var(--font_ja);
    text-align: left;
}
.exosome_solution_text_top div {
	position:relative;
    padding: 0px 30px 0px 45px;
    margin-bottom: 10px;
}
.exosome_solution_text_top div:last-child {
    margin-bottom: 0;
}
.exosome_solution_text_top div:before,
.exosome_solution_text_top div:after{
	content:"";
	display:block;
	position:absolute;
}
.exosome_solution_text_top div:before{
	width:26px;
	height:26px;
	border-radius:3px;
	border:2px solid #000000;
	left:0px;
    top:12px;
}
.exosome_solution_text_top div:after{
	border-left:3px solid #ff0000;
	border-bottom:3px solid #ff0000;
	width:25px;
	height:10px;
	-webkit-transform:rotate(-45deg);
	transform:rotate(-45deg);
	left:9px;
	top:15px;
}
.exosome_solution_text {
    align-items: center;
    /* background: #efeae1; */
}
.exosome_rank_image img {
    width: 100%;
}
.exosome_solution_heading {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}
.exosome_rank_image {
    width: 18%;
}
.exosome_solution_h2 {
    width: 80%;
}


.scalpink_solution_text > p {
    margin-bottom: 40px;
    text-align: center;
    font: bold clamp(16px, 2vw, 24px) var(--font_ja);
    line-height: 1.6;
}
.scalpink_basic {
    background: var(--w_color);
}
.exosome .scalpink_basic_inner p {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px;
    color: var(--w_color);
    font: bold clamp(16px, 2vw, 20px) var(--font_ja);

}
.scalpink .scalpink_basic_inner {
    background: url("img/basic_back.jpg") repeat;
    padding: 150px 20px 200px;
    clip-path: polygon(100% 0, 100% 87%, 50% 100%, 0 87%, 0 0);
    background-attachment: fixed;
}
.exosome .scalpink_basic_inner {
    background: url("img/exosome_basic_back.jpg") repeat;
    padding: 150px 20px;
    background-attachment: fixed;
}
.scalpink_basic_image {
    max-width: 1000px;
    margin: 80px auto 0;
}
.scalpink_basic_bottom_inner {
    position: relative;
    padding: 100px 20px 150px;
}
.scalpink_basic_bottom_box {
    margin: 0 auto;
    max-width: 1240px;
    align-items: center;
    justify-content: space-between;
}
.scalpink_basic_bottom_image {
    width: 22%;
}
.scalpink_basic_bottom_text {
    width: 73%;
}
.scalpink_basic_bottom_text div {
    font: normal clamp(15px, 2vw, 18px) var(--font_ja);
    line-height: 1.7;
    padding: 50px;
    background: #efeae1;
}
.scalpink_basic_inner ul {
    flex-wrap: wrap;
    gap: 110px 50px;
    max-width: 1240px;
    margin: 110px auto 0;
    justify-items: center;
}
.scalpink_basic_inner ul li {
    width: calc(100% / 2 - 40px);
    background: rgba(253, 150, 22, 0.65);
    padding: 50px;
    border-radius: 10px;
}
.scalpink_basic_inner ul li p {
    color: var(--w_color);
    font: normal clamp(15px, 2vw, 20px) var(--font_ja);
}
.scalpink_basic_inner ul li {
    position: relative;
}
.scalpink_basic_bottom {
    color: var(--w_color);
    max-width: 840px;
    margin: 60px auto 0;
}
.scalpink_basic_bottom p {
    color: var(--f_color);
}
.top_service_number {
	width: 130px;
	height: 130px;
    font: normal clamp(15px, 2vw, 30px) var(--font_en);
	display: flex;
	justify-content: center;
	align-items: center;
    background: url("img/basic_icon.svg") no-repeat;
    color: var(--f_color);
    border-radius: 50%;
    transform: rotate(20deg);
    text-align: center;
    margin: -110px auto 20px;
}
.top_service_number p {
	width: 130px;
    transform: rotate(-20deg);
}
.top_service_number span {
    display: block;
    font: bold clamp(15px, 2vw, 20px) var(--font_en);
    color: #5a3919;
}
.top_service_number span:last-child {
    font: bold clamp(15px, 3vw, 42px) var(--font_en);
    color: #5a3919;
}
.scalpink_basic_title {
    text-align: center;
    font: bold clamp(18px, 2vw, 30px) var(--font_ja);
    margin-bottom: 20px;
    /* background: linear-gradient(to right, #7c5907, #bd9f51, #7c5907);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: var(--w_color);
}

.solution_h2 {
    margin-bottom: 40px;
    text-align: center;
}
.solution_h2 img {
    width: 100%;
}
.solution_h2_top {
    color: #3e3a39;
    display: block;
    font: bold clamp(20px, 3vw, 40px) var(--font_ja);
}
.solution_h2_top span {
    color: #3e3a39;
    font: bold clamp(24px, 3.5vw, 60px) var(--font_ja);
}
.solution_h2_bottom {
    display: block;
    font: bold clamp(18px, 3vw, 40px) var(--font_ja);
    color: #3e3a39;
}
.solution_h2_bottom span {
    font: bold clamp(24px, 3.0vw, 60px) var(--font_ja);
    color: #a61e23;
}

.exosome_solution_h2_top {
    color: #3e3a39;
    font: bold clamp(20px, 3vw, 40px) var(--font_ja);
}
.exosome_solution_h2_top span {
    color: #3e3a39;
    font: bold clamp(24px, 4vw, 60px) var(--font_ja);
}
.exosome_solution_h2_bottom {
    display: block;
    font: bold clamp(18px, 3.5vw, 40px) var(--font_ja);
    color: #3e3a39;
}
.exosome_solution_h2_bottom span {
    font: bold clamp(24px, 4.0vw, 60px) var(--font_ja);
    color: #a61e23;
}

.exosome_basic_image {
    max-width: 1040px;
    padding: 0 20px 60px;
    margin: 0 auto;
}
.exosome_basic_image img {
    width: 100%;
}
.scalpink_h2 {
    margin-bottom: 60px;
    text-align: center;
}
.scalpink_h2 h2 {
    color: #3e3a39;
    font: bold clamp(30px, 3vw, 48px) var(--font_ja);
}
.scalpink_h2 span {
    color: #3e3a39;
    font: bold clamp(16px, 3.0vw, 36px) var(--font_en);
    background: linear-gradient(to right, #7c5907, #bd9f51, #7c5907);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.scalpink .basic_h2 {
    margin: 0 auto 120px;
    max-width: 900px;
        text-align: center;
}
.exosome .basic_h2 {
    margin: 0 auto 60px;
    max-width: 900px;
    text-align: center;
}
.basic_h2 h2 {
    color: var(--w_color);
    font: bold clamp(28px, 3vw, 54px) var(--font_ja);
    text-align: center;
}
.basic_h2 span {
    color: var(--w_color);
    font: bold clamp(20px, 3vw, 42px) var(--font_en);
    text-align: center;
    background: linear-gradient(90deg, rgba(237, 173, 37, 1) 0%, rgba(255, 252, 151, 1) 19%, rgba(248, 239, 133, 1) 21%, rgba(232, 208, 88, 1) 26%, rgba(205, 155, 12, 1) 54%, rgba(243, 225, 139, 1) 60%, rgba(216, 178, 54, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.trouble_h2 h2 {
    margin: 0 auto 60px;
    max-width: 860px;
}

/*-------------------------------------
薄毛の悩みは人それぞれ…
-------------------------------------*/
.scalpink_trouble {
    background: #d18c33;
}
.scalpink_trouble_inner {
    background: url("img/trouble_back.jpg") no-repeat;
    padding: 100px 20px 0;
    position: relative;
    clip-path: polygon(100% 0, 100% 75%, 50% 100%, 0 75%, 0 0);
}
.scalpink_trouble_image {
    content: "";
    position: absolute;
    top: -150px;
    left: 50%;
    width: 100%;
    max-width: 900px;
    z-index: 3;
    transform: translateY(0%) translateX(-50%);
}
.scalpink_trouble_top {
    max-width: 1140px;
    margin: 0 auto;
}
.scalpink_trouble_middle {
    margin: 0px auto 100px;
    max-width: 1000px;
    padding: 50px;
    z-index: 3;
}
.scalpink_trouble_middle p {
    font: bold clamp(30px, 3vw, 54px) var(--font_ja);
    text-align: center;
    color: var(--w_color);
}
.scalpink_trouble_bottom {
    padding: 200px 0 150px;
}
.scalpink_trouble_bottom {
    position: relative;
}
.scalpink_trouble_bottom ul {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0px 20px;
    justify-content: space-between;
}
.scalpink_trouble_bottom ul li {
    width: 31%;
    background: rgba(255,255,255,0.98);
    border-radius: 10px;
    box-shadow: 10px 10px 0 #dfd9c9;
    border: 2px solid #dfd9c9;
}
.scalpink_trouble_bottom_image img {
    width: 100%;
}
.scalpink_trouble_bottom_text {
    padding: 100px 50px 50px;
}
.top_trouble_title {
    font: bold clamp(16px, 3vw, 19px) var(--font_ja);
    text-align: center;
    margin-bottom: 20px;
    color: #9b7521;
    line-height: 1.7;
    background: linear-gradient(to right, #7c5907, #bd9f51, #7c5907);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.top_trouble_number {
	width: 130px;
	height: 130px;
    font: normal clamp(15px, 2vw, 30px) var(--font_en);
	display: flex;
	justify-content: center;
	align-items: center;
    background: url("img/basic_icon.svg") no-repeat;
    color: var(--f_color);
    border-radius: 50%;
    text-align: center;
    margin: -170px auto 20px;
}
.top_trouble_number p {
	width: 130px;
}
.top_trouble_number span {
    display: block;
    font: bold clamp(15px, 2vw, 20px) var(--font_en);
    color: #5a3919;
}
.top_trouble_number span:last-child {
    font: bold clamp(15px, 3vw, 60px) var(--font_en);
    color: #5a3919;
}

/* ビフォー・アフターギャラリー */
.scalpink_gallery_h2 {
    max-width: 600px;
    margin: 0 auto 60px;
}
.scalpink_gallery {
    padding: 150px 20px;
    background: repeating-linear-gradient(90deg, #dfd9c9, #dfd9c9 20px, #e5ded2 20px, #e5ded2 40px);
}
.scalpink_gallery_inner {
    max-width: 1240px;
    margin: 0 auto;
}
.scalpink_gallery_inner ul {
    flex-wrap: wrap;
    gap: 60px;
    justify-content: center;
}
.scalpink_gallery_inner ul li {
    width: calc(100% / 2 - 30px);
}
.scalpink_gallery_title {
    background: #3e3a39;
    background: #d18c33;
    color: var(--w_color);
    text-align: center;
    padding: 10px 20px;
    font: bold clamp(18px, 2vw, 22px) var(--font_ja);
}

/*-------------------------------------
”トータルヘッドケア匠”について
-------------------------------------*/
.scalpink_about {
    background: #dfd9c9;
}
.scalpink_about_inner {
    padding: 150px 20px;
    max-width: 1240px;
    margin: 0 auto;
}
.scalpink_about_box {
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.scalpink_about_image {
    width: 38%;
}
.scalpink_about_text {
    width: 54%;
}
.scalpink_about_heading ul {
    width: 100%;
    margin-bottom: 20px;
}
.scalpink_about_heading ul li {
    font: bold clamp(14px, 2vw, 24px) var(--font_ja);
    background: #d7cbad;
    background: linear-gradient(to right, #7c5907, #bd9f51, #7c5907);
    color: var(--w_color);
    margin-right: 20px;
    padding: 2px 10px;
	flex: 1 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
.scalpink_about_heading ul li:last-child {
    margin-right: 0;
}
.scalpink_about_heading_bottom {
    margin-bottom: 40px;
    font: bold clamp(20px, 2.5vw, 40px) var(--font_ja);
    text-align: center;
}
.scalpink_about_text p {
    margin-bottom: 40px;
    font: bold clamp(15px, 2vw, 24px) var(--font_ja);
    line-height: 2.0;
    text-align: center;
}
.scalpink_about_address {
    padding: 30px;
    background: #ebe8e1;
    text-align: center;
}
.scalpink_about_address_top {
    margin-bottom: 10px;
    font: bold clamp(18px, 2vw, 24px) var(--font_ja);
}
.scalpink_about_address_bottom {
    margin-bottom: 10px;
}
.scalpink_about_address_link a {
    font: bold clamp(16px, 2vw, 18px) var(--font_ja);
    color: var(--a_color);
}
.manager_text ul {
    margin: 20px 0;
}
.manager_text li {
	padding-left:24px;
	position:relative;
}
.manager_text li:before,
.manager_text li:after{
	content:"";
	display:block;
	position:absolute;
}
.manager_text li:before{
	width:16px;
	height:16px;
	border-radius:3px;
	background:var(--w_color)fff;
	border:1px solid #000000;
	left:0;top:2px;
}
.manager_text li:after{
	border-left:2px solid #ff0000;
	border-bottom:2px solid #ff0000;
	width:15px;
	height:5px;
	-webkit-transform:rotate(-45deg);
	transform:rotate(-45deg);
	left:5px;
	top:3px;
}
.manager_inner {
    padding: 80px;
    background: #ebe8e1;
}
.manager_inner h3 {
    margin-bottom: 40px;
    font: bold clamp(18px, 2vw, 30px) var(--font_ja);
    text-align: center;
}
.manager_box {
    max-width: 1240px;
    justify-content: space-between;
}
.manager_left {
    width: 30%;
}
.manager_text {
    width: 65%;
}
.manager_image {
    margin-bottom: 20px;
}
.manager_left p {
    text-align: center;
}

/* 施術の流れ */
.scalpink_flow {
    background: #d7cbad;
    background: url("img/scalpink_solution_back.jpg");
    background-attachment: fixed;
}
.scalpink_flow_inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 100px 20px;
}
.scalpink_flow_list {
    padding-left: 0;
}
.top_flow_number {
	width: 130px;
	height: 130px;
    font: normal clamp(15px, 2vw, 30px) var(--font_en);
	display: flex;
	justify-content: center;
	align-items: center;
    background: url("img/basic_icon.svg") repeat;
    color: var(--f_color);
    border-radius: 50%;
    text-align: center;
}
.top_flow_number p {
	width: 130px;
}
.top_flow_number span {
    display: block;
    font: bold clamp(15px, 2vw, 20px) var(--font_en);
    color: #5a3919;
}
.top_flow_number span:last-child {
    font: bold clamp(15px, 3vw, 60px) var(--font_en);
    color: #5a3919;
}
.scalpink_flow_title {
    margin-bottom: 10px;
    font: bold clamp(20px, 2vw, 30px) var(--font_ja);
    background: linear-gradient(to right, #7c5907, #bd9f51, #7c5907);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.scalpink_flow_left {
    width: 100%;
    justify-content: space-between;
}
.scalpink_flow_image {
    width: 30%;
}
.scalpink_flow_list > li {
    list-style-type: none;
    padding: 50px;
    margin-bottom: 40px;
    background: var(--w_color);
    justify-content: space-between;
}
.scalpink_flow_list > li dl dt {
    font-size: 1.2em;
    line-height: 2;
    font-weight: bold;
    margin-bottom: 10px;
}
.top_flow_number {
    position: relative;
    margin-right: 40px;
}
.scalpink_flow_number::before {
    content: 'STEP';
    font-size: 0.3em;
    display: block;
    margin-bottom: 3px;
    letter-spacing: 1px;
}
.scalpink_flow_list > li:last-child .scalpink_flow_number::after {
    display: none;
}
.scalpink_flow_list > li dl dd {
    margin: 0;
}
.scalpink_flow_box {
    width: 66%;
    margin-top: 0.8em;
}

.scalpink_contact_phone {
    font: bold clamp(26px, 2vw, 40px) var(--font_en);
}
.scalpink_contact_box {
    align-items: center;
    justify-content: center;
}
.scalpink_contact_phone p {
    text-align: center;
}
.scalpink_contact_phone a {
    text-decoration: none;
    /* color: var(--a_color); */
    color: var(--f_color);
}
.scalpink_contact_phone a i {
    /* color: var(--a_color); */
    margin-right: 10px;
}
.box-004 {
    padding: 30px;
    background: #ebe8e1;
    margin-top: 40px;
}
.box-004_title {
    margin-bottom: 10px;
    font: bold clamp(16px, 2vw, 18px) var(--font_ja);
}
.dli-exclamation-circle {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    position: relative;
    width: 1em;
    height: 1em;
    border: 2px solid currentColor;
    border-radius: 50%;
    box-sizing: content-box;
    margin-right: 5px;
}
.dli-exclamation-circle > span {
    width: 0.15em;
    height: 0.6em;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.dli-exclamation-circle > span::before, .dli-exclamation-circle > span::after {
    content: '';
    display: block;
    width: inherit;
    background: currentColor;
}
.dli-exclamation-circle > span::before {
    margin-bottom: 0.1em;
    height: 0.35em;
    border-radius: 0.025em;
}
.dli-exclamation-circle > span::after {
    height: 0.15em;
    border-radius: 50%;
}

.scalpink_faq {
    background: #e4dfd3;
    background: #d7cbad;
}
.scalpink_faq_box dl {
    margin-bottom: 30px;
    background: var(--w_color);
    padding: 50px;
}
.scalpink_faq_box dl:last-child {
    margin-bottom: 0;
}
.scalpink_faq_inner dt {
    margin-bottom: 10px;
    padding: 10px 0 10px 47px;
    font: bold 20px var(--font_ja);
    line-height: 1.6;
    position: relative;
}
.scalpink_faq_inner dt::before {
    content: 'Q';
    position: absolute;
    top: 0;
    left: 0;
    font: normal 48px var(--font_ja);
    font-weight: bold;
    color: #AC9E4C;
    line-height: 1;
}
.scalpink_faq_inner dd {
    padding: 10px 0 10px 47px;
    font: normal 16px var(--font_ja);
    line-height: 1.6;
    position: relative;
}
.scalpink_faq_inner dd::before {
    content: 'A';
    position: absolute;
    top: 0;
    left: 0;
    font: normal 48px var(--font_ja);
    font-weight: bold;
    color: var(--f_color);
    line-height: 1;
}


.contact_button {
    display: flex;
}
.contact_button a {
    font: 900 clamp(14px, 2.0vw, 16px) var(--font_ja);
    width: 100%;
    text-align: center;
    position: relative;
    display: inline-block;
    text-decoration: none;
    border-radius: 4px;
}
.contact_button a:hover {
    opacity: 0.8;
}
.contact_line a {
    padding: 17px 40px 17px 20px;
    background: #02b404;
    color: var(--w_color);
    border-bottom: 6px solid #069009;
}

.contact_line a,
.contact_post a {
    position: relative;
}
.contact_line a:before,
.contact_post a:before {
    position: absolute;
    right: 25px;
    top: 50%;
    content: "";
    width: 8px;
    height: 8px;
    margin-top: -2px;
    transform: rotate(45deg) translateY(-50%);
}
.contact_line a:before {
    border-right: 2px solid var(--w_color);
    border-top: 2px solid var(--w_color);
}
.contact_post a:before {
    border-right: 2px solid var(--m_color);
    border-top: 2px solid var(--m_color);
}
.contact_post a {
    padding: 17px 35px 17px 20px;
    background: var(--a_color);
    color: var(--m_color);
    border-bottom: 6px solid #e3cc00;
}
.contact_button i {
    font-size: 20px;
    margin-right: 10px;
    vertical-align: middle;
}
.contact_line i {
    color: var(--w_color);
}
.contact_post i {
    color: var(--m_color);
}
.contact_post {
    max-width: 320px;
    text-align: center;
    margin-left: 10px;
}

/*-------------------------------------
お問い合わせ
-------------------------------------*/
.contact_box {
    margin-bottom: 60px;
    background: var(--w_color);
    justify-content: space-between;
    background: var(--b_color);
}
.contact_box span {
    font-weight: bold;
    color: var(--m_color);
}
.contact_image {
    width: 38%;
}
.contact_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact_text {
    width: 62%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding: 50px;
}
.contact_bottom_box {
    margin-bottom: 40px;
}
.contact_bottom_box p {
    text-align: center;
}
.contact_info {
    text-align: center;
    padding: 40px 20px;
    margin: 0 auto 5vw;
    background: #f3f3f3;
}
.contact_info p {
    margin-bottom: 10px;
}
.contact_info a {
    text-decoration: none;
    color: var(--m2_color);
    margin-bottom: 10px;
    width: 100%;
    cursor: pointer;
    letter-spacing: 0.05em;
    font: 900 clamp(28px, 3vw, 50px) / 1 var(--font_en2);
}
.contact_info a i {
    margin-right: 10px;
    color: var(--m2_color);
}
.contact_info a:hover {
    opacity: 0.7;
}

/*お問い合わせフォーム内*/
.wpcf7-list-item-label {
    margin-left: 5px;
}
.wpcf7-form_form {
    border-top: 1px solid #ddd;
    background: var(--w_color);
}
.wpcf7_left {
    display: block;
    max-width: 250px;
    width: 100%;
    padding: 25px 15px;
    list-style: none;
    border-bottom: 1px solid #ddd;
}
form.wpcf7-form .required:after,
form.wpcf7-form .arbitrary:after {
    width: auto;
    display: inline-block;
    padding: 0 5px 0 5px;
    font-weight: normal;
    font-size: 10px;
    margin-right: 10px;
    vertical-align: middle;
}
form.wpcf7-form .required:after {
    content: "必須";
    background: #e74c3c;
    color: var(--w_color);
}
form.wpcf7-form .arbitrary:after {
    content: "任意";
    background: #999;
    color: var(--w_color);
}
.wpcf7_right {
    width: 100%;
    padding: 25px 15px;
    border-bottom: 1px solid #ddd;
    border-left: none;
}
.wpcf7_checkbox_title {
    max-width: 200px;
    width: 100%;
    border: 1px solid #ddd;
    border-bottom: none;
    background: #f3f3f3;
}
span.wpcf7-list-item {
    display: block !important;
}
.wpcf7-list-item_first_input input {
    width: auto !important;
}
span.wpcf7-list-item input {
    width: auto !important;
}
.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
    border: 2px solid #e94e43 !important;
    font-size: 14px;
    color: #e94e43;
    margin: 30px 0;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border: 2px solid #e94e43 !important;
    font-size: 14px;
    color: #e94e43;
}
@media all and (-ms-high-contrast: none) {
    span.wpcf7-list-item input {
        margin: 0 5px 0 0;
    }
}
.form_privacy span.wpcf7-list-item input {
    margin: 0 5px 4px 0;
}
.wpcf7_container #info2 {
    margin-top: 10px;
}
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border: none;
    padding: 8px;
    width: 100%;
    font-size: 100%;
    background: #f3f3f3;
    outline: none;
}
.wpcf7-checkbox input,
.wpcf7-checkbox label span {
    cursor: pointer;
}
.form_privacy {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    text-align: center;
}
.wpcf7c-elm-step2 {
    text-align: center;
}
.wpcf7_container {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
input::placeholder,
input::-moz-input-placeholder,
input::-ms-input-placeholder,
textarea::placeholder,
textarea::-ms-placeholder,
textarea::-moz-placeholder {
    color: #ddd;
}
/*submitボタンのリセットCSS*/
input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}
.wpcf7-form div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
    border: 2px solid #e94e43;
    font-size: 14px;
    color: #e94e43;
    margin: 30px 0;
}
.wpcf7-form span.wpcf7-not-valid-tip {
    font-size: 14px;
    color: #e94e43;
}
/*submitボタンの装飾*/
.wpcf7c_submit {
    text-align: center;
}
.wpcf7c_submit input {
    outline: none;
    max-width: 250px;
    width: 100%;
    margin: 15px auto 0;
    display: block;
    color: var(--w_color);
    font-weight: 700;
    z-index: 0;
    border: none;
    padding: 15px;
    font-size: 14px;
    letter-spacing: 0.18em;
}
.wpcf7c_submit input[type="submit"] {
    text-align: center;
    background: var(--m_color);
}
.wpcf7c_submit input[type="submit"]:hover,
.wpcf7c_submit input[type="button"]:hover {
    opacity: 0.8;
}
.wpcf7c_submit input[type="button"] {
    background: none;
    border: 1px solid;
    color: #555;
}

/*プライバシーポリシー*/
.readme {
    width: 78%;
    height: 200px;
    margin: 40px auto 10px;
    overflow-y: scroll;
    padding: 10px 20px;
    background: var(--w_color);
    border: 1px solid #dadada;
    font-size: 0.8125rem;
}
.readme > p {
    font-size: 0.8125rem;
}
.readme dl {
    margin: 20px 0 0;
}
.readme dt {
    font-weight: bold;
}
.readme dd {
    margin: 0 0 0 15px;
}
.readme ol li {
    margin: 0 0 0 40px;
    list-style: decimal-leading-zero;
}

/* コンタクトフォーム確認画面 */
#wpcf7cpcnf table {
    border: none;
    width: 100%;
}
#wpcf7cpcnf table th {
    background: var(--b_color);
    border: 1px solid #ccc;
    color: #202020;
    text-align: left;
    width: 25%;
    padding: 10px 15px;
}
#wpcf7cpcnf table th p {
    color: #202020;
}
#wpcf7cpcnf table td {
    background: var(--w_color);
    border: 1px solid #ccc;
    width: 75%;
    padding: 5px 15px;
}
.wpcf7cp-btns {
    text-align: center;
}
.wpcf7cp-btns button {
    padding: 15px 20px;
    font-weight: bold;
    cursor: pointer;
}
.wpcf7cp-cfm-edit-btn {
    background: var(--a_color);
    color: var(--w_color);
    border: none;
}
.wpcf7cp-cfm-submit-btn {
    background: var(--m_color);
    color: var(--w_color);
    border: none;
}
.wpcf7 p {
    display: inline;
    }
/*recaptcha*/
.grecaptcha-badge {
    bottom: 90px !important;
    z-index: 5;
}

/*-------------------------------------
パンくず
-------------------------------------*/
.breadcrumbsinner {
    width: 100%;
    padding: 30px 50px;
    background: #f3f3f3;
}
.breadcrumbs {
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.5;
    background: none;
    position: relative;
}
.breadcrumbs a,
.breadcrumbs span {
    font-size: 13px;
    color: var(--f_color);
    font-family: var(--font_ja);
    letter-spacing: 0.15em;
}
.breadcrumbs:before {
    content: "\f015";
    font: 100% "Font Awesome 6 free";
    font-weight: bold;
}
.breadcrumbs span:last-child a {
    pointer-events: none;
    text-decoration: none;
}

/*-------------------------------------
フッター部分
-------------------------------------*/
.footer_sup p {
    font-size: 14px;
}
.footer_sup {
    max-width: 900px;
    margin: 0 auto 80px;
}
.footer_address {
    margin: 0 0px 0 0;
}

.footer_address_in {
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 60px 20px 20px;
}
.footer_address_box_in {
    margin-left: 40px;
}
.footer_address_box_in a {
    text-decoration: none;
    color: var(--f_color);
}

/* フッター */
/* .footer {
    background: #d7cbad;
    background: #e0c792;
} */

.footer_inner {
    padding: 20px 20px 0;
    margin: 0 auto;
    max-width: 1240px;
}
.footer_address {
    text-align: left;
    letter-spacing: 0.15em;
    justify-content: center;
    width: 100%;
    margin-bottom: 40px;
}
.footer_logo {
    padding: 0;
    background: none;
    margin-bottom: 10px;
    width: 100%;
    height: 80px;
}
.footer_logo img {
    width: 100%;
    height: 100%;
    max-width: 160px;
}
.footer_address_box {
    width: 100%;
    text-align: left;
}
.footer_address_left {
    margin-right: 50px;
}

.footer_address p {
    font-size: 0.8125rem;
    color: var(--f_color);
}
.footer_address a {
    text-decoration: none;
    color: var(--f_color);
}
/*アドレス*/
.address_container {
    font-size: 0.8125rem;
    color: var(--f_color);
}
.address_container a {
    color: var(--f_color);
    text-decoration: none;
}
.address_container p {
    font-size: 16px;
}
.copyright {
    text-align: center;
    border: none;
    color: var(--f_color);
    font-size: 0.6875rem;
    padding: 20px 0;
    /* background: var(--b_color); */
}
.copyright p {
    color: var(--f_color);
    font-size: 0.8125rem;
}
.copyright a {
    font-size: 0.875rem;
    color: var(--f_color);
}

/* topに戻る */
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 6;
}
#page-top a {
    display: block;
    position: relative;
    padding: 10px 12px;
    background: var(--a_color);
    width: 60px;
    height: 60px;
}
#page-top a::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border-top: 2px solid var(--w_color);
    border-left: 2px solid var(--w_color);
    transform: translate(-50%, -50%) rotate(45deg);
    position: absolute;
    left: 50%;
    top: 61%;
}
#page-top a:hover {
    opacity: 0.7;
}

@media only screen and (max-width: 1140px) {
    .header_img_inner_text {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%) translateX(0%);
    }
}

@media only screen and (min-width: 921px) {
    .pc_none {
        display: none;
    }
}
@media only screen and (max-width: 920px) {
    .sp_none {
        display: none;
    }
    /*-------------------------------------
    header
    -------------------------------------*/
    .h_nav_wrap {
        padding: 0px 0px 0 0;
    }
    .h_nav_wrap.is-fixed {
        padding: 0px 0px 0 0;
    }
    .h_nav_inner {
        padding: 5px 10px;
    }
    .top_site_ttl {
        width: 120px;
    }
    .h_nav_wrap.is-fixed .top_site_ttl {
        width: 90px;
        padding: 0px 0;
    }
    .site_ttl {
        width: 170px;
    }
    .h_nav_wrap.is-fixed .site_ttl {
        width: 120px;
        padding: 10px 0;
    }
    .site_ttl a {
        display: block;
        color: var(--f_color);
        font-weight: bold;
        text-decoration: none;
        margin: 0 auto;
        transition: var(--tr);
    }
    .nav_cta_inner {
        display: block;
    }
    /***** ハンバーガーメニュー *****/    .scroll-prevent {
        overflow: hidden;
    }
    .sp_trigger_nav {
        content: "";
        display: block;
        width: 0;
        height: 0;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        opacity: 0;
        transition: opacity var(--tr);
    }
    .sp_trigger_nav.open {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    .menu-trigger {
        display: inline-block;
        width: 50px;
        height: 45px;
        vertical-align: middle;
        cursor: pointer;
        position: absolute;
        top: 50%;
        right: 10px;
        z-index: 100;
        background:var(--m_color);

    transform: translate(0,-50%);
    }
    .menu-trigger span {
        display: inline-block;
        box-sizing: border-box;
        position: absolute;
        left: 10px;
        width: 30px;
        height: 1px;
        background: var(--w_color);
        transition: var(--tr);
    }
    .menu-trigger.active span {
        background-color: var(--w_color) !important;
    }
    .menu-trigger span:nth-of-type(1) {
        top: 13px;
        width: 10px;
    }
    .menu-trigger.active span:nth-of-type(1) {
        transform: translateY(12px) rotate(-45deg);
        width: 30px;
    }
    .menu-trigger span:nth-of-type(2) {
        top: 21px;
        width: 20px;
    }
    .menu-trigger.active span:nth-of-type(2) {
        opacity: 0;
    }
    .menu-trigger span:nth-of-type(3) {
        bottom: 12px;
    }
    .menu-trigger.active span:nth-of-type(3) {
        transform: translateY(-12px) rotate(45deg);
        bottom: 6px;
    }

    /* .h_nav_wrap.is-fixed .menu-trigger  {
        top: 0px;
    } */
    .sp_trigger_nav {
        width: 100%;
        height: 100%;
        padding: 75px 0;
        background: var(--w_color);
        position: fixed;
        top: 0;
        right: 0;
        z-index: 8;
        transform: translate(100%);
        transition: var(--tr);
        overflow-y: auto;
    }
    .sp_trigger_nav.open {
        transform: translateZ(0);
    }
    .sp_trigger_nav ul {
        height: auto;
        margin: 0 0 40px;
        line-height: 1.6;
    }
    .sp_trigger_nav .sp_trigger_nav_inner li {
        margin: 0 0 5px;
    }
    .sp_trigger_nav .sp_trigger_nav_inner a {
        text-align: left;
        position: relative;
        display: block;
        text-decoration: none;
        color: var(--f_color);
        padding: 10px 20px;
        text-align: center;
        font: 16px var(--font_en);
    }
    .sp_trigger_nav .sp_trigger_nav_inner_inner {
        border-bottom: none;
    }
    .sp_trigger_nav .sp_trigger_nav_inner_inner li a {
        padding: 10px 0 10px 60px;
        color: var(--f_color);
        text-decoration: none;
    }
    .sp_h_nav_list a {
        color: var(--f_color);
        text-decoration: none;
    }
    .sp_trigger_nav .sp_trigger_nav_inner_inner li a:before {
        content: "┗";
        font-weight: normal;
        left: 40px;
        color: var(--f_color);
    }
    .sp_trigger_nav li {
        border: none;
        text-align: center;
        margin: 10px 0 0 0;
    }
.sp_trigger_nav li:last-child a {
    color: var(--w_color);
    font-size: 16px;
    font-weight: bold;
    background: var(--m_color);
    padding: 5px 20px;
    border-radius: 5px;
}
.sp_trigger_nav li:last-child a i {
    color: var(--w_color);
    margin-right: 5px;
}

    /*ハンバーガーメニューここまで*/

.sp_h_nav .nav_tel_number {
    margin-bottom: 20px;
}
.sp_h_nav .nav_tel_number a {

}

}

@media only screen and (max-width: 820px) {
    /*-------------------------------------
    定義
    -------------------------------------*/
    :root {
        --main_mp: 80px;
        --single_mp: 80px;
    }
    /*-------------------------------------
    共通パーツ
    -------------------------------------*/
    .sp_none {
        display: none !important;
    }
    .flex {
        display: block;
    }

    .site_ttl {
        width: 140px;
        padding: 5px 0;
    }
    .h_nav_wrap.is-fixed .site_ttl {
        width: 120px;
        padding: 0px 0;
    }
    .menu_wrap {
        height: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0px 30px;
        text-decoration: none;
        z-index: 100;
        cursor: pointer;
        position: relative;
    }

/* ヘッダー画像 */
.header {
    position: relative;
}
.main_image_box_text {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    height: 100%;
}
.main_image_text {
    width: 100%;
    position: absolute;
    left: 0px;
    top: 80%;
    padding: 0 20px;
    transform: translate(0,-50%);
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    z-index: 1;
}
.main_image_text img {
    width: 100%;
}
.single_image_wrap {
    padding: 140px 20px 60px;
    text-align: center;
}
.single_image_wrap h1 {
    position: relative;
    font-size: 20px;
    letter-spacing: 0.5vw;
    color: var(--w_color);
    text-align: center;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}
.single_image_wrap h1:before {
    line-height: 1.2;
    margin-bottom: 15px;
}
.recruit_image_wrap {
    padding: 120px 20px 60px;
    text-align: center;
}
.recruit_image_wrap h1 {
    position: relative;
    font-size: 20px;
    letter-spacing: 0.5vw;
    color: var(--w_color);
    text-align: center;
    max-width: 1240px;
    margin: 0 auto 20px;
    padding: 0 20px;
}
.recruit_image_wrap h1:before {
    margin-bottom: 15px;
}
.recruit_image_wrap > p {
    max-width: 680px;
    margin:0 auto;
    padding: 15px 20px;
}
.recruit_image_wrap_inner  {
    margin:0 auto 20px;
    max-width: 680px;
}
.recruit_image_wrap_one {
    margin-bottom: 10px;
    padding: 10px 20px;
}

/* TOPのスライダー画像 */
.slider {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}
.slider {
    position: relative;
    height: 40vh;
    margin-right: 0;
    margin-top: 0;
    overflow: hidden;
    background: var(--b_color);
}
.slick-img img {
    width: 100%;

}
@keyframes zoomUp {
    0% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
.add-animation {
    animation: zoomUp 7s linear 0s normal both;
}
.slider_inner {
    display: block;
}
.slider_inner_sp {
    display: none;
}
.slick-slide img {
    width: 100%;
    height: auto;
}
.mypattern {
    width: 100%;
}
.slick-prev:before,
.slick-next:before {
    font-size: 40px;
    color: var(--w_color);
    background: #d94177;
    width: 60px;
    height: 60px;
    padding: 10px 10px;
}
.slick-prev{
    height: 30px;
    left: 0px;
    z-index: 1;
}
.slick-prev:before{
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    content: "\f053";
}
.slick-dotted.slick-slider {
    margin-bottom: 0;
}
.slick-next{
    height: 30px;
    right: 25px;
    z-index: 1;
}
.slick-next:before{
    font-family:"Font Awesome 5 Free";
    font-weight: bold;
    content: "\f054";
}
.home .slick-dots{
    bottom:-45px;
}
.slick-track img {
    font-family:initial;
    object-fit: cover;
object-position: 100% center;
    height: 40vh;
}
.slider {
    display: none;
}
.slider.slick-initialized {
    display: block;
}

.header_img_container h1 {
    text-align: center;
}
.header_img_container {
    position: relative;
    width: 100%;
    height: 480px;
    background-position: 50% 60%;
}
body .header_img_container {
    position: relative;
    z-index: 0;
}
.header_img_inner_img {
    position: relative;
    margin: 0 auto;
    background: var(--b_color);
}
.header_img_inner_text {
    position: static;
    left: 50%;
    top: 420px;
    padding: 20px 20px 50px;
    transform: translateY(0%) translateX(0%);
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}
.header_img_inner_text p {
    text-align: center;
    font-weight: 700;
    line-height: 1.8;
}
.header_text_two {
    margin-bottom: 10px;
}
.header_text_three {
    margin-bottom: 0;
}
.header_text_four {
    margin-bottom: 10px;
}


/*************************************/
.h_img_wrap {
    position: relative;
}
.header_img_container {
    position: relative;
    margin: 118px 0 0;
    width: 100%;
    height: 400px;
    background: var(--m_color);
    z-index: 0;
}
.other_h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    line-height: 1.5;
    width: 100%;
}


/* TOPの見出し */
.top_h2 {
    margin-bottom: 40px;
}
.top_h2 .data_text {
    margin-bottom: 5px;
}

/* TOP以外の見出し */
.other_h2 {
    margin-bottom: 30px;
}
.other_h2 span {
    margin-bottom: 5px;
}
.other_h2 h2:after {
    width: 60px;
    height: 2px;
    margin: 20px auto 0;
}

    /*-------------------------------------
    CTA
    -------------------------------------*/
    .common_cta_wrap {
        padding: 40px 20px;
    }
    .cta_mail a,
    .header_mail a {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-decoration: none;
        padding: 15px 20px;
    }
    .cta_mail, .cta_line {
        max-width: 360px;
        margin: 0 auto;
    }
.header_cta_inner .cta_mail {
    margin: 0 0px 10px 0;
}
.common_cta_wrap .cta_mail {
        margin:0 auto 10px;
    }
    .cta_mail a {
        width: 100%;
        margin: 0 auto;
    }
    .header_mail {
        max-width: 480px;
        margin: 0 auto;
    }
    .header_mail a {
        width: 100%;
    }
    .cercleArrow {
        right: 10px;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--m_color);
        color: var(--w_color) !important;
    }
    .common_cta_inner a:hover {
        opacity: 0.8;
    }
    .cta_phone {
        margin-bottom: 20px;
    }
    .cta_phone_number {
        margin: 0 auto;
        text-align: center;
    }

.bg {
    background: url(img/header.jpg) no-repeat;
    background-position: 50% 50%;
    width: 100%;
    max-width: 1920px;
    height: 320px;
    background-size: 820px;
    position: relative;
}
.top_header_inner {
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
}
.top_header_text {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 58%;
    transform: translate(-50%,-50%);
    margin: 0 auto;
    z-index: 1000;
}
.top_header_text {
    width: 100%;
    max-width: 500px;
    padding: 0 20px;
}
.top_header_text img {
    width: 100%;
}


    .top_company_title {
        margin-bottom: 20px;
    }
    .top_company_image {
        width: 100%;
        margin-bottom: 20px;
    }
    .top_company_image img {
        object-fit:contain;
        aspect-ratio:inherit;
    }
    .top_company_text {
        width: 100%;
    }
    .top_company_sub {
        margin-bottom: 20px;
    }
    .top_company_text_in {
        margin-bottom: 20px;
    }

    /*-------------------------------------
    TOP 事業内容
    -------------------------------------*/
    .top_service_list {
        margin-bottom: 40px;
    }
    .top_service_list li {
        width: 100%;
        max-width: 500px;
        margin: 0 auto 40px;
    }
    .top_service_image {
        margin-bottom: 20px;
    }
    .top_service_text h3 {
        margin-bottom: 5px;
    }


    /*-------------------------------------
    TOP お知らせ
    -------------------------------------*/
    .top_news_inner {
        margin: 0 auto 150px;
        padding: 150px 20px 0;
    }
    .top_news_list li:last-child {
        margin-bottom: 0;
    }
    .top_news_title {
        padding-right: 55px;
    }
    .top_news_inner {
        margin: 0px auto 0px;
        padding: 50px 20px;
    }
    .top_news_list {
        width: 100%;
    }
    .top_news_title {
        padding-right: 55px;
    }
    .top_news_text {
        margin-top: 20px;
    }
    .top_news_text p {
        margin-bottom: 20px;
    }
    .top_news_text p:last-child {
        margin-bottom: 0;
    }
    .top_news_list {
        width: 100%;
    }
    .top_news_list > li {
        padding: 20px;
    }
    .top_news_category {
        font-size: 12px;
        margin-right: 30px;
    }
    .top_news_title_box::before {
        top: 32px;
        right: 20px;
        transform: rotate(0deg);
    }
    .top_news_title_box::after {
        top: 32px;
        right: 20px;
        transform: rotate(90deg);
    }
    .top_news_title_box.is-close::before {
        transform: rotate(45deg);
    }
    .top_news_title_box.is-close::after {
        transform: rotate(-45deg);
    }

    .contact_button {
        display: block;
    }
    .contact_button a {
        width: 100%;
        text-align: center;
        position: relative;
        display: inline-block;
        text-decoration: none;
        border-radius: 4px;
    }
    .contact_line a {
        padding: 17px 20px;
    }
    .contact_post a {
        padding: 17px 35px 17px 20px;
    }
    .contact_button i {
        font-size: 20px;
        margin-right: 10px;
    }
    .contact_post {
        max-width: 320px;
        margin-left: 0;
        margin-top: 10px;
    }

    /*-------------------------------------
    企業情報ページ
    -------------------------------------*/
    .company {
        margin: var(--single_mp) 0;
    }
    .company_box h3 {
        margin-bottom: 20px;
    }
    .summary_table {
        margin: 0 auto var(--m_ps50);
    }
    .summary_table table {
        width: 100%;
        font-size: 16px;
    }
    .summary_table th {
        width: 100%;
        padding: 10px 20px;
        display: block;
        border: none;
    }
    .summary_table td {
        padding: 10px 0px;
        display: block;
        border: none;
    }
    .summary_table .sup {
        font-size: 15px;
    }
    .store_googlemap  {
        margin-top: 40px;
        line-height: 0;
        width: 100%;
    }
    .store_googlemap iframe {
        width: 100%;
        border: none;
        height: 250px;
    }
    .company_googlemap  {
        margin-top: 40px;
        line-height: 0;
    }
    .company_googlemap iframe {
        width: 100%;
        border: none;
        height: 250px;
    }
    .company_box_one {
        margin-bottom: 40px;
    }
    .branch_table_top_title {
        padding: 10px 20px;
    }
    .branch_table_top dl {
        padding: 20px;
        background: var(--w_color);
    }
    .branch_table_top dt {
        width: 100%;
        padding: 0;
    }
    .branch_table_top dd {
        width: 100%;
        padding: 0;
    }
    .branch_table_top span {
        margin-right: 0;
        margin-bottom: 10px;
        padding: 2px 10px;
        display: block;
    }

    /*-------------------------------------
    業務内容ページ
    -------------------------------------*/
    .service_box_top {
        margin-bottom: 60px;
    }
    .service_box h3 {
        margin-bottom: 20px;
        padding: 0px 0px 10px;
    }
    .service_box h3::after {
        bottom: -2px;
        width: 70px;
    }
    .service_box {
        justify-content: space-between;
    }
    .service_image {
        width: 100%;
        margin-bottom: 20px;
    }
    .service_image img {
        width: 100%;
        object-fit:contain;
        aspect-ratio:inherit;
    }
    .service_text {
        width: 100%;
    }

    .takumi_about_box {
        justify-content:space-between;
        width: 100%;
    }
    .takumi_about_image {
        width: 100%;
        margin-bottom: 20px;
    }
    .takumi_about_text {
        width: 100%;
    }
    .service_text_box {
        margin-bottom: 20px;
        padding: 20px;
    }
    .relaxation_box_top {
        margin-bottom: 40px;
    }
    .relaxation_box .common_list li {
        margin-bottom: 5px;
    }
    .service_text_box li {
        margin-bottom: 5px;
    }
    .service_text_box li:last-child {
        margin-bottom: 0;
    }
    .relaxation_box li:last-child {
        margin-bottom: 0;
    }
    .relaxation_box li span {
        margin-right: 10px;
        padding: 2px 10px;
    }
    .service_text_title {
        margin-bottom: 10px;
        font: bold clamp(15px, 2vw, 20px) var(--font_ja);
    }

    .relaxation_inner .service_box,
    .extermination_inner .service_box {
        margin-bottom: 40px;
    }
    .relaxation_text ul {
        margin-bottom: 15px;
    }

    .takumi_about_address {
        padding: 20px;
    }
    .takumi_about_address_top {
        margin-bottom: 5px;
        font: bold clamp(15px, 2vw, 18px) var(--font_ja);
    }
    .relaxation_text li {
        margin-right: 10px;
        padding: 5px;
        font: bold clamp(12px, 2.5vw, 20px) var(--font_ja);
    }
    .relaxation_text_box_strong {
        margin-bottom: 15px;
    }
    .relaxation_text p {
        margin-bottom: 20px;
    }

    .takumi_service_box {
        justify-content: space-between;
        margin-bottom: 60px;
    }
    .takumi_service_inner section:last-child .takumi_service_box {
        margin-bottom: 0;
    }
    .takumi_service_image {
        width: 100%;
        margin-bottom: 20px;
    }
    .takumi_service_text {
        width: 100%;
    }
    .menu_box {
        margin-top: 20px;
    }
    .menu_box table {
        width: 100%;
    }
    .menu_box th {
        width: 100%;
        padding: 10px 0px;
        display: block;
        border: none;
    }
    .menu_box td {
        padding: 10px 0px;
        display: block;
        border: none;
        text-align: center;
    }
    .menu_box td div span {
        padding: 2px 10px;
    }
    .takumi_service_text h3 {
        margin-bottom: 20px;
    }
    .faq_inner dl {
        margin-bottom: 20px;
        padding: 20px;
    }
    .faq_inner dl:last-child {
        margin-bottom: 0;
    }
    .faq_inner dt {
        margin-bottom: 10px;
        padding: 10px 0 10px 47px;
    }
    .faq_inner dd {
        padding: 10px 0 10px 47px;
    }

    .store_map {
        justify-content: space-between;
        margin-bottom: 0;
    }
    .store_image {
        width: 100%;
        margin-bottom: 20px;
    }
    .company_googlemap {
        width: 100%;
    }

    /*-------------------------------------
    ヘアタトゥーページ
    -------------------------------------*/
    .scalpink_cta_limit {
        width: 90px;
        height: 90px;
        display: flex;
    }
    .scalpink_cta_limit p {
        width: 90px;
    }
    .scalpink_cta {
        padding: 60px 0px;
    }
    .scalpink_cta_back {
        padding: 20px;
    }
    .cta_tel_box {
        padding: 20px;
    }

    .scalpink_cta_image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 20px;
    }
    .scalpink_cta_box {
        margin-bottom: 20px;
    }
    .scalpink_cta_box_in {
        margin-bottom: 20px;
        justify-content: center;
    }
    .scalpink_cta_text {
        margin: 0 10px;
    }
    .scalpink_cta_text_top {
        padding: 2px 20px;
        margin-bottom: 10px;
    }
    .scalpink_cta_price {
        justify-content: center;
    }
    .scalpink_cta_text_right {
        margin-left: 5px;
    }
    .scalpink_cta_text_bottom span {
        text-decoration-line: line-through;
        margin: 0 5px;
    }
    .h_nav_wrap.is-fixed .pc_h_nav .cta_btn {
        padding: 5px 50px 5px 10px;
        margin: 0 0 0 40px;
    }

.scalpink_cta_text_top {
    font: bold 14px var(--font_ja);
}
.scalpink_cta_price {
    font: bold 24px var(--font_ja);
}
.scalpink_cta_price_left {
    font: bold 60px var(--font_en);
}
.scalpink_cta_text_right {
    font: normal 30px var(--font_en);
}
.scalpink_cta_price_right span:first-child {
    font: bold 16px var(--font_ja);
}
.scalpink_cta_price_right span:last-child {
    font: bold 40px var(--font_ja);
}
.scalpink_cta_text_bottom span {
    font: normal 24px var(--font_en);
}
.scalpink_cta_price_right {
    line-height: 1.2;
}
    /* ctaボタン */
    .cta_btn::before,
    .cta_btn::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
    }
    .cta_btn::before {
        right: 20px;
        width: 22px;
        height: 22px;
    }
    .scalpink_cta .cta_btn {
        max-width: 700px;
        padding: 20px 50px 20px 30px;
        margin: 0 auto;
        display: block;
    }
    .pc_h_nav .cta_btn {
        padding: 5px 40px 5px 10px;
        margin: 0 0 0 20px;
    }
.sp_h_nav .cta_btn {
        padding: 5px 40px 5px 10px;
        margin: 0 suto;
        max-width: 300px;
        display: block;
}
    .scalpink_solution .cta_btn {
        padding: 20px 40px 20px 10px;
    }
    .cta_btn::before {
        right: 10px;
    }
    .cta_btn::after {
        right: 15px;
    }

/* メインヘッダー */
.scalpink_header_wrap {
    background-size: cover;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
    height: 100vh;
}
.scalpink_header .scalpink_header_wrap {
    background: url("img/header_scalpink.jpg") no-repeat;
    background-position: 75% 30%;
}
.exosome_header .scalpink_header_wrap {
    background: url("img/header_exosome.jpg") no-repeat;
    background-position: 75% 30%;
}
.scalpink_header_inner {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    height: 100%;
}
.scalpink_header_text {
    position: absolute;
    left: 50%;
    top: auto;
    bottom: 40px;
    transform: translate(-50%,0);
    max-width: 360px;
}
.scalpink_header .scalpink_header_text {
    width: 100%;
}
.exosome_header .scalpink_header_text {
    width: 100%;
}
.scalpink_header_text img {
    width: 100%;
}
    /* 薄毛にお悩み手間やストレスなく即効解決！ */
    .scalpink_solution {
        background-position: 90% 0;
        background-size: cover;
        max-width: 1920px;
        margin: 0 auto;
        padding: 0 0px;
        width: 100%;
        background-size: 1000px;
        height: 100%;
    }
.scalpink .scalpink_solution {
        background: none;
        background-color: #eaeae7;
    background-position: 28% 30%;

}
.exosome .scalpink_solution {
        background: none;
            background-color: var(--w_color);
    background-position: 28% 30%;
}
    .scalpink .scalpink_solution_sp_image {
        background: url("img/solution_back.jpg") no-repeat;
        background-color: #f2f2f2;
        background-position: 0% 0%;
        width: 100%;
        background-size: cover;
        height: 300px;
        aspect-ratio: 1920 / 1080;
        max-width: 600px;
        margin: 0 0 0 auto;
    }
    .exosome .scalpink_solution_sp_image {
        background: url("img/exosome_solution_back.jpg") no-repeat;
        background-color: var(--w_color);
        background-position: 0% 0%;
        width: 100%;
        background-size: cover;
        height: 300px;
        aspect-ratio: 1920 / 1080;
        max-width: 600px;
        margin: 0 0 0 auto;
    }
    .scalpink_solution_inner {
        max-width: 1240px;
        margin: 0 auto;
        position: relative;
        height: 100%;
        padding: 20px 0 60px;
    }
.scalpink_solution_inner p {
    margin-bottom: 20px;
}
    .scalpink_solution_text {
        position: static;
        top: auto;
        left: 50%;
        bottom: 20px;
        transform: translate(0,0);
        margin: 0 auto;
        padding: 0 20px;
        width: 100%;
        max-width: 800px;
    }
    .solution_text_top {
        margin-bottom: 20px;
    }
    .solution_text_top div {
        padding-left: 55px;
    }
    .solution_text_top div:before,
    .solution_text_top div:after{
        content:"";
        display:block;
        position:absolute;
    }
    .solution_text_top div:before{
        width:24px;
        height:24px;
        border-radius:3px;
        left:20px;
        top:25px;
    }
    .solution_text_top div:after{
        width:25px;
        height:10px;
        -webkit-transform:rotate(-45deg);
        transform:rotate(-45deg);
        left:24px;
        top:23px;
    }

    .exosome_solution {
        background: url("img/exosome_solution_back.jpg") no-repeat;
        background-position: 50% 100%;
    }
    .exosome_solution_inner {
        padding: 60px 20px;
    }
    .exosome_solution_box {
        margin: 0 auto 40px;
    }
    .exosome_solution_image {
        width: 100%;
        max-width: 550px;
        margin: 0 auto 20px;
    }
    .exosome_solution_text {
        width: 100%;
    }

    .exosome_solution_text_top {
        font: bold clamp(16px, 2.6vw, 24px) var(--font_ja);
    }
    .exosome_solution_text_top div {
        padding: 0 0 0 45px;
        margin-bottom: 10px;
    }
    .exosome_solution_text_top div:before{
        width:26px;
        height:26px;
        left:0;
        top:7px;
    }
    .exosome_solution_text_top div:after{
        width:25px;
        height:10px;
        left:9px;
        top:10px;
    }
    .exosome_solution_text {
        align-items: center;
        max-width: 550px;
        margin: 0 auto;
    }
    .exosome_solution_heading {
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }
    .exosome_rank_image {
        width: 20%;
    }
    .exosome_solution_h2 {
        width: 76%;
    }

    .scalpink .scalpink_basic_inner {
        padding: 60px 20px 70px;
        clip-path: polygon(100% 0, 100% 92%, 50% 100%, 0 92%, 0 0);
    }
    .exosome .scalpink_basic_inner {
        padding: 60px 20px 70px;
    }
    .scalpink_basic_image {
        max-width: 1000px;
        margin: 80px auto 0;
    }
    .scalpink_basic_bottom_inner {
        position: relative;
        padding: 60px 20px;
    }
    .scalpink_basic_bottom_box {
        margin: 0 auto;
        max-width: 1240px;
        align-items: center;
        justify-content: space-between;
    }
    .scalpink_basic_bottom_image {
        width: 100%;
        max-width: 200px;
        margin: 0 auto 20px;
    }
    .scalpink_basic_bottom_text {
        width: 100%;
    }
    .scalpink_basic_bottom_text p {
        padding: 50px;
    }
    .scalpink_basic_inner ul {
        gap: 70px 20px;
        max-width: 1240px;
        margin: 100px auto 0;
    }
    .scalpink_basic_inner ul li {
        width: calc(100% / 2 - 10px);
        padding: 20px;
    }
    .scalpink_basic_bottom {
        max-width: 840px;
        margin: 60px auto 0;
    }
    .top_service_number {
        width: 100px;
        height: 100px;
        margin: -70px auto 10px;
    }
    .top_service_number p {
        width: 100px;
    }
    .scalpink_basic_title {
        margin-bottom: 10px;
    }
    .solution_h2 {
        margin-bottom: 20px;
    }
    .scalpink_about_h2 {
        max-width: 780px;
        margin-bottom: 40px;
    }
    .basic_h2 {
        margin: 0 auto 60px;
        max-width: 900px;
    }
    .trouble_h2 h2 {
        margin: 0 auto 20px;
        max-width: 860px;
    }
    .scalpink_basic_bottom_text div {
        padding: 20px;
    }

    /*-------------------------------------
    薄毛の悩みは人それぞれ…
    -------------------------------------*/
    .scalpink_trouble_inner {
        padding: 50px 20px 0;
    }
    .scalpink_trouble_top {
        max-width: 1140px;
        margin: 0 auto;
    }
    .scalpink_trouble_middle {
        margin: 0 auto 100px;
        max-width: 1000px;
        padding: 50px;
    }
    .scalpink_trouble_bottom {
        padding: 100px 0px 60px;
    }
    .scalpink_trouble_image {
        max-width: 400px;
        margin: 0 auto;
    }
    .scalpink_trouble_bottom ul {
        max-width: 1240px;
        margin: 0 auto;
    }
    .scalpink_trouble_bottom ul li {
        width: 100%;
        margin-bottom: 70px;
    }
    .scalpink_trouble_bottom ul li:last-child {
        margin-bottom: 0;
    }
    .scalpink_trouble_image {
        top: -60px;
        left: 50%;
        width: 100%;
        padding: 0 20px;
    }
    .scalpink_trouble_bottom_text {
        padding: 100px 20px 20px;
    }
    .top_trouble_title {
        margin-bottom: 20px;
    }

    /* ”トータルヘッドケア匠”について */
    .scalpink_gallery_h2 {
        max-width: 600px;
        margin: 0 auto 40px;
    }
    .scalpink_gallery {
        padding: 60px 20px;
    }
    .scalpink_gallery_inner ul li {
        width: 100%;
        margin-bottom: 20px;
    }
    .scalpink_gallery_inner ul li:last-child {
        margin-bottom: 0;
    }
    .scalpink_gallery_title {
        padding: 10px 20px;
    }

    /*-------------------------------------
    ”トータルヘッドケア匠”について
    -------------------------------------*/
    .scalpink_about_inner {
        padding: 60px 20px;
        max-width: 1240px;
        margin: 0 auto;
    }
    .scalpink_about_box {
        width: 100%;
        margin-bottom: 40px;
    }
    .scalpink_about_heading_bottom {
        margin-bottom: 20px;
    }
    .scalpink_about_image {
        width: 100%;
        margin: 0 auto 20px;
        max-width: 300px;
    }
    .scalpink_about_text {
        width: 100%;
    }

    .scalpink_about_heading ul li {
        margin-right: 10px;
        padding: 2px 5px;
        flex: 1 0 auto;
        display: flex;
    }
    .scalpink_about_text p {
        margin-bottom: 20px;
    }
    .manager_inner {
        padding: 20px;
    }
    .manager_inner h3 {
        margin-bottom: 20px;
    }
    .manager_left {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 20px;
    }
    .manager_text {
        width: 100%;
    }
    .manager_image {
        margin-bottom: 20px;
    }
    .scalpink_about_address {
        padding: 30px;
    }
    .scalpink_about_address_top {
        margin-bottom: 10px;
    }
    .scalpink_about_address_bottom {
        margin-bottom: 10px;
    }
    .manager_text ul {
        margin: 20px 0;
    }
    .manager_text li {
        padding-left:24px;
    }
    .manager_text li:before{
        width:16px;
        height:16px;
        left:0;
        top:2px;
    }
    .manager_text li:after{
        width:15px;
        height:5px;
        left:5px;
        top:3px;
    }

    /*-------------------------------------
    ご利用の流れ
    -------------------------------------*/
    .scalpink_flow_inner {
        padding: 60px 20px;
    }
    .scalpink_flow_list {
        padding-left: 0;
    }
    .top_flow_number {
        width: 100px;
        height: 100px;
        display: flex;
        margin: -70px auto 20px;
    }
    .top_flow_number p {
        width: 100px;
    }
    .top_trouble_number {
        width: 100px;
        height: 100px;
        display: flex;
        margin: -150px auto 20px;
    }
    .top_trouble_number p {
        width: 100px;
    }
    .top_trouble_number span {
        display: block;
        font: bold clamp(15px, 2vw, 20px) var(--font_en);
        color: #5a3919;
    }
    .top_trouble_number span:last-child {
        font: bold clamp(15px, 3vw, 60px) var(--font_en);
        color: #5a3919;
    }
    .scalpink_flow_title {
        margin-bottom: 10px;
        font: bold clamp(18px, 2vw, 24px) var(--font_ja);
    }
    .scalpink_flow_left {
        width: 100%;
        justify-content: space-between;
    }
    .scalpink_flow_image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto 20px;
    }
    .scalpink_flow_list > li {
        list-style-type: none;
        padding: 20px;
        margin-top: 80px;
        margin-bottom: 0;
    }
    .scalpink_flow_list > li dl dt {
        margin-bottom: 10px;
    }
    .scalpink_contact_mail {
    margin-left: 0px;
}


    .scalpink_contact_phone {
        margin-bottom: 10px;
        text-align: center;
    }
    .box-004 {
        padding: 20px;
        margin-top: 20px;
    }

    .scalpink_flow_number::before {
        content: 'STEP';
        font-size: 0.3em;
        display: block;
        margin-bottom: 3px;
        letter-spacing: 1px;
    }
    .scalpink_flow_list > li:last-child .scalpink_flow_number::after {
        display: none;
    }
    .scalpink_flow_list > li dl dd {
        margin: 0;
    }
    .scalpink_flow_box {
        width: 100%;
        margin-top: 0.8em;
    }

    /* よくある質問 */
    .scalpink_faq_box dl {
        margin-bottom: 30px;
        padding: 20px;
    }
    .scalpink_faq_box dl:last-child {
        margin-bottom: 0;
    }
    .scalpink_faq_inner dt {
        padding: 10px 0 10px 47px;
    }
    .scalpink_faq_inner dt::before {
        top: 0;
        left: 0;
    }
    .scalpink_faq_inner dd {
        padding: 10px 0 10px 47px;
    }
    .scalpink_faq_inner dd::before {
        top: 0;
        left: 0;
    }


    /*-------------------------------------
    お問い合わせ
    -------------------------------------*/
    .contact_box {
        margin-bottom: 30px;
    }
    .contact_image {
        width: 100%;
    }
    .contact_text {
        width: 100%;
        display: block;
        padding: 20px;
    }
    .contact_bottom_box {
        margin-bottom: 40px;
    }
    .contact_info {
        padding: 40px 20px;
        margin: 0 auto 5vw;
    }
    .contact_info p {
        margin-bottom: 10px;
    }
    .contact_info a {
        margin-bottom: 10px;
    }
    /*-------------------------------------
    お問い合わせ
    -------------------------------------*/
    .wpcf7 {
        margin: 30px 0 0;
    }
    .wpcf7_container div.flex {
        display: block;
    }
    .wpcf7_checkbox_title {
        border: none;
    }
    .wpcf7-form-control-wrap input,
    .wpcf7-form-control-wrap textarea {
        font-size: 16px;
    }
    .wpcf7-form_form .flex {
        display: block;
        border-bottom: 1px solid #ddd;
        padding: 0 0 15px;
    }
    .wpcf7_left {
        max-width: 100%;
        border: none;
        padding: 10px 0;
    }
    .wpcf7_right {
        padding: 0;
        border: none;
    }
    .readme {
        width: 100%;
        margin: 30px 0 10px;
        height: 150px;
    }

    /*-------------------------------------
    footer
    -------------------------------------*/
.footer_address_in {
    width: 100%;
    padding: 0;
}
.footer_address_box_in {
    margin-left: 0;
}
.footer_address_in .site_ttl {
    margin-bottom: 10px;
}
    .footer {
        position: relative;
        z-index: 0;
}
    .footer_inner {
        display: block;
        padding: 40px 20px 20px;
    }
    .footer_nav {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        border: none;
        padding: 0;
        margin: 0 0 30px;
    }
    .footer_nav li {
        margin: 0 0 5px;
    }
    .copyright {
        padding: 20px;
        margin: 0 0 0;
    }
    .footer_address_left {
        margin-right: 0;
        margin-bottom: 40px;
    }
    .footer_sup {
        margin-bottom: 40px;
    }

}
@media only screen and (max-width: 550px) {
    /*-------------------------------------
    定義
    -------------------------------------*/
    :root {
        --main_mp: 60px;
        --single_mp: 60px;
        --m_ps30: 20px;
        --m_ps50: 30px;
        --m_ps60: 40px;
        --m_ps100: 50px;
    }


.other_header {
    position: relative;
    background-position: 50% 60%;
    background-size: 550px;
    width: 100%;
    max-width: 1920px;
    height: 300px;
}
.other_header h1,
.other_header div {
    padding: 0 20px;
}
.other_header h1:before {
    margin-bottom: 15px;
}

.store_header_wrap h1 {
    max-width: 280px;
    padding: 0 20px;
    margin: 0 auto;
}

    /* メインヘッダー */
    .scalpink_header_wrap {
        background-size: cover;
        max-width: 1920px;
        margin: 0 auto;
        padding: 0 0px;
        width: 100%;
        background-size: 1000px;
        height: 100%;
    }
    .scalpink_header .scalpink_header_wrap {
            background: none;
            background-color: #f2f2f2;
            background-position: 90% 0;
    }
    .exosome_header .scalpink_header_wrap {
            background: none;
            background-color: #f2f2f2;
            background-position: 90% 0;
    }
    .scalpink_header_inner {
        max-width: 1240px;
        margin: 0 auto;
        position: relative;
    }
    .scalpink_header_sp_image {
        background-size: cover;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
        background-size: 500px;
        height: 250px;
    }
    .scalpink_header .scalpink_header_sp_image {
        background: url("img/header_scalpink.jpg") no-repeat;
        background-color: #f2f2f2;
        background-position: 90% 0;
        background-size: cover;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
        background-size: 500px;
        height: 250px;
    }
    .exosome_header .scalpink_header_sp_image {
        background: url("img/header_exosome.jpg") no-repeat;
        background-color: #f2f2f2;
        background-position: 90% 0;
        background-size: cover;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
        background-size: 500px;
        height: 250px;
    }
    .scalpink_header_text {
        width: 100%;
        max-width: 320px;
        position: static;
        left: 50%;
        top: auto;
        bottom: 60px;
        transform: translate(0,0);
        width: 100%;
        margin: 0 auto;
        padding: 20px 20px 60px;
    }
    .scalpink_header_text img {
        width: 100%;
    }
    .scalpink_solution_sp_image {
        height: 300px;
        max-width: 240px;
        margin: 0 auto;
    }

    /*-------------------------------------
    共通パーツ
    -------------------------------------*/
    .sp_none2 {
        display: none !important;
    }
    .pc_none2 {
        display: block;
    }
    .h1,
    body:not(.home):not(.single) h1 {
        font-size: 16px;
        padding: 0;
    }
    body:not(.home) h1.singleh1 {
        padding: 0;
        font-size: 20px;
    }
    body:not(.home) h1::after {
        left: 23px;
        top: 14px;
    }

    /* TOPの見出し */
    .top_h2 {
        margin-bottom: 20px;
    }
    .top_h2 .data_text {
        margin-bottom: 10px;
    }

    /* TOP以外の見出し */
    .other_h2 h2 {
        letter-spacing: 0.15em;
        font: bold var(--h3_font) var(--font_ja);
        color: var(--f_color);
        text-align: center;
        z-index: 0;
        display: inline-block;
        font-weight: 900;
        position: relative;
    }
    .other_h2 {
        text-align: center;
        position: relative;
        margin-bottom: 50px;
    }
    .other_h2 h2:before {
        content: attr(data-text);
        position: absolute;
        text-transform: uppercase;
        color: var(--f_color);
        z-index: -1;
        font: 900 clamp(22px, 12vw, 120px) var(--font_en);
        left: 50%;
        top: 35%;
        transform: translate(-50%, -50%);
        letter-spacing: 0.5vw;
    }

    /*-------------------------------------
    レイアウト
    -------------------------------------*/
    .wrap {
        font-size: 15px;
    }


/* サイトタイトル */
.site_ttl {
    width: 120px;
    line-height: 0;
    transition: var(--tr);
    padding: 0px 0;
}
.site_ttl_box p {
    display: flex;
    padding: 5px 5px;
    margin-left: 10px;
    font-size: 12px;
}



    /*-------------------------------------
    TOPページお知らせ
    -------------------------------------*/
    .new_inner:before {
        font-size: 60px;
    }
    .news_thumbnail {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .top_news_heading {
        margin-bottom: 20px;
    }

    .scalpink .scalpink_basic_inner {
        padding: 60px 20px 20px;
        clip-path: polygon(100% 0, 100% 97%, 50% 100%, 0 97%, 0 0);
    }
    .exosome .scalpink_basic_inner {
        padding: 60px 20px 20px;
    }
    .scalpink_basic_inner ul {
        margin: 100px auto 0;
        display: block;
    }
    .scalpink_basic_inner ul li {
        width: 100%;
        padding: 20px;
        margin-bottom: 70px;
    }

    /*-------------------------------------
    パンくずリスト
    -------------------------------------*/
    .breadcrumbsinner {
        padding: 30px 20px;
    }


    .exosome_solution_box {
        margin: 0 auto 40px;
    }
    .exosome_solution_image {
        width: 100%;
        max-width: 550px;
        margin: 0 auto 20px;
    }
    .exosome_solution_text {
        width: 100%;
    }


    .exosome_solution_heading {
        display: block;
        margin-bottom: 20px;
    }
    .exosome_solution_text_top {
        font: bold clamp(16px, 2.6vw, 24px) var(--font_ja);
    }
    .exosome_solution_text_top div {
        padding: 0 0 0 45px;
        margin-bottom: 10px;
    }
    .exosome_solution_text_top div:before{
        width:26px;
        height:26px;
        left:0;
        top:7px;
    }
    .exosome_solution_text_top div:after{
        width:25px;
        height:10px;
        left:9px;
        top:10px;
    }
    .exosome_solution_text {
        align-items: center;
        max-width: 550px;
        margin: 0 auto;
    }
    .exosome_solution_heading {
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }
    .exosome_rank_image {
        width: 100%;
        max-width: 120px;
        margin: 0 auto 20px;
    }
    .exosome_solution_h2 {
        width: 100%;
    }


    /*-------------------------------------
    footer追従ナビ
    -------------------------------------*/
    .sp_bar {
        padding-bottom: env(safe-area-inset-bottom);
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9;
        background: var(--m_color);
    }
    .sp_bar li {
        width: 100%;
        padding: 5px 0;
    }
    .sp_bar a {
        color: var(--w_color);
        padding: 0 10px;
        display: block;
        font-size: 0.6875rem;
        text-align: center;
        position: relative;
        text-decoration: none;
    }
    .sp_bar li a:before {
        font-weight: bold;
        font-family: "Font Awesome 6 Free";
        display: block;
    }
    .sp_bar li:nth-of-type(1) a:before {
        content: "\f0e0";
    }
    .sp_bar li:nth-of-type(2) :before {
        content: "\f077";
    }
}