@charset "UTF-8";
/* 幅1000px以下からcss適応 */
@media only screen and (max-width: 1050px) {
  /* ヘッダー */
  .nav_wrap ul li {
    width: 100%;
    display: block;
    text-align: center;
  }
  .nav_wrap ul li a {
    padding: 14px 0.5vw;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
  }
  #main {
    width: 95%;
    flex-direction: column;
    padding: 32px 16px;
  }
  #conts {
    width: 100%;
    max-width: 715px;
    margin: 0 auto;
  }
  /* 仮削除 */
  #side {
    display: none;
  }
  .nav_pc {
    display: none;
  }
  .h_logo-access {
    display: none;
  }
  #nav {
    padding: 0;
  }
  .nav_sp {
    display: flex;
    justify-content: space-between;
    background: #c7c3b7;
  }
  .nav_sp-conts {
    width: calc(100% / 3);
    text-align: center;
    border-right: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .nav_sp-conts:last-of-type {
    border-right: none;
  }
  /* ハンバーガーメニュー */
  .sp_hummenu {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
  }
  .hum_menu_obtn {
    background: none;
    padding: 0;
    border: none;
    width: 100%;
    color: #fff;
    border-radius: 50px;
    font-weight: bold;
    letter-spacing: 0.05em;
    display: block;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .hum_menu_obtn p {
    line-height: 0;
  }
  .hum_menu_obtn_bar {
    position: relative;
    width: 100%;
    border-top: 3px solid #fff;
    padding: 5px 0px 0;
  }
  .hum_menu_obtn_bar:before,
  .hum_menu_obtn_bar:after {
    content: "";
    display: block;
    border-top: 3px solid #fff;
    padding: 5px 0 0;
  }
  .hum_menu_obtn span {
    position: relative;
    width: 100%;
    display: block;
    top: 0;
    line-height: 1;
    color: #fff;
  }
  .hum_menu_nav {
    background: rgba(253, 253, 253, 0.98);
    height: 100%;
    right: 100%;
    position: fixed;
    top: 0;
    transition-duration: 0.3s;
    transition-property: right;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    width: 280px;
    color: #000;
  }
  .hum_menu_nav.clicked {
    right: calc(100% - 280px);
    overflow: scroll;
    z-index: 100000;
  }
  .hum_menu_nav_close {
    padding: 15px 0;
  }
  .hum_menu_cbtn {
    background: rgba(64, 166, 41, 0);
    border: none;
    color: #000;
    padding: 0;
    font-weight: bold;
    letter-spacing: 0.05em;
    display: block;
    position: absolute;
    top: 25px;
    left: 17px;
  }
  .hum_menu_cbtn_bar {
    position: relative;
    top: 0;
    width: 100%;
    padding: 5px 0 0;
  }
  .hum_menu_cbtn_bar:before,
  .hum_menu_cbtn_bar:after {
    content: "";
    display: block;
    border-top: 3px solid #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: 3px;
  }
  .hum_menu_cbtn_bar:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: -3px;
    margin-bottom: 15px;
  }
  .hum_menu_nav_menu {
    margin-top: 55px;
  }
  .hum_menu_nav_menu-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    border-top: 1px solid #000;
  }
  .hum_menu_nav_menu-list li {
    color: #000;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #000;
    line-height: 1.5;
    font-size: 0.85em;
    font-weight: bold;
    position: relative;
    text-align: center;
  }
  .hum_menu_nav_menu-list li:nth-child(2n+1) {
    width: 100%;
    border-bottom: 1px solid #000;
  }
  .hum_menu_nav_menu-list li a {
    padding: 16px 0;
    display: block;
    color: #333;
    text-decoration: none;
  }
  .hum_menu_nav_menu-list li a:after {
    content: "";
    position: absolute;
    right: 15px;
    width: 8px;
    height: 8px;
    margin-top: 3px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: transform 0.3s linear 0s;
    transition: transform 0.3s linear 0s;
  }
  .hum_menu_nav_menu-list li a.more_on:after {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .hum_menu_nav_menu-list li.sp_nav_more_wrap a {
    padding: 16px 0;
  }
  .hum_menu_nav_menu-list ul.sp_nav_more {
    border-top: none;
  }
  .hum_menu_nav_menu-list ul.sp_nav_more li {
    text-align: right;
    padding: 10px 15px 0;
    font-size: 1.05em;
    border-bottom: none;
    background: rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
  }
  .hum_menu_nav_menu-list ul.sp_nav_more li:last-child {
    border-bottom: none;
    padding-bottom: 10px;
  }
  .hum_menu_nav_menu-list ul.sp_nav_more li:after {
    content: none;
  }
  .hum_menu_nav_menu-list ul.sp_nav_more li a {
    padding: 5px 0;
    text-align: center;
  }
  .hum_menu_nav_menu-list ul.sp_nav_more li a:after {
    content: none;
  }
  .sp_nav_more_o {
    display: none;
    width: calc(200% + 2px);
  }
  .sp_nav_more_r {
    position: relative;
    left: -100%;
    width: 200%;
  }
  .hum_open_bg_display {
    transition: all 0.25s linear 0s;
  }
  .hum_open_bg_display.active {
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    height: 100%;
  }
  /* ここまで */
  .hum_menu_obtn,
  .sp_tel,
  .sp_contact {
    min-height: 94px;
  }
  .sp_tel p,
  .sp_contact p {
    line-height: 0;
  }
  .hum_menu_obtn p,
  .sp_tel a,
  .sp_contact a {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    transition: all 0.25s linear 0s;
  }
  .hum_menu_obtn p img,
  .sp_tel a img,
  .sp_contact a img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  .nav_side #side {
    display: block;
    margin: 24px auto 0;
    padding-bottom: 0;
  }
  #nav_side-btn {
    display: block;
    box-shadow: none;
    border: none;
    background: #c7c3b7;
    padding: 8px 40px 8px 60px;
    box-sizing: border-box;
    border-radius: 100px;
    color: #453b35;
    font-size: 1em;
    font-weight: bold;
    margin: 16px auto 32px;
    position: relative;
  }
  #nav_side-btn:before {
    content: "";
    width: 3px;
    height: 10px;
    background: #453b35;
    position: absolute;
    left: 41px;
    bottom: 15px;
    transform: rotate(-45deg);
  }
  #nav_side-btn:after {
    content: "";
    width: 3px;
    height: 10px;
    background: #453b35;
    position: absolute;
    left: 47px;
    bottom: 15px;
    transform: rotate(45deg);
  }
  #nav_side-btn.on:before {
    transform: rotate(-315deg);
  }
  #nav_side-btn.on:after {
    transform: rotate(315deg);
  }
  #nav.on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
  #nav.on .hum_menu_obtn p,
  #nav.on .sp_tel a,
  #nav.on .sp_contact a {
    max-height: 70px;
  }
  #nav.on .hum_menu_obtn p img,
  #nav.on .sp_tel a img,
  #nav.on .sp_contact a img {
    max-height: 45px;
  }
  /* common */
  #conts {
    width: 95%;
    max-width: 715px;
    margin: 0 auto;
  }
  .offer_btn {
    width: 80%;
  }
}

/* 幅900px以下からcss適応 */
@media only screen and (max-width: 900px) {
  .h_c {
    display: none;
  }
  .h_r {
    margin-left: 32px;
    flex-direction: column;
  }
  .h_r-l {
    margin-bottom: 16px;
    margin-right: 0;
  }
  .h_btnconts {
    display: flex;
  }
  .h_btn {
    margin-right: 16px;
  }
  .h_btn:last-of-type {
    margin-right: 0;
  }
}

/* 幅800px以下からcss適応 */
@media only screen and (max-width: 800px) {
  /* common */
  .conts01 {
    padding: 0;
  }
  .maincampaign_text {
    font-size: 3.5vw;
    top: 18vw;
  }
  /* top */
  .flow_step ul li {
    width: calc(50% - 4vw);
    margin-right: 8vw;
  }
  .flow_step ul li:after {
    right: -8vw;
  }
  .flow_step ul li:nth-child(2n) {
    margin-right: 0;
  }
}

/* 幅660px以下からcss適応 */
@media only screen and (max-width: 660px) {
  /* header */
  #nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
  }
  #nav .hum_menu_obtn p,
  #nav .sp_tel a,
  #nav .sp_contact a {
    min-height: 55px;
    max-height: 55px;
  }
  #nav .hum_menu_obtn p img,
  #nav .sp_tel a img,
  #nav .sp_contact a img {
    max-height: 40px;
  }
  #header {
    width: 95%;
    padding: 0;
    margin: 65px auto 0;
    background: #fff;
  }
  .h_wrap {
    width: 100%;
    padding: 8px 0 16px;
  }
  .h1_t {
    width: 100%;
    padding: 0 2.5%;
    border-bottom: 1px dotted #68605b;
    box-sizing: border-box;
    margin-right: 0;
    padding-bottom: 6px;
    font-size: 12px;
    line-height: 1.6;
  }
  .h_r {
    display: none;
  }
  .h_h1-t {
    margin-top: 55px;
    padding-top: 4px;
    padding-bottom: 8px;
    line-height: 1.5;
  }
  .h_conts {
    display: block;
    width: 100%;
    padding: 0 2.5%;
    box-sizing: border-box;
    margin: 16px auto 0;
  }
  .hum_menu_obtn,
  .sp_tel,
  .sp_contact {
    min-height: 64px;
  }
  .h_logo p {
    text-align: center;
  }
  .h_logo p img {
    width: 90%;
    max-width: 320px;
    height: auto;
  }
  .h_logo-pc {
    display: none;
  }
  .h_logo-sp {
    display: block;
  }
  .h_access {
    margin-top: 8px;
  }
  .h_access p.h_access-pc {
    display: none;
  }
  .h_access p.h_access-sp {
    display: block;
    text-align: center;
    font-size: 12px;
  }
  /* common */
  #main {
    padding: 0;
    margin: 16px auto;
  }
  #top #main{
    padding-top: 24px;
  }
  #conts {
    padding: 0;
  }
  .conts01 {
    margin-top: 0;
    margin-bottom: 24px;
  }
  .conts01:last-of-type {
    margin-bottom: 0;
  }
  .ttl02 {
    margin-bottom: 0;
  }
  .img_f-r {
    margin-left: 16px;
    margin-bottom: 4px;
  }
  .side_menu-conts ul li {
    text-align: left;
  }
  /* top */
  /* sp用メインイメージ */
  .mainimage_pc {
    display: none;
  }
  .mainimage_sp {
    display: block;
  }
  .sp_logo_wrap {
    display: flex;
    justify-content: space-between;
  }
  .sp_logo {
    width: calc(100% - 162px);
  }
  .sp_logo img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  #mainimage p{
    width: 100%;

  }
  /* なぜ？即日即美人だけではなく、骨格から健康にキレイになれるのか？ */
  .why_text01 {
    font-size: 24px;
  }
  .why_text01 .br {
    display: inline;
  }
  /* 美容鍼灸整体サロン Deltaに来てよかった！お客様の笑顔が信頼の証！ */
  .response_ttl01 {
    font-size: 24px;
    padding: 16px;
  }
  /* こんなお悩みはございませんか？ */
  .nayami_ttl01 {
    font-size: 24px;
  }
  .nayami_conts {
    margin-top: 24px;
  }
  .nayami_conts-wrap {
    padding: 36px 16px 24px;
  }
  .nayami_list li {
    background-size: 20px auto;
    font-size: 16px;
    padding-left: 28px;
  }
  /* 専門家が当院の技術を推薦！ */
  .suisen_ttl01 {
    margin-bottom: 0;
  }
  .suisen_textarea {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
    margin: 0 16px;
  }
  .suisen_text-ttl01 {
    font-size: 22px;
    line-height: 1.5;
  }
  .suisen_text-ttl01sub {
    font-size: 16px;
  }
  .suisen_img {
    margin: 0 auto 16px;
    text-align: center;
  }
  .suisen_text {
    width: 100%;
    margin: 0 auto;
  }
  .suisen_text-ttl {
    margin-bottom: 8px;
  }
  .suisen_text-message p {
    font-size: 15px;
  }
  .suisen_text-message p.suisen_message01 {
    font-size: 20px;
    margin-bottom: 4px;
  }
  /* 推薦の声 */
  .top_recommend-conts {
    padding: 16px;
  }
  .recommend_copy {
    width: 100%;
    padding: 64px 12px 12px;
    margin: 0 auto;
    box-shadow: 5px 5px 0 0 #ece9d8;
  }
  .recommend_copy img {
    max-width: 60px;
    height: auto;
  }
  .recommend_copy-medal {
    top: -30;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
  }
  .recommend_copy-text {
    margin: 0;
  }
  .recommend_copy-text p {
    font-size: 16px;
  }
  .recommend_voice {
    flex-direction: column-reverse;
    flex-wrap: wrap;
  }
  .recommend_voice-img {
    margin: 0 auto 16px;
    text-align: center;
  }
  /* このようなお悩みの方が来られています */
  .menulist_ttl01{
    font-size: 20px;
    padding: 0 1.5em;
    box-sizing: border-box;
  }
  .menulist_ttl01 span:before,
  .menulist_ttl01 span:after{
    width: 2px;
  }
  .menulist_ttl01 span:before{
    left: -8px;
  }
  .menulist_ttl01 span:after{
    right: -8px;
  }
  .menulist_ttl01 br{
    display: none;
  }
  .menulist_list li{
    width: calc(50% - 6px);
    margin-right: 12px;
    margin-bottom: 12px;
  }
  .menulist_list li:nth-of-type(3n){
    margin-right: 12px;
  }
  .menulist_list li:nth-of-type(2n){
    margin-right: 0;
  }
  .menulist_conts{
    padding: 8px;
  }
  .menulist_btn a{
    font-size: 13px;
    padding: 4px;
  }
  .menulist_btn a:after{
    top: calc(50% - 5px);
  }
  /* ビフォー&アフター */
  .ba_conts {
    padding: 24px 12px 12px;
  }
  .ba_ttl01:before, .ba_ttl01:after {
    width: 48px;
    height: 48px;
    background-size: contain;
  }
  .ba_ttl01:before {
    top: -10px;
    left: 0;
  }
  .ba_ttl01:after {
    top: 15px;
    right: 0;
  }
  .ba_ttl01 span:before {
    top: -95px;
    width: 48px;
    height: 48px;
    background-size: contain;
  }
  .ba_ttl01 span img {
    max-width: 90%;
  }
  .ba_conts-textarea {
    padding: 12px;
    margin-top: 8px;
  }
  .ba_conts-list {
    padding-bottom: 12px;
    margin-bottom: 16px;
  }
  .ba_conts-text {
    margin-top: 8px;
  }
  /* 美容鍼灸整体サロンDeltaで美しく元気になった皆様をご覧ください！ */
  .genin_img01 {
    margin-top: 24px;
  }
  /* 最短で結果を出すための3つのアプローチ */
  .approach_ttl01 {
    font-size: 24px;
  }
  .approach_text {
    margin-top: 16px;
  }
  .approach_img {
    margin-bottom: 8px;
  }
  .approach_must {
    margin-top: 0;
  }
  /* オファー */
  .offer_btn {
    width: 90%;
    bottom: 2vw;
  }
  /* 院長プロフィール */
  .profile_conts-img01 {
    width: 150px;
  }
  .profile_conts-img01 img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  /* 院の情報 */
  .top_info {
    padding: 4px;
  }
  .info_wrap {
    padding: 16px 12px;
  }
  .info_ttl01 img {
    width: auto;
    max-width: 280px;
    height: auto;
  }
  .info_conts {
    margin-top: 8px;
    flex-direction: column;
  }
  .info_map {
    line-height: 0;
    margin-bottom: 12px;
  }
  .info_map iframe {
    min-height: 240px;
  }
  .info_text {
    margin: 0 auto;
    display: flex;
    align-items: center;
  }
  .info_text p {
    margin-left: 12px;
    margin-bottom: 0;
    line-height: 0;
  }
  .info_text p:first-of-type {
    margin-left: 0;
  }
  .info_text p img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  /* 当サロンの７つの特徴 */
  .feature_ttl {
    line-height: 0;
  }
  .feature_conts {
    margin-top: 24px;
  }
  .feature_conts-ttl {
    background-size: auto 64px;
    padding-left: 72px;
    font-size: 20px;
    padding-top: 4px;
    line-height: 1.3;
    min-height: 64px;
    margin-bottom: 12px;
  }
  .feature_conts-ttl span.br {
    display: inline;
  }
  /* お客様の声 */
  .voice_conts {
    margin-top: 16px;
    padding: 16px;
  }
  .voice_conts:first-of-type {
    margin-top: 16px;
  }
  .voice_conts-ttl {
    font-size: 18px;
    padding: 8px;
    margin-bottom: 16px;
  }
  .voice_conts-textarea p.voice_conts-textarea-memo {
    text-align: left;
  }
  .voice_conts-ttl .name{
    font-size: 14px;
    line-height: 1.5;
  }
  /* 代表ごあいさつ */
  .greeting_ttl span {
    font-size: 24px;
  }
  .greeting_photo {
    width: 280px;
    margin: 0 auto 16px;
    float: none;
    text-align: center;
  }
  .greeting_photo img {
    max-width: 280px !important;
  }
  .greeting_ftlist {
    margin-top: 32px;
  }
  .list01_wrap {
    padding: 12px;
  }
  .list01_wrap ul li {
    font-size: 15px;
    background-size: 16px auto;
    background-position-y: 6px;
    padding-left: 24px;
    padding-bottom: 4px;
    margin-bottom: 8px;
  }
  .list01_wrap ul li:last-of-type {
    margin-bottom: 0;
  }
  /* 専門家からも厚い支持を頂いております */
  .recommend_ttl {
    margin-bottom: 8px;
  }
  .recommend_conts {
    padding: 16px;
    margin-top: 32px;
  }
  .recommend_conts-ttl {
    font-size: 18px;
    text-align: center;
    margin: 0 auto 16px;
    padding: 28px 8px 12px;
    line-height: 1.5;
    margin-top: 40px;
  }
  .recommend_conts-ttl:before {
    width: 64px;
    height: 70px;
    background-size: contain;
    margin: 0 auto;
    text-align: center;
    left: 0;
    right: 0;
    top: -48px;
  }
  .recommend_conts-textarea {
    flex-direction: column;
  }
  .recommend_img {
    margin: 0 auto 16px;
  }
  .recommend_text {
    width: 100%;
    margin: 0 auto;
  }
  .recommend_info {
    margin-top: 0;
    padding: 8px;
  }
  /* お問い合わせ */
  .contact_btnconts::before {
    content: none;
  }
  /* line予約 */
  .line_reserve-btn img {
    max-width: 95%;
    margin: 0 auto;
  }
  /* 最後に... */
  .last_main {
    margin-top: 0;
  }
  .last_main-pc {
    display: none;
  }
  .last_main-sp {
    display: block;
    background: url("../images/top/bg_last.png") no-repeat center center/cover;
    box-sizing: border-box;
    padding: 16px;
  }
  .last_main-sp-conts {
    background: rgba(255, 255, 255, 0.8);
    box-sizing: border-box;
    padding: 12px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
  }
  .last_main-ttl {
    font-size: 18px;
    font-weight: bold;
    text-decoration: underline;
    color: #df3e68;
  }
  /* contactconts */
  .contact {
    padding-top: 12.5vw !important;
    background-size: contain;
  }
  .contact_conts-wrap {
    padding: 8px 12px;
    margin: 8px auto;
  }
  .contact_conts-wrap:before {
    top: -3.1vw;
  }
  .contact_conts-wrap:after {
    bottom: -3.1vw;
  }
  .contact_btn-mail p a {
    padding: 16px;
    font-size: 3.7vw;
  }
  .contact_btn-mail p a img {
    width: 30px;
    height: auto;
    margin-right: 8px;
  }
  .contact_open-tbl01 {
    display: table;
    font-size: 11px;
    padding: 4px;
    border-collapse: collapse;
    border-width: 1px;
  }
  .contact_open-tbl01 tbody {
    display: table-cell;
  }
  .contact_open-tbl01 tbody tr {
    display: table-row;
  }
  .contact_access-info {
    flex-direction: column;
  }
  .contact_access-info dd {
    width: 100%;
    margin: 0 auto;
  }
  .contact_btn a img {
    max-width: 103%;
    margin-left: -1.5%;
  }
  /* commoncontact */
  .common_contact {
    background: #f56ea0;
    line-height: 1.5;
  }
  .common_contact-pc {
    display: none;
  }
  .common_contact-sp {
    display: block;
    width: 100%;
    padding: 36px 2.5% 24px;
    box-sizing: border-box;
  }
  .common_contact-sp p {
    line-height: 1.5;
    color: #fff;
  }
  .common_contact-sp p a {
    font-size: 10vw;
    font-weight: bold;
    color: #fff;
  }
  .common_contact-sp p a img {
    width: 26px;
    height: auto;
    margin-right: 4px;
    position: relative;
    top: 3px;
  }
  .common_contact-sp .common_contact-sptel {
    margin: 4px auto 8px;
  }
  .common_contact-sp .common_contact-sptext {
    font-size: 1.1em;
    font-weight: bold;
  }
  .common_contact-spopen {
    color: #fff;
    margin-top: 16px;
  }
  .common_contact-spopen dl {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
  }
  .common_contact-spopen dl:last-of-type {
    margin-bottom: 0;
  }
  .common_contact-spopen dl dt {
    width: 6em;
    display: inline-block;
    background: #fff;
    color: #f56ea0;
    box-sizing: border-box;
    padding: 2px 4px 0;
    font-weight: bold;
    margin-bottom: 8px;
    margin-right: 12px;
  }
  .common_contact-spopen dl dd {
    width: calc(100% - 6em);
    text-align: left;
  }
  .contact_info {
    margin-top: 16px;
  }
  .contact_info dl {
    flex-direction: column;
    margin-bottom: 8px;
  }
  .contact_info dl:last-of-type {
    margin-bottom: 0;
  }
  .contact_info dl dt,
  .contact_info dl dd {
    display: block;
    width: 100%;
    text-align: left;
  }
  .contact_map {
    margin-top: 16px;
  }
  .sp_btm {
    display: block;
    position: fixed;
    bottom: -100px;
    z-index: 9998;
    left: 0;
    right: 0;
    line-height: 0;
    transition: all 0.1s linear 0s;
  }
  .sp_btm img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  .sp_btm.on {
    bottom: 0;
  }
  #pagetop {
    width: 48px;
    height: 48px;
  }
  #pagetop p img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  /* footer */
  #footer {
    padding-top: 16px;
    padding-bottom: 16px;
    margin: 0 auto 23vw;
  }
  .f_menu ul {
    justify-content: flex-start;
    padding: 0 2.5%;
  }
  .f_menu ul li {
    line-height: 1.5;
    margin-bottom: 4px;
  }
  .f_menu ul li:first-of-type:before {
    content: "|";
    margin: 0 6px 0 0;
  }
  .f_menu ul li:before {
    content: "|";
    margin: 0 6px 0 0;
  }
  .f_menu ul li:after {
    content: "";
    margin: 0 0 0 6px;
  }
  .f_menu ul li:last-of-type:after {
    content: "|";
  }
  .f_menu ul li a {
    font-size: 13px;
    line-height: 1.5;
  }
  .f_ourstore ul{
    justify-content: flex-start;
    padding: 0 2.5%;
  }
  .f_ourstore ul li:first-of-type:before{
    margin: 0 6px 0 0;
  }
  .f_ourstore ul li:after{
    margin: 0 6px;
  }
  .f_ourstore ul li a{
    font-size: 13px;
    line-height: 1.5;
  }
  .f_info {
    margin: 12px auto;
    padding: 12px 0;
  }
  .f_info p {
    font-size: 12px;
  }
  .f_info-top {
    display: flex;
    flex-wrap: wrap;
  }
  .f_copy {
    font-size: 11px;
    margin-bottom: 0;
  }
  /*下層ページ
  ----------------------------------------------------*/
  #second #main {
    padding: 16px 0;
  }
  .ttl01 {
    width: 100%;
    background-size: auto 26px;
    padding-top: 26px;
    margin-bottom: 16px;
  }
  .ttl01 span {
    font-size: 26px;
  }
  .ttl02 {
    font-size: 20px;
    padding: 8px 12px 8px 30px;
    line-height: 1.5;
  }
  .ttl02:after {
    left: 10px;
  }
  .ttl03 span {
    font-size: 16px;
    padding: 8px;
    border-width: 1px;
  }
  .ttl04 {
    font-size: 24px;
  }
  .ttl05 {
    font-size: 16px;
  }
  .ttl06 {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .ttl06::before {
    top: 8px;
  }
  .ttl07{
    margin-bottom: 16px;
    padding: 0 1.25em;
  }
  .ttl07_wrap{
    font-size: 15px;
    padding: 4px;
  }
  .ttl07_wrap:before{
    left: -8px;
    transform: rotate(-15deg);
  }
  .ttl07_wrap:after{
    right: -8px;
    transform: rotate(15deg);
  }
  .ttl07_wrap br{
    display: none;
  }
  .img_f-r img {
    max-width: 120px;
  }
  .img_f-l img {
    max-width: 120px;
  }
  .list01 li {
    background-size: 18px auto;
    padding-left: 28px;
  }
  .list02_wrap {
    background-size: contain;
    padding: 16px;
  }
  .list02_wrap ul li {
    width: calc(50% - 8px);
    background-size: 18px auto;
    padding-left: 28px;
    margin-right: 16px;
    box-sizing: border-box;
  }
  .list02_wrap ul li:nth-of-type(3n) {
    margin-right: 16px;
  }
  .list02_wrap ul li:nth-of-type(2n) {
    margin-right: 0;
  }
  .list03 {
    padding: 12px 16px 8px;
  }
  .tbl01 thead {
    display: none;
  }
  .tbl01 tbody tr {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
  }
  .tbl01 tbody tr:first-of-type {
    padding-top: 0;
  }
  .tbl01 tbody tr th,
  .tbl01 tbody tr td {
    justify-content: flex-start;
    width: 100%;
    border-right: none;
    padding: 0;
    text-align: left;
  }
  #breadcrumb {
    display: none;
  }
  /* 初めての方へ */
  .about_message {
    min-height: 0;
    background-size: cover;
    padding: 8px;
  }
  .about_message.about_message-bg01{
    background-size: 100% auto;
  }
  .about_message-text {
    max-width: 100%;
    background: rgba(255, 255, 255, 0.7);
    padding: 8px;
    box-sizing: border-box;
  }
  .about_message-list {
    background: none;
    padding: 8px 12px;
  }
  .about_nayamilist:after {
    width: 35vw;
    height: 35vw;
    opacity: 0.2;
    background-size: contain;
    background-position: right bottom;
    bottom: 8px;
  }
  .about_nayamilist .list01_wrap ul{
    width: 100%;
    max-width: 100%;
  }
  .about_pointconts {
    margin-top: 0;
    margin-bottom: 40px;
  }
  .about_point-ttl {
    font-size: 24px;
    padding-top: 0;
    padding-left: 88px;
    background-size: contain;
    background-size: 72px auto;
    min-height: 90px;
  }
  .about_point-comp {
    flex-direction: column;
  }
  .about_compconts {
    width: 100%;
    margin: 56px auto 0;
    padding: 16px;
  }
  .about_compconts:first-of-type {
    margin-top: 32px;
  }
  .about_comp-ttl {
    min-height: 0;
  }
  .about_policy p {
    font-size: 20px;
  }
  .about_policy p .br {
    display: inline;
  }
  .about_infolist01 ul li {
    width: calc(50% - 8px);
    margin-right: 16px;
    margin-bottom: 16px;
  }
  .about_infolist01 ul li:nth-of-type(3n) {
    margin-right: 16px;
  }
  .about_infolist01 ul li:nth-of-type(2n) {
    margin-right: 0;
  }
  .faq_conts dl {
    margin-bottom: 24px;
  }
  .faq_conts dl dt span {
    font-size: 16px;
    padding: 4px 8px;
    border-width: 1px;
  }
  .about_goalmessage{
    padding: 12px;
  }
  .about_goalmessage-img{
    float: none;
    margin: 0 auto 12px !important;
    text-align: center;
  }
  .about_goalmessage-img img{
    max-width: 180px !important;
  }
  /* 料金・施術の流れ */
  .price_firsttext p {
    font-size: 16px;
    text-align: left;
  }
  .price_campaigntext p {
    font-size: 20px;
  }
  .price_offer {
    margin-top: 40px;
    padding: 16px;
  }
  .price_offer-ttlillust {
    margin-top: -40px;
    margin-bottom: 0 !important;
  }
  .price_offer-ttlillust img {
    max-width: 90%;
  }
  .price_offer-main {
    background-size: auto 40vw;
    background-position: right top;
  }
  .price_offer-ttl {
    font-size: 20px;
    margin: 16px auto;
  }
  .price_offer-price {
    flex-direction: column;
  }
  .price_offer-price dt {
    line-height: 0;
  }
  .price_offer-price dt img {
    max-width: 100px;
  }
  .price_offer-price dd {
    font-size: 24px;
    margin-left: 0;
  }
  .price_offer-price dd span {
    font-size: 32px;
  }
  .price_offer-price.price_offer-down {
    margin-top: 8px;
  }
  .price_offer-price.price_offer-down dt {
    line-height: 0;
  }
  .price_offer-price.price_offer-down dt img {
    max-width: 120px;
  }
  .price_offer-price.price_offer-down dd {
    font-size: 40px;
  }
  .price_offer-price.price_offer-down dd span {
    font-size: 64px;
  }
  .price_offer-conts dl {
    flex-direction: column;
  }
  .price_offer-conts dl dd {
    margin-top: 4px;
    margin-left: 0;
  }
  .price_offer-btn {
    margin-top: 16px;
  }
  .price_offer-btn a img {
    max-width: 105%;
    margin-left: -2.5%;
  }
  .price_flow {
    margin: 24px auto;
    padding: 16px;
  }
  .price_flow:first-of-type {
    margin-top: 0;
  }
  .price_flow-ttl {
    font-size: 18px;
    padding-left: 80px;
    min-height: 70px;
    margin-bottom: 16px;
  }
  .price_flow-ttl:before {
    width: 64px;
    height: 100%;
  }
  .price_flowconts {
    flex-direction: column;
    margin-top: 16px;
  }
  .price_flowimg {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 16px;
  }
  .price_flowtext {
    width: 100%;
    margin: 0 auto;
  }
  /* スタッフ紹介 */
  .staff_list01 li {
    width: calc(100% / 3 - 3px);
    margin-right: 4px;
    margin-bottom: 0px;
  }
  .staff_list01 li:last-of-type {
    margin-right: 0;
  }
  .staff_info {
    flex-direction: column;
    padding: 16px;
  }
  .staff_img {
    width: 100%;
    max-width: 203px;
    margin: 0 auto 16px;
  }
  .staff_text {
    width: 100%;
    margin: 0 auto;
  }
  .staff_history,
  .staff_message {
    margin-top: 16px;
  }
  /* 地図・行き方 */
  .access_info-wrap {
    background-size: contain;
    padding: 12px;
  }
  .access_info-wrap img {
    max-width: 90%;
    margin: 0 auto;
  }
  .access_info-wrap .access_info-list {
    margin-top: 24px;
  }
  .access_info-wrap .access_info-list dl {
    flex-direction: column;
  }
  .access_info-wrap .access_info-list dl dt,
  .access_info-wrap .access_info-list dl dd {
    display: block;
    width: 100%;
  }
  .access_rootlist {
    flex-direction: column;
  }
  .access_root {
    width: 100%;
    margin: 0 auto 24px;
  }
  .access_root-ttl {
    min-height: 48px;
    padding-left: 56px;
  }
  .access_root-ttl:before {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  /* ご予約・お問い合わせ */
  .contact_tel {
    font-size: 16px;
  }
  .contact_mailconts {
    padding: 12px;
  }
  .contact_form-tbl {
    display: block;
  }
  .contact_form-tbl tbody {
    display: block;
  }
  .contact_form-tbl tbody tr {
    display: flex;
    flex-direction: column;
  }
  .contact_form-tbl tbody tr th,
  .contact_form-tbl tbody tr td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 8px;
  }
  .contact_form-tbl tbody tr th {
    width: 100%;
    border-right: none;
    text-align: left;
  }
  .contact_form-tbl tbody tr td input {
    box-sizing: border-box;
  }
  .required {
    padding: 0 4px;
  }
  .form_submit {
    margin-top: 16px;
  }
  .form_submit input {
    font-size: 16px;
    padding: 8px;
  }
  /* よくある質問 */
  .faq_listconts {
    padding: 16px;
  }
  .faq_list-ttl {
    font-size: 16px;
    background-size: auto 16px;
    padding-left: 24px;
  }
  .faq_list ul li {
    font-size: 15px;
  }
  .faq_graph{
    flex-direction: column;
    margin: 16px auto;
  }
  .faq_graphconts{
    text-align: center;
    margin-bottom: 12px;
  }
  .faq_graphconts:last-of-type{
    margin-bottom: 0;
  }
  /* 症状別紹介 */
  .case_conts01 {
    padding: 16px;
  }
  .case_list01 li {
    font-size: 16px;
  }
  .case_list01 li:before {
    top: 8px;
  }
  /* 美容鍼 */
  .bigan_meritconts {
    padding: 32px 16px 16px;
  }
  .bigan_meritconts-merit {
    top: -32px;
  }
  .bigan_meritconts-merit p span {
    font-size: 28px;
  }
  .bigan_meritconts-ttl {
    font-size: 20px;
  }
  .bigan_meritconts-wrap {
    flex-direction: column;
  }
  .bigan_meritconts-img {
    width: 100%;
    max-width: 120px;
    margin: 0 auto 16px;
  }
  .bigan_meritconts-img img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  .bigan_meritconts-text {
    width: 100%;
    margin: 0 auto;
  }
  /* 症状別紹介 WP */
  .column_single ul {
    padding: 16px 12px 12px;
  }
}
