@charset "UTF-8";
/* 幅1270px以下からcss適応 */
@media only screen and (max-width: 1270px) {
  .h_top-c {
    margin: 0 12px;
  }
}
/* 幅1100px以下からcss適応 */
@media only screen and (max-width: 1100px) {
  /* ヘッダー */
  .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;
  }
  .h_contact-accessbtn {
    display: none;
  }
  #main {
    width: 95%;
    flex-direction: column;
  }
  #conts {
    width: 95%;
    max-width: 720px;
    margin: 0 auto;
  }
  #side {
    display: none;
  }
  .nav_pc {
    display: none;
  }
  .nav_sp {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(to bottom, #52c2ff 0%, #349ad1 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_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: 72px;
  }
  .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, #52c2ff 0%, #349ad1 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;
    margin-top: 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 */
  #pagetop {
    width: 64px;
    height: 64px;
  }
  #pagetop img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
}
/* 幅1060px以下からcss適応 */
@media only screen and (max-width: 1060px) {
  .common_contact-open dl {
    margin-left: 0;
  }
}
/* 幅1050px以下からcss適応 */
@media only screen and (max-width: 1050px) {
  #breadcrumb.case {
    width: 95%;
  }
  #case_mainimage p img {
    max-width: 95%;
  }
  .h_top-c {
    display: none;
  }
  .h_top-rt {
    width: 100%;
  }
  .h_top-lf {
    width: 100%;
    margin-right: 24px;
  }
  .common_contact {
    padding: 36px 20px;
  }
}
/* 幅900px以下からcss適応 */
@media only screen and (max-width: 900px) {
  .f_info {
    flex-wrap: wrap;
  }
  #pagetop {
    display: none;
  }
  .common_contact-lf {
    display: none;
  }
  .common_contact-rt {
    width: 100%;
    margin: 0 auto;
  }
  .nayami_list ul:first-of-type {
    height: auto;
  }
  .nayami_list ul:first-of-type li {
    margin-bottom: 20px;
  }
  .nayami_list ul:first-of-type li:nth-of-type(n+3) {
    margin-bottom: 0;
  }
  .nayami_list ul:first-of-type li {
    text-align: center;
    max-width: calc((100% / 3) - 10px);
  }
  .contact_telbtn a .rt > span:nth-of-type(2) {
    font-size: 40px;
  }
  .contact_formbtn a {
    font-size: 26px;
  }
  .contact_line-btn a .rt > span:nth-of-type(2) {
    font-size: 36px;
  }
  .info_logo img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  .contact_telbtn a .rt > span:nth-of-type(1), .contact_line-btn a .rt > span:nth-of-type(1) {
    font-size: 17px;
  }
  .select_reasontext {
    width: 100%;
  }
  .select_ttl {
    float: none;
    width: 100%;
  }
  .select_ttl span {
    font-size: 24px;
  }
  .select_reasonimg {
    float: none;
    max-width: 240px;
    margin: 0 auto 20px;
  }
}
/* 幅980px以下からcss適応 */
@media only screen and (max-width: 980px) {
  .h_h1 {
    padding: 10px 0 10px;
  }
  .h_contact-tel {
    margin: 0 10px 12px auto;
    text-align: center;
  }
  .h_contact-resereve {
    margin-left: 0;
    text-align: center;
    width: 100%;
  }
  .h_contact-btm {
    font-size: 13px;
    display: block;
  }
  .h_contact-btn {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
  }
  .h_contact-btnconts {
    justify-content: center;
  }
}
/* 幅800px以下からcss適応 */
@media only screen and (max-width: 900px) {
  .h_contact-top {
    display: flex;
    flex-direction: column;
  }
  .h_contact-tel {
    margin: 0 auto 12px;
  }
  .h_top-rt {
    max-width: 340px;
  }
  .h_contact-btm dl dt {
    min-width: 6em;
  }
}
/* 幅800px以下からcss適応 */
@media only screen and (max-width: 800px) {
  /* common */
  #main {
    padding: 24px;
    margin: 0 auto 80px;
  }
  .conts01 {
    padding: 0;
  }
}
/* 幅760px以下からcss適応 */
@media only screen and (max-width: 760px) {
  .ttl01 {
    font-size: 30px;
  }
  .onayami_list ul {
    float: none;
    width: 100%;
  }
  .onayami_img_pc {
    display: none;
  }
  .onayami_img_sp {
    display: block;
    margin-bottom: 20px;
  }
  .contact_access {
    margin-top: 1em;
    flex-direction: column;
  }
  .contact_access-lf {
    margin: 0 auto 20px;
    width: auto;
  }
  .contact_access-rt {
    width: 100%;
  }
  .symptom_onayami_list .img_f-r {
    float: none;
    text-align: center;
  }
  .symptom_onayami_list .img_f-r img {
    max-height: 220px;
  }
  .conts04.list02 + .img01 {
    padding: 0 16px;
  }
  .list_conts_ttl span {
    font-size: 16px;
  }
  .movieconts_frame iframe {
    height: 45vw;
  }
}
/* 幅680px以下からcss適応 */
@media only screen and (max-width: 680px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  #case_mainimage {
    margin: 0 0 30px;
  }
  #main {
    padding: 0;
    margin: 32px auto;
  }
  .box01 {
    border: 18px solid #f2d8dc;
    padding: 18px;
  }
  .box02 {
    padding: 18px;
  }
  /* header */

  /* 20260209 削除
  #nav {
    position: fixed;
    top: 0;
    left: 0;
    margin-top: 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: 43px;
  } */

  #nav,
  .h_top{
    display: none;
  }
  .h_sp-scrolltop{
    width: 100%;
    height: 80px;
    background: #fff;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 12px 8px;
  }
  .h_sp-logo{
    width: 100%;
    text-align: center;
    line-height: 0;
  }
  .h_sp-logo img{
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 56px;
  }

  /* 新ハンバーガー */
  html.active{
    overflow-y: hidden;
  }

  .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: #349ad1;
    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: #349ad1;
    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;
    z-index: 9999;
    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 #349ad1;
    position: absolute;
    left: 0;
    top: 4px;
  }

  .h_sp-hummenu-main-sublist-ttl{
    background: #349ad1;
    box-sizing: border-box;
    padding: 8px 8px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-align: center;
  }

  #header {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    box-shadow: none;
    /* padding-bottom: 16px; */
    border: none;
    /* padding-top: 64px; */
    padding-top: 72px;
  }
  .header_pc {
    display: none;
  }
  .header_sp {
    display: block;
  }
  .h_wrap {
    width: 100%;
  }
  .h_top {
    box-sizing: border-box;
    padding: 0 2.5%;
    width: 95%;
    margin: 0 auto;
    flex-direction: column;
  }
  .h_h1 {
    width: 100%;
    padding: 7px 2.5% 7px;
    border-bottom: 1px dotted #e5dfd8;
    margin-bottom: 16px;
    box-sizing: border-box;
  }
  #top .h_h1{
    margin-bottom: 0;
  }
  .header_sp-top {
    width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: end;
  }
  .header_sp-top img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  .header_sp-top figure {
    margin: 0 8px;
  }
  .header_sp-btm p {
    font-size: 13px;
    text-align: center;
  }
  .header_sp-logo {
    text-align: center;
    margin-bottom: 5px;
  }
  /* common */
  .ttl02 {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 18px;
  }
  .ttl02_01{
    font-size: 18px;
  }
  .ttl02_01 span{
    font-size: 14px;
    border-top: 1px solid #fff;
  }
  .ttl05 {
    font-size: 24px;
    padding: 24px;
    margin-bottom: 20px;
  }
  #conts {
    padding: 0;
  }
  .conts01 {
    margin-top: 32px;
  }
  .conts03 {
    margin: 40px 0 0;
  }
  .ttl_wrap {
    font-size: 6vw;
    line-height: 1.6;
  }
  .ttl_wrap.case {
    font-size: 4.8vw;
  }
  .ttl_wrap .slash:before, .ttl_wrap .slash:after {
    height: 100%;
    bottom: 0;
  }
  .ttl_wrap .slash:before {
    left: -1em;
    transform: rotate(-15deg);
  }
  .ttl_wrap .slash:after {
    right: -1em;
    transform: rotate(15deg);
  }
  .hum_menu_obtn, .sp_tel, .sp_contact {
    min-height: 64px;
  }
  .img_f-l {
    margin-right: 20px;
  }
  .img_f-l img, .img_f-r img {
    width: 36vw;
    max-width: 280px;
  }
  .img_f-r {
    margin-left: 16px;
  }
  .flow_listconts {
    width: calc(50% - 10px);
    margin-right: auto;
  }
  .flow_listconts:nth-of-type(3n) {
    margin-right: auto;
  }
  .flow_listconts:nth-of-type(2n) {
    margin-right: 0;
  }
  /* top */
  .mainimage_pc {
    display: none;
  }
  .feature_pc {
    display: none;
  }
  .mainimage_sp {
    display: block;
    width: 100%;
  }
  .feature_sp {
    display: block;
    background: url(../images/common/mokume01.jpg) repeat;
    padding: 30px 15px 50px;
  }
  .genin_text01 {
    margin: 40px auto 10px;
  }
  /* こんなことでお悩みではありませんか？ */
  .onayami_ttl {
    margin-bottom: 30px;
  }
  .onayami_list {
    margin: 0 0 16px;
    padding: 16px;
  }
  .onayami_list ul li {
    background-size: 20px auto;
    background-position-y: 4px;
    margin-bottom: 8px;
    padding-left: 28px;
    font-size: 15px;
  }
  .nayami_list ul {
    margin: 0;
    height: auto;
  }
  .nayami_list ul:first-of-type li {
    width: calc((100% / 2) - 10px);
    margin-bottom: 20px;
    max-width: 100%;
  }
  .nayami_list ul li:last-child, .nayami_list ul li:nth-last-child(2) {
    margin-bottom: 0;
  }
  .nayami_list ul:first-of-type li:nth-of-type(n+3) {
    margin-bottom: 20px;
  }
  .nayami_list ul:first-of-type li:nth-of-type(n+5) {
    margin-bottom: 0;
  }
  .omakase_ttl {
    margin-top: 40px;
  }
  /* 3つの特徴 */
  .feature_conts {
    margin-top: 32px;
  }
  .feature_listconts .text {
    font-size: 22px;
  }
  .feature_conts .ttl {
    font-size: 30px;
  }
  .feature_conts .ttl span {
    font-size: 40px;
  }
  .feature_conts .ttl span::before {
    height: 20px;
  }
  .feature_listconts {
    padding: 20px;
    margin-bottom: 24px;
  }
  .feature_listconts .num {
    font-size: 20px;
  }
  .feature_list {
    padding: 40px 20px 24px;
  }
  /* 医師が当院の技術を推薦！ */
  .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;
    font-size: 20px;
    text-align: center;
  }
  .suisen_ttl01 {
    font-size: 20px;
    margin-bottom: 4px;
  }
  .suisen_ttl02 {
    font-size: 16px;
  }
  .suisen_text {
    font-size: 15px;
    width: 100%;
    margin-left: 0;
  }
  .suisen_link {
    text-align: left;
  }
  /* ビフォーアフター */
  .baconts {
    margin-bottom: 24px;
  }
  .baconts_ttl {
    font-size: 20px;
    padding: 12px 16px;
    line-height: 1.4;
  }
  .baconts_detail {
    padding: 12px;
  }
  .baconts .memo {
    margin-top: 12px;
  }
  /* 選ばれる理由 */
  .reason_ttl {
    font-size: 20px;
    padding-top: 80px;
    padding-left: 0;
    min-height: 0;
  }
  .reason_ttl:before {
    width: 64px;
    height: 64px;
    background-size: cover;
    right: 0;
    margin: 0 auto;
  }
  .reason_conts-ttl {
    padding: 16px;
  }
  .reason_conts-text {
    padding: 12px;
  }
  /* 患者様の声 */
  .voice_conts {
    padding: 16px;
    margin-bottom: 24px;
  }
  .voice_conts .ttl {
    font-size: 18px;
    text-align: left;
  }
  .voice_conts .textarea {
    display: block;
  }
  .voice_conts .textarea .text {
    width: 100%;
  }
  .voice_conts .img {
    width: 100%;
    max-width: 220px;
    margin: 0 auto 24px;
  }
  .voice_btn {
    width: 90%;
    margin: 16px auto 32px;
  }
  .voice_btn p a {
    font-size: 15px;
    padding: 12px 24px;
  }
  .voice_btn p a span:after {
    border-width: 6px 6px 6px 8px;
    right: -22px;
    top: calc(50% - 7px);
  }
  /* 院長プロフィール */
  .aisatsu_img {
    float: none;
    margin: 0 auto 20px;
    text-align: center;
    width: 200px;
  }
  /* 推薦の声 */
  .recommend_hd_ttl {
    margin-bottom: 20px;
  }
  .recommend_ttl_wrap {
    margin-top: 0px;
    min-height: auto;
    margin-bottom: 20px;
  }
  .recommend_medal {
    top: -25px;
    left: -15px;
  }
  .recommend_medal img {
    width: 60%;
  }
  .recommend_ttl {
    font-size: 16px;
    padding-left: 24px;
    margin-bottom: 20px;
  }
  .recommend_img {
    float: none;
    text-align: center;
    margin: 0 auto 24px;
  }
  .recommend_detail {
    padding: 34px 20px;
  }
  .recommend_info {
    max-width: 100%;
  }
  .recommend_ttl {
    padding: 16px;
    margin-bottom: 54px;
  }
  .recommend_ttl:after {
    height: 32px;
    bottom: -32px;
    background-size: cover;
  }
  .recommend_conts {
    padding: 16px;
  }
  .recommend_comment-ttl {
    min-height: 0;
    padding-top: 28vw;
    padding-left: 0;
    font-size: 18px;
    margin-bottom: 16px;
  }
  .recommend_comment-ttl:before {
    width: 22vw;
    height: 25vw;
    background-size: cover;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0;
  }
  .recommend_textarea-info {
    float: none;
    margin: 0 auto 16px;
    width: 100%;
    max-width: 194px;
  }
  .recoomend_info-img {
    margin-bottom: 0;
  }
  .recommend_info-text {
    margin-top: 0;
  }
  /* ごあいさつ */
  .profile_hd_ttl {
    font-size: 30px;
    padding: 10px 20px;
  }
  .profile_ttl01 img {
    width: auto;
    max-width: 80%;
  }
  .profile_conts {
    margin-top: 24px;
  }
  .profile_info {
    width: 100%;
    max-width: 228px;
    float: none;
    margin: 0 auto 16px;
  }
  /* コンテンツ内 お問い合わせ */
  .contact_conts {
    box-sizing: border-box;
    padding: 20px;
  }
  .contact .conts02 {
    margin: 0;
  }
  .contact_conts_wrap {
    padding: 15px;
  }
  .contact_telbtn a .rt > span:nth-of-type(2) {
    font-size: 30px;
  }
  .contact_telbtn img {
    width: 25px;
    height: auto;
  }
  .contact_formbtn {
    line-height: 1.4;
  }
  .contact_formbtn, .contact_line-btn {
    margin: 0 auto 15px !important;
  }
  .contact_formbtn img, .contact_line-btn img {
    margin-right: 10px;
  }
  .contact_formbtn a {
    font-size: 16px;
    line-height: 1.2;
  }
  .contact_formbtn a img {
    width: 28px;
    height: auto;
  }
  .contact_line-btn a .rt > span:nth-of-type(2) {
    font-size: 20px;
  }
  .contact_line-btn a img {
    width: 38px;
    height: auto;
  }
  .contact_line-btn a .rt > span {
    font-size: 14px;
  }
  .contact_access-text01 {
    padding: 0;
  }
  .contact_access-info {
    flex-direction: column;
  }
  .contact_access-info dd {
    width: 100%;
    margin: 0 auto;
  }
  .contact_access-lf {
    text-align: center;
  }
  .contact_access-lf img {
    width: 74%;
  }
  .contact_telbtn a .rt > span:nth-of-type(1), .contact_line-btn a .rt > span:nth-of-type(1) {
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 4px;
  }
  /* 最後に */
  .last_ttl {
    font-size: 16px;
  }
  .last_message {
    padding: 16px;
  }
  .last_message p {
    font-size: 16px;
  }
  .last_hd_ttl {
    font-size: 30px;
    padding: 16px 20px 24px;
  }
  .last_hd_ttl .inner span:first-child {
    font-size: 26px;
  }
  .last_hd_ttl .inner span:nth-of-type(2) {
    font-size: 36px;
  }
  /* 下部のお問い合わせ */
  .commonconts_contact-wrap {
    padding: 24px;
  }
  .commonconts_contact-open {
    flex-direction: column;
  }
  .commonconts_contact-open dl {
    margin-left: 0;
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
  }
  .commonconts_contact-open dl:last-of-type{
    margin-bottom: 0;
  }
  .commonconts_contact-ttl01 {
    margin-bottom: 24px;
  }
  .common_contact {
    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;
    background: #349ad1;
  }
  .common_contact-sp p {
    line-height: 1.5;
    color: #fff;
  }
  .common_contact-sp p a {
    font-size: 9.5vw;
    font-weight: bold;
    color: #fff;
  }
  .common_contact-sp p a img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  .common_contact-sp .common_contact-sptel {
    margin: 0 auto 16px;
    line-height: 0;
    text-align: center;
  }
  .common_contact-sp .common_contact-sptel img {
    width: 6vw;
    max-width: 100%;
    height: auto;
    margin-right: 8px;
    position: relative;
    top: 1px;
  }
  .common_contact-sp .common_contact-sptext {
    font-size: 1.1em;
    font-weight: bold;
  }
  .common_contact-sptext {
    text-align: center;
    margin-bottom: 12px;
  }
  .common_contact-sptext img {
    width: auto;
    max-width: 90%;
    height: auto;
    margin: 0 auto;
  }
  .common_contact-open {
    margin-top: 24px;
  }
  .common_contact-open dl {
    color: #fff;
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
  }
  .common_contact-open dl dt, .common_contact-open dl dd {
    text-align: left;
  }
  .common_contact-open dl dt {
    margin-bottom: 4px;
    background: #fff;
    color: #349ad1;
    box-sizing: border-box;
    width: 6em;
    padding: 2px 0;
    text-align: center;
    font-weight: bold;
  }
  .common_contact-open dl dd {
    width: calc(100% - 6em);
    margin-left: 8px;
    padding-top: 2px;
  }
  .common_contact-open dl:last-of-type {
    margin-bottom: 0;
  }
  /* .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);
    box-sizing: border-box;
    padding: 12px 2.5%;
  }
  .sp_btm .sp_btm-wrap {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  .sp_btm .sp_btm-wrap .sp_btn {
    margin-right: 8px;
    line-height: 0;
    min-height: 0;
  }
  .sp_btm .sp_btm-wrap .sp_btn:last-of-type {
    margin-right: 0;
  }
  .sp_btm .sp_btm-wrap .sp_btn a {
    line-height: 0;
    display: block;
  }
  .sp_btm img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  .sp_btm.on {
    bottom: 0;
  } */
  .sp_btm02{
    display: block;
    position: fixed;
    bottom: 0;
    /* z-index: 9998; */
    z-index: 2;
    left: 0;
    right: 0;
    line-height: 0;
    transition: all 0.1s linear 0s;
  }

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

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

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

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

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

  #pagetop{
    display: none !important;
  }
  /* #pagetop {
    width: 64px;
    height: 64px;
  }
  #pagetop p img {
    width: auto;
    max-width: 64px;
    height: auto;
  } */
  /* footer */
  #footer {
    margin: 0 auto 32vw;
  }
  .footer_wrap {
    padding-top: 16px;
  }
  .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;
  }
  /*下層ページ
  ----------------------------------------------------*/
  #second #nav {
    position: fixed;
  }
  #second #nav:after {
    content: none;
  }
  #second #main {
    margin-top: 0;
    padding: 0;
  }
  #second .conts01:first-of-type {
    margin-top: 0;
  }
  #breadcrumb {
    display: none;
  }
  .ttl01 {
    font-size: 20px;
    padding: 8px 16px;
    margin-bottom: 32px;
  }
  .ttl03 {
    font-size: 24px;
    margin-bottom: 16px;
    line-height: 1.5;
  }
  .ttl04 {
    font-size: 17px;
    margin-bottom: 16px;
  }
  .second_ttl01 {
    font-size: 20px;
    padding: 8px 12px;
    line-height: 1.8;
    margin-bottom: 16px;
  }
  .img_f-r img {
    width: 39vw;
    max-width: 160px;
  }
  .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;
  }
  .secondconts01 {
    margin-top: 32px;
  }
  .second_textarea01 {
    margin-top: 24px;
  }
  /* 初めての方へ */
  .about_recommend {
    padding: 16px 16px 0;
  }
  .about_recommend-list {
    margin-top: 16px;
  }
  .about_recommend-list ul {
    display: flex;
    flex-direction: column;
  }
  .about_recommend-list ul li {
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    padding-left: 16px;
  }
  .about_recommend-list ul li:last-of-type {
    margin-bottom: 24px;
  }
  .about_recommend-img01 {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
  }
  .about_recommend-img01 img {
    width: 60vw;
    max-width: 240px;
  }
  .about_text01 {
    font-size: 19px;
    line-height: 1.4;
  }
  .about_text01 .br {
    display: inline;
  }
  .about_list01-ttl {
    font-size: 18px;
    padding: 12px;
    line-height: 1.5;
  }
  .about_list01-list {
    padding: 12px;
  }
  .about_list01-list ul li {
    font-size: 15px;
    padding-left: 24px;
    background-size: 15px auto;
  }
  .about_recommend-list-true ul li {
    background-size: 17px auto;
    background-position: 2px 4px;
  }
  .about_list02 {
    padding: 16px 24px 4px;
  }
  .about_list02 ul li {
    width: calc(50% - 28px);
    font-size: 15px;
    margin-right: 24px;
  }
  .about_list02 ul li::before {
    top: 8px;
  }
  .about_list02 ul li:nth-of-type(2n) {
    margin-right: 0;
  }
  .about_img01 {
    margin: 0 auto 1em;
  }
  .about_infolist01 ul li {
    width: calc(50% - 6px);
    margin-right: 12px;
  }
  .about_infolist01 ul li:nth-of-type(3n) {
    margin-right: 12px;
  }
  .about_infolist01 ul li:nth-of-type(2n) {
    margin-right: 0;
  }
  .aboutfaq_conts dl {
    margin-top: 0;
    margin-bottom: 32px;
  }
  .aboutfaq_conts dl:first-of-type {
    margin-top: 0;
  }
  .aboutfaq_conts dl dt {
    font-size: 16px;
    padding: 12px;
    margin-bottom: 8px;
  }
  .about_message {
    margin-top: 24px;
    padding: 12px;
    flex-direction: column;
  }
  .about_message .img_f-r {
    float: none;
    text-align: center;
  }
  .about_message .img_f-r img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  .ttl_wrap.about_message_hd {
    font-size: 4vw;
    line-height: 1.6;
  }
  /* 料金・施術の流れ */
  .price_campign-ttl01 {
    font-size: 5vw;
  }
  .price_campign-ttl01 span:before, .price_campign-ttl01 span:after {
    bottom: 0;
  }
  .price_campign-text01 {
    font-size: 5vw;
  }
  .price_campign-text01 span.br {
    display: inline;
  }
  .price_conts {
    padding: 16px;
  }
  .price_contsinfo {
    flex-direction: column;
  }
  .price_contsinfo-img {
    text-align: center;
    margin: 0 auto 24px;
  }
  .price_contsinfo-img img {
    width: auto;
    max-width: 200px;
    height: auto;
  }
  .price_contsinfo-text {
    width: 100%;
    margin: 0 auto;
  }
  .price_contsinfo-ttl01 {
    font-size: 18px;
  }
  .price_contsinfo-menu01 {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .price_contsinfo-price {
    display: flex;
    flex-wrap: wrap;
    line-height: 2;
    margin-bottom: 8px;
  }
  .price_contsinfo-pricedown{
    display: block;
    width: 100%;
    text-align: center;
  }
  .price_contsinfo-btn01 {
    margin-top: 16px;
  }
  .price_contsinfo-text01 .br {
    display: inline;
  }
  .price_contstextarea {
    margin-top: 24px;
  }
  .price_first {
    padding: 12px;
  }
  .price_first span {
    display: block;
  }
  .price_tbl {
    margin-top: 24px;
  }
  .price_tbl thead {
    display: none;
  }
  .price_tbl tbody {
    border: none;
  }
  .price_tbl tbody tr {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 16px;
  }
  .price_tbl tbody tr:last-of-type {
    margin-bottom: 0;
  }
  .price_tbl tbody tr th {
    width: 100%;
    display: block;
    background: #349ad1;
    color: #fff;
    text-align: left;
    padding: 8px 16px;
    margin-bottom: 8px;
  }
  .price_tbl tbody tr td {
    display: block;
    width: 100%;
    border: none;
    text-align: left;
    padding: 0;
  }
  .price_tbl tbody tr td:first-of-type::before {
    content: "料金（税込）：";
  }
  .flow_conts_inner {
    flex-direction: column;
    margin-top: 24px;
  }
  .flow_conts-img {
    width: auto;
    text-align: center;
    margin: 0 auto 0;
  }
  .flow_conts-img img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  .flow_conts-text {
    width: 100%;
    margin: 0 auto;
  }
  .flow_conts-ttl01 {
    font-size: 18px;
  }
  .flow_conts-ttl {
    font-size: 18px;
    line-height: 1.3;
    padding-left: 90px;
  }
  .flow_conts-ttl span {
    font-size: 16px;
    padding: 10px 16px;
  }
  /* スタッフ紹介 */
  .staff_conts {
    flex-direction: column;
    padding: 16px;
  }
  .staff_conts-img {
    width: auto;
    margin: 0 auto 24px;
    text-align: center;
  }
  .staff_conts-img img {
    width: auto;
    max-width: 200px;
  }
  .staff_conts-text {
    width: 100%;
    margin: 0 auto;
  }
  .staff_conts-info dl {
    margin-bottom: 12px;
  }
  .staff_infotext {
    margin-top: 24px;
  }
  /* 地図・行き方 */
  .access_info-ttl01 {
    font-size: 22px;
  }
  .access_info-detail dl {
    flex-direction: column;
    margin-bottom: 12px;
  }
  .access_info-detail dl:last-of-type {
    margin-bottom: 0;
  }
  .access_info-detail dl dt, .access_info-detail dl dd {
    width: 100%;
  }
  .access_map {
    line-height: 0;
  }
  .access_map iframe {
    min-height: 340px;
  }
  .access_info {
    padding: 16px;
  }
  .access_info-text01 dl {
    flex-direction: column;
    margin-bottom: 8px;
  }
  .access_info-text01 dl dt, .access_info-text01 dl dd {
    width: 100%;
  }
  .access_info-text01 dl:last-of-type {
    margin-bottom: 0;
  }
  .access_rootconts {
    width: 100%;
    margin: 0 auto 24px;
    padding: 12px;
  }
  .access_rootconts:last-of-type {
    margin-bottom: 0;
  }
  .access_rootconts .access_root-ttl {
    padding-left: 48px;
    min-height: 40px;
    padding-top: 0;
  }
  .access_rootconts .access_root-ttl:before {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  .access_rootconts figure {
    text-align: center;
  }
  .access_conts {
    width: 100%;
    margin: 0 auto 24px;
    padding: 16px;
  }
  .access_conts-ttl {
    padding-left: 48px;
    padding-top: 0;
    min-height: 40px;
  }
  .access_conts-ttl:before {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  /* ご予約・お問い合わせ */
  .contact_btn a{
    font-size: clamp(14px, 4.2vw, 20px);
    padding: 12px 12px 12px clamp(24px, 15vw, 48px);
  }

  .contact_btn-icon{
    left: 16px;
    margin-right: 0;
  }

  .contact_btn-icon img{
    width: clamp(24px, 7vw, 40px);
  }

  .contact_teltext-telnum {
    font-size: 16px;
  }
  .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: 8px 12px;
  }
  .contact_form-tbl tr th, .contact_form-tbl tbody tr th {
    border-right: none;
    background: none;
    color: #469bcb;
    text-align: left;
    padding: 8px 0 4px;
    border-bottom: 1px dashed #469bcb;
  }
  .contact_form-tbl tbody tr th .required {
    background: #469bcb;
    color: #fff;
  }
  .contact_form-tbl tr td, .contact_form-tbl tbody tr td {
    text-align: left;
    padding: 12px 0 12px;
    box-sizing: border-box;
  }
  .contact_form-tbl tr td input, .contact_form-tbl tr td textarea, .contact_form-tbl tbody tr td input, .contact_form-tbl tbody tr td textarea {
    font-size: 17px;
    box-sizing: border-box;
  }
  .contact_form-tbl tr td span, .contact_form-tbl tbody tr td span {
    font-size: 14px;
  }
  .form_submit {
    margin-top: 24px;
  }
  .flow_conts-text {
    margin-top: 16px;
  }
  .contact_mailconts {
    margin-top: 24px;
    padding: 12px;
  }
  .contact_mailconts a {
    word-break: break-all;
  }
  .contactconts_btn-tel-message{
    padding: 20px 12px 0;
  }
  .contactconts_btn-tel-message-wrap{
    flex-direction: column;
  }
  .contact_ttl02{
    font-size: 16px;
    padding-left: 28px;
    min-height: 24px;
    margin-bottom: 8px;
  }
  .contact_ttl02:before{
    width: 24px;
    height: 24px;
    top: 0px;
  }
  .contactconts_btn-tel-message-text01{
    font-size: 15px;
  }
  .contactconts_btn-tel-message-text02{
    font-size: 14px;
    margin-top: 4px;
  }
  .contactconts_btn-tel-message-img{
    display: none;
    text-align: center;
    margin: 0 auto;
  }
  /* よくある質問 */
  .faq_questionlist {
    padding: 16px;
  }
  .faq_question-ttl01 {
    font-size: 18px;
    background-size: 20px auto;
  }
  .faq_questionconts ul li {
    padding-left: 40px;
  }
  .faq_conts dl {
    margin-top: 24px;
  }
  .faq_conts dl dt {
    font-size: 16px;
    margin-bottom: 12px;
  }
  /* 症状別紹介 */
  .list01 {
    padding: 12px 12px 8px;
  }
  .list01 li {
    padding-left: 16px;
    margin-right: 20px;
  }
  .case .yorokobinokoe_conts01 {
    margin-bottom: 24px;
  }
  .case .yorokobinokoe_conts01 img {
    width: auto;
    max-width: 240px;
  }
  .sango_meritconts {
    padding: 20px;
  }
  .sango_meritconts .sango_meritconts-wrap {
    padding: 8px;
    flex-direction: column;
  }
  .sango_merit-img {
    width: 120px;
    margin: 0 auto 24px;
  }
  .sango_merit-img img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  .sango_merit-text {
    width: 100%;
    margin: 0 auto;
    flex-direction: column;
  }
  .sango_merit-ttl {
    padding-bottom: 4px;
    flex-direction: column-reverse;
  }
  .sango_merit-ttl-point {
    margin-bottom: 8px;
    font-size: 18px;
  }
  .sango_merit-ttl-text {
    font-size: 18px;
  }
  .sango_merit-textarea {
    width: 100%;
    margin: 0 auto;
  }
  /*症例レポート*/
  .column_single h3 {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 1em;
  }

  .column_single h4 {
    font-size: 17px;
    margin-bottom: 1em;
  }

  .column_single p img,
  .alignleft,
  .alignright{
    float: none;
    display: block;
    margin: 0 auto;
  }

  /* .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 #349ad1;
    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: 12px auto 0;
  }
  .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 #349ad1;
    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;
  } */
}