@charset "UTF-8";
/* 幅1200px以下からcss適応 */
@media only screen and (max-width: 1200px) {
  .h_conts-l {
    width: 50vw;
    max-width: 460px;
    margin-right: 32px;
  }
  .h_conts-c {
    width: 13vw;
    max-width: 153px;
  }
  .h_conts-c img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
}

/* 幅1000px以下からcss適応 */
@media only screen and (max-width: 1080px) {
  /* ヘッダー */
  #header {
    margin-bottom: 24px;
  }
  .h_conts-t {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-bottom: 12px;
    margin-bottom: 8px;
  }
  .h_btnconts {
    width: 100%;
    margin: 8px auto 0;
  }
  .h_btn {
    width: calc(50% - 5px);
  }
  .h_btn a {
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    height: 6vw;
    font-size: 15px;
    padding: 6px 8px;
    box-sizing: border-box;
    text-align: center;
  }
  .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 {
    flex-direction: column;
  }
  #conts {
    margin: 0 auto;
  }
  /* 仮削除 */
  #side {
    display: none;
  }
  .nav_pc {
    display: none;
  }
  .h_logo-access {
    display: none;
  }
  #nav {
    width: 100%;
    margin-top: 0;
  }
  .nav_sp {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(to bottom, #358edd 0%, #0d5ca1 100%);
  }
  .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: linear-gradient(to bottom, #358edd 0%, #0d5ca1 100%);
    color: #fff;
    padding: 8px 40px 8px 60px;
    box-sizing: border-box;
    border-radius: 100px;
    font-size: 1em;
    font-weight: bold;
    margin: 16px auto 32px;
    position: relative;
  }
  #nav_side-btn:before {
    content: "";
    width: 3px;
    height: 10px;
    background: #fff;
    position: absolute;
    left: 41px;
    bottom: 15px;
    transform: rotate(-45deg);
  }
  #nav_side-btn:after {
    content: "";
    width: 3px;
    height: 10px;
    background: #fff;
    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;
    z-index: 100;
    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 */
  #main {
    margin-bottom: 32px;
  }
  #conts {
    width: 95%;
    max-width: 730px;
    margin: 0 auto;
  }
  .offer_btn {
    width: 80%;
  }
  /* top */
  .nayami_conts-text {
    width: 98.5%;
    padding: 0 23px 20px;
    box-sizing: border-box;
  }
  .conts01-mt {
    margin-top: 64px;
  }
  .line_conts {
    margin: 0 auto;
  }
}

/* 幅900px以下からcss適応 */
@media only screen and (max-width: 900px) {
  .f_info {
    flex-wrap: wrap;
  }
  #pagetop {
    display: none;
  }
}

/* 幅800px以下からcss適応 */
@media only screen and (max-width: 800px) {
  /* common */
  .conts01 {
    padding: 0;
  }
}

/* 幅800px以下からcss適応 */
@media only screen and (max-width: 768px) {
  .about_list01 ul.list01 {
    width: calc(100% - 41vw);
  }
  .about_list01img img {
    width: 42vw;
    max-width: 318px;
    height: auto;
  }
}

/* 幅660px以下からcss適応 */
@media only screen and (max-width: 660px) {
  html.active{
    overflow-y: hidden;
  }

  /* 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 {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  #header {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    background: #fff;
  }
  .h_pc {
    display: none;
  }
  .h_sp {
    display: block;
    margin-top: 86px;
  }
  .h_sp .h_h1 {
    border-bottom: 1px solid #ddd;
  }
  .h_sp .h_h1 h1 {
    width: 95%;
    margin: 0 auto;
  }
  .h_sp-conts {
    display: flex;
    justify-content: space-between;
    width: 95%;
    margin: 0 auto;
  }
  .h_sp-no1 img {
    width: 25vw;
    max-width: 153px;
    height: auto;
  }
  .h_sp-info {
    display: flex;
    flex-direction: column;
    /*margin-left: 15px;*/
  }
  .h_sp-logo{
    text-align: center;
  }
  .h_sp-logo img {
    width: auto;
    max-width: 90%;
    height: auto;
    margin: 0 auto;
    text-align: center;
  }
  .h_sp-access {
    width: 95%;
    margin: 0 auto 8px;
    font-size: 13px;
  }

  .h_sp-scrolltop{
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 9999;
  }
  .h_sp-scrolltop-wrap{
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 12px 8px;
  }

  .h_sp-logo{
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .h_sp-logo img{
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 56px;
  }

  .h_sp-hummenu{
    display: block;
    width: 44px;
    margin-left: 12px;
  }

  .h_sp-hummenu-btn{
    padding: 0;
    background: none;
    border: none;

    width: auto;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .h_sp-hummenu-btn-icon{
    position: relative;
    width: 44px;
    height: 4px;
    background: #1f6fb6;
    margin-bottom: 8px;
    margin-top: 15px;
  }

  .h_sp-hummenu-btn-icon:before,
  .h_sp-hummenu-btn-icon:after{
    content: "";
    display: block;
    width: 44px;
    height: 4px;
    background: #1f6fb6;
    position: absolute;
    left: 0;
    right: 0;
    transition: all 0.15s linear 0s;
  }

  .h_sp-hummenu-btn-icon:before{
    top: -10px;
  }

  .h_sp-hummenu-btn-icon:after{
    bottom: -10px;
  }

  .h_sp-hummenu-btn-text{
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    margin-top: 9px;
    color: #3e3a3a !important;
  }

  .h_sp-hummenu-btn.clicked .h_sp-hummenu-btn-icon{
    background: none;
  }

  .h_sp-hummenu-btn.clicked .h_sp-hummenu-btn-icon:before,
  .h_sp-hummenu-btn.clicked .h_sp-hummenu-btn-icon:after{
    top: 0;
    width: 32px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }

  .h_sp-hummenu-btn.clicked .h_sp-hummenu-btn-icon:before{
    transform: rotate(-45deg);
  }
  .h_sp-hummenu-btn.clicked .h_sp-hummenu-btn-icon:after{
    transform: rotate(45deg);
  }

  .hummenu-main{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }

  .h_sp-hummenu-main{
    overflow: hidden;
  }

  .h_sp-hummenu-main-conts{
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    left: 0;
    width: 100%;
    height: 100%;
    /* transition: all 0.25s linear 0s; */
    z-index: 1;
    box-sizing: border-box;
    padding: 1em 0 7em;
    display: none;
  }

  .h_sp-hummenu-main-conts.active{
    overflow-y: scroll;
  }

  .h_sp-hummenu-main-mainlist ul,
  .h_sp-hummenu-main-sublist ul{
    display: flex;
    flex-direction: column;
  }

  .h_sp-hummenu-main-mainlist ul li,
  .h_sp-hummenu-main-sublist ul li{
    border-bottom: 1px solid #ccc;
  }

  .h_sp-hummenu-main-mainlist ul li:first-of-type{
    border-top: 1px solid #ccc;
  }

  .h_sp-hummenu-main-mainlist ul li a,
  .h_sp-hummenu-main-sublist ul li a{
    display: block;
    text-align: left;
    text-decoration: none;
    color: #3e3a3a;
    padding: 8px 12px;
  }

  .h_sp-hummenu-main-mainlist ul li a span,
  .h_sp-hummenu-main-sublist ul li a span{
    position: relative;
    padding-left: 16px;
  }

  .h_sp-hummenu-main-mainlist ul li a span:before,
  .h_sp-hummenu-main-sublist ul li a span:before{
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-left: 7px solid #1f6fb6;
    position: absolute;
    left: 0;
    top: 4px;
  }

  .h_sp-hummenu-main-sublist-ttl{
    /* background: linear-gradient(to bottom, #8ac8ff 0%, #5399d6 100%); */
    background: #1f6fb6;
    box-sizing: border-box;
    padding: 8px 8px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-align: center;
  }

  .h_contact,
  .h_logo,
  .h_mainimage {
    display: none;
  }
  .h_h1-t {
    margin-top: 55px;
    padding-top: 4px;
    padding-bottom: 8px;
    line-height: 1.5;
  }
  #main {
    margin-top: 0;
    margin-bottom: 16px;
    border-top: 2px solid #f0f0f0;
  }
  /* nav */
  .hum_menu_obtn,
  .sp_tel,
  .sp_contact {
    min-height: 64px;
  }
  .hum_menu_obtn img,
  .sp_tel img,
  .sp_contact img {
    max-height: 35px;
  }
  /* common */
  #conts {
    padding: 16px 0;
  }
  .conts01 {
    margin-top: 32px;
  }
  .ttl02 {
    margin-bottom: 1em;
  }
  /* top */
  /* sp用メインイメージ */
  .mainimage_pc {
    display: none;
  }
  .mainimage_sp {
    display: block;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
  }
  .mainimage_sp img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  .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;
  }
  .sp_logo-access {
    width: 100%;
    max-width: 162px;
    margin-left: 8px;
    font-size: 11px;
    font-weight: bold;
  }
  .sp_logo-access span {
    color: #bf1414;
  }
  .sp_mainimage-image {
    line-height: 0;
  }
  .sp_mainimage-image img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  .maincampaign {
    margin-top: 16px;
  }
  /* 当院のコンセプト */
  .concept{
    margin: 16px auto;
  }
  .concept_ttl01{
    font-size: 20px;
    padding: 8px;
    margin-bottom: 0;
  }
  .concept_ttl01:after{
    border-width: 16px;
    bottom: -32px;
    right: 0;
  }
  .concept_img{
    padding: 24px 16px 16px;
  }
  .concept_img img{
    left: 5%;
  }
  /* お悩みの声 */
  .onayami_conts {
    padding: 12px;
  }
  .onayami_list li {
    font-size: 16px;
    padding-left: 24px;
    background-size: 17px auto;
    margin-bottom: 6px;
  }
  .onayami_text {
    margin-top: 18vw;
    margin-bottom: 10vw;
  }
  .onayami_text:before {
    width: 40vw;
    height: 13vw;
    background-size: 100% auto;
    top: -16vw;
  }
  /* ３つの特徴 */
  .feature_conts {
    padding: 40px 16px 16px;
  }
  .feture_no {
    top: -10vw;
    margin: 0 auto;
    left: 0;
    right: 0;
    text-align: center;
  }
  .feture_no img {
    width: 18vw;
    max-width: 105px;
    height: 18vw;
    max-height: 104px;
  }
  .feature_info {
    margin-top: 13vw;
    padding: 10vw 16px 16px;
  }
  .feture_text {
    font-size: 18px;
  }
  /* 当院の技術を推薦 */
  .suisen_conts {
    margin-top: 28vw;
    padding: 16px;
  }
  .suisen_info {
    padding: 16px;
  }
  .suisen_profile {
    flex-direction: column;
  }
  .suisen_img {
    text-align: center;
    margin: 0 auto 12px;
  }
  .suisen_name {
    width: 100%;
    margin-left: 0;
  }
  .suisen_ttl01 {
    font-size: 20px;
    margin-bottom: 4px;
  }
  .suisen_ttl02 {
    font-size: 16px;
  }
  .suisen_text {
    font-size: 15px;
  }
  .suisen_link {
    text-align: left;
  }
  /* 推薦の声 */
  .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;
  }
  /* ビフォーアフター */
  .ba_mainttl {
    margin-top: 32px;
  }
  .ba_conts {
    margin-top: 7vw;
  }
  .ba_conts:first-of-type {
    margin-top: 0;
  }
  .ba_ttl01 {
    font-size: 18px;
    line-height: 1.5;
    padding: 12px;
  }
  .ba_img {
    padding: 0 12px;
    margin: 12px auto;
  }
  .bg_memo {
    margin-bottom: 16px;
  }
  /* カラダの常識 */
  .genin_ttl {
    margin-bottom: 24px;
  }
  .point_img {
    margin-top: 0;
  }
  /* ビフォーアフター */
  .ba_conts-ttl01 {
    font-size: 16px;
    padding: 16px;
  }
  .ba_conts-ttl01 img {
    width: 40px;
    height: auto;
  }
  /* ９つの理由 */
  .select_conts {
    padding: 16px;
  }
  .select_ttl {
    background-position: top center;
    background-size: auto 64px;
    padding-top: 80px;
    font-size: 20px;
    padding-left: 0;
    min-height: 0;
    margin-bottom: 16px;
  }
  .select_img {
    margin-bottom: 16px;
  }
  /* お客様の声 */
  .voice_conts {
    padding: 16px;
  }
  .voice_ttl01 {
    font-size: 18px;
  }
  /* 推薦者の声 */
  .recommend_conts {
    padding: 16px;
  }
  .recommend_ttl01 {
    padding: 0;
    padding-top: 28vw;
    font-size: 18px;
    border-bottom: 2px solid #d1c69d;
    padding-bottom: 4px;
    margin-bottom: 12px;
  }
  .recommend_ttl01:before {
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 24vw;
    max-width: 126px;
    height: 27vw;
    max-height: 137px;
    background-size: contain;
  }
  .recommend_ttl01::after {
    content: none;
  }
  .recommend_img {
    float: none;
    text-align: center;
    margin: 0 auto 24px;
  }
  /* プロフィール */
  .profile_mainttl {
    z-index: 3;
    min-height: 40px;
    padding: 16px 0;
  }
  .profile_mainttl img {
    width: 52vw;
    max-width: 311px;
    position: relative;
    z-index: 3;
  }
  .profile_mainttl::before {
    width: 20vw;
    z-index: 2;
    background-size: contain;
  }
  .profile_img {
    margin: 0 auto 24px;
    float: none;
  }
  /* お問い合わせ */
  .contact_conts {
    padding: 24px 16px;
  }
  .contact_btn {
    /* margin-top: 16px; */
    margin-top: 12px;
    line-height: 0;
  }
  .contact_open {
    padding: 16px;
    flex-direction: column;
  }
  .contact_open dl dt {
    width: 4em;
  }
  .contact_access dl {
    margin-top: 8px;
    flex-direction: column;
  }
  .contact_access dl:first-of-type {
    margin-top: 0;
  }
  .contact_access dl dt {
    width: 100%;
  }
  .contact_map iframe {
    height: 80vw;
    min-height: 200px;
  }
  /* line */
  .line_btn {
    bottom: 38vw;
  }
  /* 最後に */
  .last_mainttl {
    margin-bottom: 0;
  }
  .last_ttl01 {
    font-size: 18px;
  }
  .last_message {
    padding: 16px;
    position: relative;
    z-index: 2;
  }
  .last_message::before {
    width: 37vw;
    z-index: -1;
  }
  /* pagetop */
  #pagetop {
    width: 64px;
    height: 64px;
  }
  #pagetop img {
    width: auto;
    max-width: 64px;
    height: auto;
  }
  #pagetop{
    display: none !important;
  }
  /* commoncontact */
  .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: 8vw;
    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 16px;
  }
  .common_contact-sp .common_contact-sptext {
    font-size: 1.1em;
    font-weight: bold;
  }
  .common_contact-open {
    padding: 0 2.5%;
    line-height: 1.5;
  }
  .common_contact-open dl {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 8px;
  }
  .common_contact-open dl:last-of-type {
    margin-bottom: 0;
  }
  .common_contact-open dl dt {
    width: 5em;
    margin: 0;
    background: #fff;
    font-weight: bold;
    color: #1f6fb6;
  }
  .common_contact-open dl dd {
    color: #fff;
    margin-left: 12px;
    text-align: left;
  }
  .sp_btm {
    display: block;
    position: fixed;
    bottom: -100px;
    z-index: 9998;
    left: 0;
    right: 0;
    line-height: 0;
    transition: all 0.1s linear 0s;
    background: rgba(255, 255, 255, 0.8);
  }
  .sp_btm img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  .sp_btm.on {
    bottom: 0;
  }
  .sp_btm-wrap {
    width: 95%;
    max-width: 100%;
    margin: 0 auto;
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
  }
  .sp_btm-btn {
    margin-right: 8px;
  }
  .sp_btm-btn:last-of-type {
    margin-right: 0;
  }

  .sp_btm02{
    display: block;
    position: fixed;
    bottom: 0;
    z-index: 9998;
    left: 0;
    right: 0;
    line-height: 0;
    transition: all 0.1s linear 0s;
    
  }

  .sp_btm02.on{
    bottom: 0;
  }

  .sp_btm02-wrap{
    display: flex;
    justify-content: center;
    flex-direction: row;
    
    box-sizing: border-box;
    padding: 12px;
    position: relative;
    z-index: 2;
  }

  .sp_btm02-btn-text{
    width: 90%;
    margin: 0 auto;
  }

  .sp_btm02-btn-text img,
  .sp_btm02-btn-btn img,
  .sp_btm02-pagetop img{
    width: auto;
    max-width: 100%;
    height: auto;
  }

  .sp_btm02-pagetop{
    display: flex;
    align-items: flex-end;
    margin-left: 8px;
  }

  .sp_btm02-bg{
    background: rgba(31, 112, 183, 0.75);
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 26vw;
    z-index: 1;
  }

  /* footer */
  #footer {
    margin: 16px 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_info {
    margin: 12px auto;
    padding: 12px 0;
  }
  .f_info p {
    font-size: 12px;
  }
  .f_copy {
    font-size: 11px;
    margin-bottom: 0;
  }
  /*下層ページ
  ----------------------------------------------------*/
  .ttl01 {
    padding: 10px 12px;
    font-size: 17px;
    margin-bottom: 1em;
  }
  .ttl02 {
    font-size: 16px;
    padding: 8px 12px 8px 30px;
    line-height: 1.5;
  }
  .ttl02:after {
    left: 10px;
  }
  .ttl03 {
    font-size: 18px;
    text-align: center;
  }
  .ttl03 .br {
    display: inline;
  }
  .ttl04 {
    font-size: 16px;
    border-bottom-width: 3px;
    padding-left: 8px;
  }
  .img_f-r {
    margin-left: 16px;
    margin-bottom: 4px;
  }
  .img_f-r img {
    width: 35vw;
    max-width: 150px;
  }
  .list01 li {
    background-size: 18px auto;
    padding-left: 28px;
  }
  .list02 {
    flex-direction: column;
  }
  .list02 li {
    background-size: 18px auto;
    padding-left: 28px;
    margin-right: 0;
  }
  /* 初めての方へ */
  .about_list01 {
    padding: 20px 20px 0;
  }
  .about_list01 ul.list01 {
    width: 100%;
    margin-bottom: 12px;
  }
  .about_list01 ul.list02 {
    padding-bottom: 20px;
  }
  .about_list01 .about_list01img {
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    text-align: center;
  }
  .about_list01 .about_list01img img {
    width: 72vw;
  }
  .about_list02-ttl {
    padding: 12px;
    text-align: left;
    font-size: 18px;
  }
  .about_list02 ul {
    padding: 12px 16px;
  }
  .about_list02 ul li {
    font-size: 15px;
    padding-left: 32px;
    padding-top: 6px;
    line-height: 1.4;
  }
  .about_list03 {
    padding: 12px 16px;
  }
  .about_list03 ul {
    flex-direction: column;
  }
  .about_list03 ul li {
    width: 100%;
  }
  .about_photolist ul li {
    width: calc(100% / 3 - 6px);
    margin-right: 8px;
    margin-bottom: 4px;
  }
  .about_photolist ul li:nth-of-type(3n) {
    margin-right: 0;
  }
  .faq_conts dl dt {
    padding: 12px 16px;
    font-size: 15px;
  }
  .about_message {
    padding: 16px;
    margin-top: 8px;
  }
  /* 施術料金 */
  .price_conts {
    padding: 16px;
  }
  .price_wrap {
    flex-direction: column-reverse;
  }
  .price_img {
    margin: 0 auto 16px;
  }
  .price_info p {
    font-size: 4.8vw;
  }
  .price_info p.price_info03 {
    font-size: 8vw;
  }
  .price_ttl02 {
    font-size: 28px;
    margin-bottom: 4px;
  }
  .price_text02 {
    text-align: left;
  }
  .tbl02 {
    border-color: #1f6fb6;
  }
  .tbl02 thead {
    display: none;
  }
  .tbl02 tbody tr {
    display: flex;
    flex-direction: column;
  }
  .tbl02 tbody tr th, .tbl02 tbody tr td {
    padding: 8px 8px;
    width: 100%;
    box-sizing: border-box;
    border-right: none;
    border-bottom: none;
    text-align: left;
  }
  .tbl02 tbody tr th {
    color: #1f6fb6;
    font-weight: bold;
    border-top: 1px solid #1f6fb6;
  }
  .tbl02 tbody tr td {
    padding: 4px 8px;
  }
  .flow_conts {
    padding: 12px;
  }
  .flow_conts {
    flex-direction: column;
  }
  .flow_img {
    margin: 0 auto 12px;
  }
  .flow_ttl01 {
    font-size: 16px;
  }
  /* スタッフ紹介 */
  .staff_list ul li {
    width: calc(100% / 3 - 8px);
    margin-right: 12px;
  }
  .staff_profile {
    padding: 16px;
    flex-direction: column;
  }
  .staff_profileimg {
    margin: 0 auto 12px;
  }
  .staff_profiletext {
    width: 100%;
    margin: 0 auto;
  }
  .staff_profiletext-conts {
    margin-bottom: 15px;
  }
  /* 地図・行き方 */
  .access_info {
    padding: 16px;
  }
  .access_conts {
    padding: 12px;
  }
  .access_ttl01 {
    margin-top: 24px;
    padding-left: 0;
  }
  .access_ttl01:before {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: -54px;
  }
  /* 施術について */
  .about_symptoms {
    padding: 16px;
  }
  .about_symptoms dl {
    flex-direction: column;
  }
  .about_symptoms dl dt {
    margin-right: 0;
    margin-bottom: 4px;
  }
  .about_symptoms dl dd {
    width: 100%;
  }
  .about_symptoms dl dd ul li {
    position: relative;
    padding-left: 14px;
  }
  .about_symptoms dl dd ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    background: #fddc65;
    border-radius: 100px;
  }
  .about_reason-conts {
    padding: 0 0 12px;
    margin-bottom: 12px;
  }
  .about_reason-ttl {
    font-size: 16px;
    min-height: 30px;
    padding-left: 40px;
  }
  .about_reason-ttl:after {
    background-size: 30px auto;
    width: 30px;
    height: 51px;
  }
  .about_reason-img {
    float: none;
    text-align: center;
    margin: 0 auto 12px;
  }
  /* ご予約・お問い合わせ */
  .contactconts_conts01{
    margin-bottom: 0;
  }

  .contact_ttl01{
    margin-bottom: 16px;
  }

  .contactconts_btn a{
    max-width: 95%;
    font-size: 16px;
    padding: 8px 12px 8px 48px;
    align-items: flex-start;
  }

  .contactconts_btn a .br{
    font-size: 0.9em;
  }

  .contactconts_btn a:before{
    width: 24px;
    height: 24px;
    left: 16px;
  }

  .contactconts_btn-tel-message{
    padding: 24px 16px 0;
  }

  .contactconts_btn-tel-message-wrap{
    flex-direction: column;
  }

  .contact_ttl02{
    font-size: 18px;
    padding-left: 32px;
    min-height: 24px;
  }

  .contact_ttl02:before{
    width: 24px;
    height: 24px;
    top: 0px;
  }

  .contactconts_btn-tel-message-text01{
    font-size: 16px;
  }

  .contactconts_btn-tel-message-text02{
    font-size: 14px;
  }

  .contactconts_btn-tel-message-img{
    display: none;
    text-align: center;
    margin: 0 auto;
  }

  .contact_form-tbl,
  .contact_form-tbl tbody {
    display: block;
  }
  .contact_form-tbl tr,
  .contact_form-tbl tbody tr {
    display: flex;
    flex-direction: column;
  }
  .contact_form-tbl tr th,
  .contact_form-tbl tr td,
  .contact_form-tbl tbody tr th,
  .contact_form-tbl tbody tr td {
    width: 100%;
    padding: 10px 16px;
  }
  .contact_form-tbl tr td span,
  .contact_form-tbl tbody tr td span {
    font-size: 14px;
  }
  /* 初めての方へ */
  .first_strong01 {
    text-align: left;
    font-size: 16px;
  }
  .flow_text {
    padding-left: 0;
  }
  .flow_ttl {
    margin-left: 20px;
    font-size: 16px;
  }
  .flow_ttl:before {
    background-size: 50px auto;
    width: 50px;
    height: 50px;
    left: -20px;
    align-items: flex-start;
  }
  .contact_memo {
    padding: 12px;
  }
  .contact_memo .ttl {
    font-size: 16px;
  }
  .contact_memo .ttl span {
    padding: 0 8px;
  }
  .contact_memo ul {
    flex-direction: column;
  }
  .contact_memo ul li {
    margin-bottom: 1em;
    font-size: 14px;
  }
  .contact_memo ul li:last-of-type {
    margin-bottom: 0;
  }
  .flow_img01 ul {
    flex-direction: column;
  }
  .flow_img01 ul li {
    margin: 0 auto;
  }
  .point_conts-ttl {
    padding-left: 64px;
    font-size: 16px;
    margin-left: 0;
    margin-right: 0;
    min-height: 54px;
    margin-bottom: 14px;
  }
  .point_conts-ttl:before {
    background-size: 50px auto;
    width: 50px;
    height: 50px;
    left: 0;
    top: 0;
    align-items: flex-start;
  }
  .first-okotowari dl dt {
    font-size: 15px;
  }
  /* よくある質問 */
  .faq_list {
    padding: 12px;
  }
  .faq_ttl02 {
    font-size: 16px;
    background-size: 16px auto;
    padding-left: 24px;
    margin-bottom: 8px;
  }
  .faqconts {
    padding-top: 24px;
  }
  /* 症状別紹介 */
  .second_conts01 {
    margin-top: 32px;
  }
  .case_list01 {
    padding: 16px;
  }
  .case_list01 ul li {
    background-position-y: 3px;
    background-size: 20px auto;
    font-size: 15px;
    padding-left: 24px;
  }
  .case_list02 ul {
    padding: 12px;
  }
  .case_list02 ul li {
    background-size: 18px auto;
    background-position-y: 3px;
    font-size: 14px;
    padding-left: 22px;
    margin-right: 16px;
  }
  .case_conts01 {
    padding: 12px;
  }
  .ttl06 {
    font-size: 15px;
  }
  .ttl06:before {
    top: 7px;
  }
  /* 産後の骨盤矯正 */
  .sango_conts {
    padding: 12px;
  }
  .sango_ttl {
    flex-direction: column-reverse;
  }
  .sango_ttlmain,
  .sango_point {
    font-size: 16px;
  }
  .sango_textconts {
    flex-direction: column;
  }
  .sango_img {
    margin: 0 auto 12px;
    text-align: center;
  }
  .sango_img img {
    width: 37vw;
    max-width: 191px;
    height: auto;
  }
  .sango_text {
    width: 100%;
    margin: 0 auto;
    font-size: 15px;
  }
  .sango_tbl01 {
    display: none;
  }
  .sango_tbl02 {
    display: block;
    margin-top: 24px;
  }
  .sango_tbl02 tbody {
    display: block;
  }
  .sango_tbl02 tbody tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
  }
  .sango_tbl02 tbody tr th {
    padding: 4px 8px;
    font-size: 16px;
    font-weight: bold;
    box-sizing: border-box;
    background: #c6def5;
    text-align: center;
  }
  .sango_tbl02 tbody tr td {
    padding-bottom: 12px;
    border: 1px solid #c6def5;
    border-bottom: none;
    border-top: none;
    box-sizing: border-box;
    padding: 8px;
  }
  .sango_tbl02 tbody tr td:last-of-type {
    border-bottom: 1px solid #c6def5;
  }
  .sango_tbl02 tbody tr td dl {
    display: flex;
    flex-direction: column;
  }
  .sango_tbl02 tbody tr td dl dt {
    font-size: 15px;
    font-weight: bold;
    border-bottom: 2px solid #c6def5;
    margin-bottom: 6px;
    position: relative;
    padding-left: 20px;
    padding-bottom: 2px;
  }
  .sango_tbl02 tbody tr td dl dt:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: #c6def5;
    position: absolute;
    left: 4px;
    top: 8px;
  }
  /* 症状レポート一覧 */
  .report_conts {
    flex-direction: column;
  }
  .report_text {
    width: 100%;
  }
  .report_text-mainttl {
    font-size: 15px;
  }
  .report_text-mainttl:before {
    content: "";
    border: 10px solid transparent;
    border-bottom: 10px solid #1f6fb6;
    position: absolute;
    width: 0;
    height: 0;
    top: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .report_text-mainttl:after {
    content: "";
    border: 12px solid transparent;
    border-bottom: 12px solid #fff;
    width: 0;
    height: 0;
    position: absolute;
    top: -21px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .report_text-subttl {
    font-size: 15px;
    text-align: center;
  }
  .report_text-btn {
    margin: 0 auto;
  }
  .report_text-btn a {
    display: block;
    width: 100%;
    max-width: 200px;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 15px 40px 15px 15px;
  }
  .report_text-btn a:after {
    top: 16px;
  }
  /* 症状レポート　詳細ページ */
  .report_singlettl {
    font-size: 17px;
    padding: 14px;
    margin-bottom: 32px;
  }
  .report_singlettl:after {
    border: 15px solid transparent;
    border-top: 15px solid #1f6fb6;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 0;
    height: 0;
    bottom: -29px;
  }
  .report_singleinfo {
    flex-direction: column;
  }
  .report_img {
    margin: 0 auto 20px;
  }
  .report_infolist dl dt, .report_infolist dl dd {
    font-size: 15px;
  }
  /* 下層ページ */
  .second_mainttl {
    font-size: 18px;
    margin-bottom: 12px;
  }
  #second main {
    margin-top: 0;
  }
  #second main .conts01:first-of-type {
    margin-top: 0;
  }
  #breadcrumb {
    display: none;
  }
  .second_ttl01 {
    font-size: 16px;
    padding: 8px 12px;
  }
  /* ご予約・お問い合わせ */
  .contact_tbl {
    display: block;
  }
  .contact_tbl tbody {
    display: block;
  }
  .contact_tbl tbody tr {
    display: flex;
    flex-direction: column;
  }
  .contact_tbl tbody tr th, .contact_tbl tbody tr td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
  }
  .contact_tbl tbody tr .wpcf7-text {
    font-size: 17px;
    box-sizing: border-box;
  }
  .contact_tbl tbody tr textarea {
    font-size: 17px;
    box-sizing: border-box;
  }
  /* ダイエットカウンセリング */
  .diet_ba-img-arrow{
    width: 30%;
    padding: 0 10px;
  }
  .diet_ba{
    margin-top: 40px;
  }

  .diet_ba-mainttl{
    margin-top: 20px;
    font-size: 20px;
  }

  .diet_ba-subttl{
    width: auto;
    max-width: 240px;

    font-size: 16px;
    padding: 8px 12px;
  }

  .diet_ba-subttl:after{
    border-width: 12px;
    bottom: -24px;
  }

  .diet_baconts{
    padding: 8px;
  }

  .diet_baconts-wrap{
    padding: 8px;
  }

  .diet_case_list01{
    margin-bottom: 40px;
  }

  .diet_case_list01:before,
  .diet_case_list01:after{
    border-width:24px 40px 40px;
  }

  .diet_case_list01:before{
    bottom: -64px;
  }

  .diet_case_list01:after{
    bottom: -72px;
  }

  .diet_case-text01 p{
    font-size: 20px;
  }

  .diet_bavoice-wrap{
    font-size: 16px;
  }

  .diet_bavoice-wrap:before,
  .diet_bavoice-wrap:after{
    width: 1px;
  }

  .diet_bavoice-wrap:before{
    transform: rotate(-25deg);
  }

  .diet_bavoice-wrap:after{
    transform: rotate(25deg);
  }

  .diet_bavoiceconts{
    margin-top: 16px;
    padding: 8px;
  }

  .diet_bavoiceconts_wrap{
    padding: 8px;
  }

  .diet_bavoiceconts_ttl{
    font-size: 16px;
    padding: 8px 4px;
    margin-bottom: 12px;
  }

  .diet_bavoiceconts_ttl span{
    font-size: 15px;
    margin-top: 0;
  }

  .diet_baconts_img{
    margin-bottom: 12px;
  }

  .diet_bavoiceconts_ans{
    flex-direction: column;
  }

  .diet_bavoiceconts_ans dl{
    width: 100%;
    margin: 0 auto 16px;
    border-right: none;
    padding: 0;
  }

  .diet_bavoiceconts_ans dl:last-of-type{
    margin-bottom: 0;
  }

  .diet_bavoiceconts_ans dl dt{
    font-size: 16px;
    border-bottom: 1px dashed #ccc;
    margin-bottom: 4px;
  }

  .diet_bavoiceconts_ans dl dd p {
    display: flex;
    align-items: baseline;
  }

  .diet_bavoiceconts_ans dl dd p br{
    display: none;
  }

  .diet_after-total{
    padding: 0 4px;
    font-size: 0.9em;
    margin-left: 6px;
  }

  .diet_reasonconts{
    margin-bottom: 32px;
  }

  .diet_reason-ttl{
    font-size: 20px;
    padding-left: 48px;
    margin-bottom: 8px;
  }

  .diet_reason-ttl:before{
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .diet_btnlink{
    flex-direction: column;
  }

  .diet_btnlinkconts{
    width: 100%;
    margin: 0 auto 12px;
  }

  .diet_btnlinkconts a{
    padding: 8px;
  }

  .diet_btnlinkconts a:after{
    right: 2px;
    top: calc(50% - 6px);
  }
}
