@charset "UTF-8";
/* 幅1100px以下からcss適応 */
@media only screen and (max-width: 1200px) {
  body {
    font-size: 14px;
  }
  /* ヘッダー */
  #header {
    margin-top: 128px;
    padding: 12px 0 16px;
  }
  .h_h1-t h1 {
    text-align: left;
  }
  .h_contact {
    align-items: flex-start;
  }
  .h_contact-hukidashi {
    margin-top: 8%;
  }
  .h_conts {
    margin-top: 12px;
    align-items: flex-start;
  }
  #nav {
    padding: 0;
  }
  .nav_pc {
    display: none;
  }
  .nav_sp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 120px;
    z-index: 999;
    border-top: 3px solid #d57580;
    background: #fff8f6;
  }
  .nav_sp-conts {
    width: calc(100% / 3);
    /* width: 25%; */
    text-align: center;
    border-right: 1px solid #d9cdc6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
  }
  .nav_sp-conts:last-of-type {
    border-right: none;
  }
  .nav_sp-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
  }
  .nav_sp-menutext {
    font-size: 18px;
    font-weight: bold;
    color: #d57580;
    line-height: 1.35;
  }
  .nav_sp-menutext .br{
    display: block;
  }
  /* ハンバーガーメニュー */
  .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;
    line-height: 2;
  }
  .hum_menu_nav {
    background: rgba(255, 248, 248, 0.98);
    height: 100%;
    left: 100%;
    position: fixed;
    top: 0;
    transition-duration: 0.3s;
    transition-property: left;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    width: 280px;
    color: #000;
  }
  .hum_menu_nav.clicked {
    width: 100%;
    left: 0;
    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;
    right: 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_contact {
    color: #fff;
    display: block;
    margin: 50px 20px 20px;
  }
  .hum_menu_contact a {
    margin: 0 auto;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.85em;
    padding: 2px 0;
    display: block;
    width: 100%;
    max-width: 200px;
  }
  .hum_menu_contact a.h_menu_contact {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #d57580;
    color: #fff;
    padding: 5px 12px;
  }
  .hum_menu_contact a.h_menu_line {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #95ac5c;
    color: #fff;
    padding: 5px 12px;
    margin-top: 8px;
  }
  .hum_menu_contact img {
    width: auto;
    max-width: 15px;
    height: auto;
    margin-right: 10px;
  }
  .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: #fcede9;
    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;
  }
  .hum_menu_nav-ttl01 {
    background: #81b802;
    box-sizing: border-box;
    padding: 16px 4px;
    font-size: 1.2em;
    font-weight: bold;
    color: #fff;
    text-align: left;
  }
  .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;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
  }
  /* ここまで */
  /* .hum_menu_obtn, .sp_tel, .sp_contact {
    min-height: 124px;
  } */
  .nav_sp-menuicon {
    display: flex;
    /*justify-content: center;*/
    align-items: center;
    height: 66px;
  }
  .nav_sp-menuicon 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, #ff984f 0%, #f36b09 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: 990;
    width: 100%;
  }
  /* mainimage */
  #mainimage {
    padding-top: 24px;
  }
  .mainimage_subconts {
    display: none;
  }
  .mainimage_mainconts-img img {
    width: 97%;
  }
  .mainimage_mainconts-img {
    left: 0;
  }
  .mainimage_mainconts-btn {
    left: 0;
  }
  /* common */
  #main {
    max-width: 800px;
    flex-direction: column;
  }
  #conts {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
  }
  .offer_btn {
    width: 80%;
  }
  /* top */
  .maincampaign {
    width: 95%;
  }
  .nayami_conts-text {
    width: 98.5%;
    padding: 0 23px 20px;
    box-sizing: border-box;
  }
  /* side */
  #side {
    display: none;
  }
  /* sidebtn */
  #sidebtn {
    top: 18%;
  }
}
/* 幅980px以下からcss適応 */
@media only screen and (max-width: 980px) {
  #main {
    margin-bottom: 80px;
  }
  /* footer */
  .footer_wrap {
    flex-direction: column;
    justify-content: center;
  }
  .footer_l {
    margin: 0 auto 32px;
  }
}
/* 幅800px以下からcss適応 */
@media only screen and (max-width: 800px) {
  /* header */
  .h_conts {
    justify-content: center;
  }
  .h_contact {
    display: none;
  }
  /* common */
  .conts_contact {
    padding: 32px 16px;
  }
  .contact_ttl img {
    width: 70vw;
    max-width: 526px;
  }
  .contact_open {
    flex-direction: column;
  }
  .contact_open dl {
    width: 100%;
    margin: 0 auto 12px;
  }
  .contact_open dl:last-of-type {
    margin-bottom: 0;
  }
}
/* 幅680px以下からcss適応 */
@media only screen and (max-width: 680px) {
  /* common */
  .strong03 {
    font-size: 1.1em;
  }
  /* header */
  #header {
    margin-top: 64px;
  }
  .h_wrap {
    width: 100%;
  }
  .h_h1-t {
    padding: 0 2.5%;
  }
  .h_conts {
    width: 95%;
    margin: 12px auto 0;
  }
  .h_contact-hukidashi, .h_contact-tel {
    display: none;
  }
  .h_conts {
    flex-direction: column;
  }
  .h_logo, .h_contact {
    width: 100%;
  }
  .h_logo {
    text-align: center;
    margin: 0 auto;
    line-height: 0;
  }
  .h_logo img {
    max-width: 280px;
  }
  .h_contact {
    justify-content: center;
  }
  .h_contact-access p {
    font-size: 13px;
    line-height: 1.5;
  }
  /* nav */
  .nav_sp {
    height: 80px;
  }

  .nav_sp-btn{
    height: 100%;
    box-sizing: border-box;
    /* padding: 12px 0; */

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

  .hum_menu_obtn, .sp_tel, .sp_contact {
    min-height: 0;
  }
  .nav_sp-menuicon {
    height: 32px;
  }
  .nav_sp-menuicon img {
    max-height: 32px;
  }
  .nav_sp-menuicon.nav_sp-menuicon-tel img{
    max-height: 34px;
    position: relative;
    top: -3px;
  }
  .nav_sp-menutext {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.2;
  }
  .hum_menu_obtn .nav_sp-menuicon img {
    max-height: 28px;
  }
  /* mainimage */
  #mainimage {
    padding-top: 0;
  }
  #mainimage_pc {
    display: none;
  }
  #mainimage_sp {
    display: block;
    line-height: 0;
  }
  #mainimage_sp img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  /* main */
  #main {
    margin: 24px auto 40px;
    width: 90%;
  }
  .conts01 {
    margin-top: 32px;
  }
  .sp_conts {
    display: block;
    margin-top: 0;
  }
  .conts01.pc_firstconts {
    /* margin: 30px 0 60px; */
    margin: 16px 0 32px;
  }
  .second_mainttl {
    font-size: 20px;
    padding: 12px 16px;
    margin-bottom: 16px;
  }
  .second_mainttl .en {
    font-size: 16px;
  }
  .img_f-r {
    width: 45%;
    margin-left: 16px;
    margin-bottom: 8px;
  }
  .ttl01 {
    padding: 0 4px 4px;
    font-size: 22px;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 16px;
  }
  .ttl01::before {
    width: 8px;
    height: 8px;
    top: 19px;
    left: 12px;
  }
  .ttl01 span.ttl01_wrap:before {
    transform: rotate(-35deg);
  }
  .ttl01 span.ttl01_wrap:after {
    transform: rotate(35deg);
  }
  .ttl02 {
    font-size: 20px;
    min-height: 32px;
    padding: 0 4px 4px;
  }
  .ttl02 ruby {
    font-size: 23px;
  }
  .ttl03 {
    width: calc(100% - 3em);
    margin: 0 auto 24px;
    font-size: 20px;
    text-align: center;
  }
  .ttl03 span.ttl03_wrap:before {
    transform: rotate(-20deg);
  }
  .ttl03 span.ttl03_wrap:after {
    transform: rotate(20deg);
  }
  .ttl04 {
    padding: 4px 4px 4px 12px;
  }
  .ttl05 {
    font-size: 22px;
    width: auto;
    max-width: 450px;
    margin: -35px auto 10px;
  }
  .ttl07{
    font-size: 16px;
    padding: 2px 12px 4px;
  }
  .list01 ul {
    padding: 12px;
  }
  .list01 ul li {
    background-size: 20px auto;
    background-position: left 4px;
    margin-bottom: 8px;
    padding-left: 32px;
    font-size: 15px;
  }
  .list02 ul {
    flex-direction: column;
    padding: 12px;
  }
  .list02 ul li {
    font-size: 15px;
    background-size: 24px auto;
    background-position: left 3px;
    padding-left: 32px;
    margin-bottom: 8px;
  }
  .list03 {
    padding: 12px;
  }
  .list03 ul {
    padding: 12px;
  }
  .list03 ul li {
    font-size: 15px;
    background-size: 24px auto;
    background-position: left 3px;
    padding-left: 32px;
    margin-bottom: 8px;
  }
.list04 ul li {
    font-size: 16px;
	}
.list04 ul li:after {
	background-size: contain;
	    width: 80px;
    margin-left: -40px;
	}
.list04 .ttl_num {
	display: block;
    font-size: 16px;
    width: 24px;
    height: 24px;
	min-width: 24px;
    line-height: 24px;
}
  .tbl01 tbody tr th {
    width: 7em;
  }
  .tbl01 tbody tr td {
    width: calc(100% - 7em);
  }
  .btn02 a {
    font-size: 20px;
    line-height: 1.6;
  }
  .btn02 img {
    margin-top: -7px;
    width: 8px;
    right: 5px;
  }
  .commingsoon{
    padding: 16px;
    margin-bottom: 24px;
  }
  .commingsoon p{
    font-size: 15px;
    text-align: left;
  }
  /* 鍼灸大賞 */
  .award_img{
    margin-bottom: 12px;
  }
  .award_text{
    font-size: 14px;
    padding: 16px;
  }
  /* メディア掲載 */
  .media {
    padding: 0 20px 20px;
  }
  /* このようなお悩みはありませんか？ */
  .onayami_sub_ttl {
    font-size: 15px;
  }
  .onayami_conts {
    width: 100%;
    display: block;
    /* padding: 20px; */
    padding: 12px 12px 0;
    margin-bottom: 20vw;
  }
  .onayami_conts:after{
    width: 60vw;
    height: 10vw;
    background-size: contain;
    max-width: 439px;
    max-height: 68px;
    bottom: -16vw;
    margin: 0 auto;
    left: 0;
    right: 0;
  }
  .onayami_conts .list01 ul{
    padding: 0;
    margin-bottom: 0;
  }
  .onayami_conts-img {
    text-align: center;
  }
  .onayami_conts .list01 {
    width: auto;
  }
  .onayami_conts-img img {
    width: auto;
    max-height: 140px;
    height: auto;
  }
/* 実績 */
  .resultconts {
    padding: 12px;
  }
  .result_conts-speech {
    padding: 8px;
    margin-bottom: 24px;
  }
  .result_conts-speech:after {
    border-width: 16px 24px 24px;
    bottom: -36px;
  }
  .result_conts-speech-ttl {
    font-size: 19px;
  }
  .result_conts-textarea {
    padding: 32px 12px 16px;
  }
  .result01_img01 {
    margin: 16px auto;
  }
  .result02_img01 {
    float: none;
    margin: 0 auto 12px;
    text-align: center;
  }
  .result02_memo {
    font-size: 13px;
  }
  .result02_dateconts {
    margin-top: 24px;
  }
  .result02_ttl02 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .result02_ttl03 {
    font-size: 16px;
    margin-top: 0;
  }
  .result02_dateinfo-imgconts {
    width: calc(50% - 6px);
    margin-right: 12px;
  }
  .result02_dateinfo-imgconts p {
    font-size: 13px;
  }
  .result02_dateinfo-text {
    margin-top: 16px;
    padding: 12px;
  }
  .result02_dateinfo-text p {
    font-size: 13px;
  }
  .result02_dateinfo-ttl01 {
    font-size: 15px !important;
  }
.result01_ttl02 span,
.result02_ttl01 span {
    font-size: 20px;
}
  /* ごあいさつ */
  .profile-img {
    float: none;
    text-align: center;
    margin: 0 auto 16px;
    padding: 0;
  }
  .profile-img img {
    width: auto;
    max-width: 200px;
    height: auto;
  }
  .profile-ttl01 {
    font-size: 16px;
    padding-bottom: 0;
    margin-bottom: 8px;
  }
  .profile-ttl01 ruby {
    font-size: 20px;
  }
  /* 喜びの声 */
  .voice_conts-info {
    flex-direction: column;
  }
  .voice_conts-info-img {
    margin: 0 auto 24px;
    width: 200px;
    text-align: center;
  }
  .voice_conts-info-text {
    width: 100%;
  }
  .voice_info-detail {
    font-size: 14px;
    margin: 0 auto 4px;
  }
  .voice_info-ttltext h3 {
    font-size: 16px;
  }
  .voice_conts-qa {
    /* margin-top: 16px; */
    margin-top: 12px;
    padding: 16px;
  }
  .voice_conts-qa dl dt {
    padding-left: 20px;
    line-height: 1.8;
  }
  .voice_conts-qa dl dt:before {
    width: 10px;
    height: 10px;
    top: 7px;
  }
  .voice_qa-memo {
    font-size: 13px;
    margin-top: 12px;
    border-top: 1px dashed #ddd;
    padding-top: 4px;
  }
  .voice_conts-qa-conts{
    margin-top: 8px;
    margin-bottom: 24px;
  }
  .voice_qa-openbtn{
    font-size: 14px;
    padding: 8px;
  }
  .voice_qa-openbtn:before{
    width: 12px;
    height: 2px;
    right: 8px;
    top: calc(50% - 1px);
  }
  .voice_qa-openbtn:after{
    width: 2px;
    height: 12px;
    right: 13px;
    top: calc(50% - 6px);
  }
  .voice_qa-openbtn img{
    max-width: 13px;
    position: relative;
    top: -1px;
  }
  .message_movie iframe {
    height: 60vw;
    min-height: 180px;
    max-height: 320px;
    padding: 8px;
  }
  .btn01 {
    margin-top: 16px;
  }
  .btn01 a {
    font-size: 15px;
    padding: 8px;
  }
  .btn01 a img {
    max-width: 24px;
  }
  .clinic_infolist-wrap{
    flex-direction: column;
    flex-wrap: wrap;
  }
  .clinic_infolist-sec{
    width: 100%;
    max-width: 100%;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .clinic_listconts{
    /* width: 100%;
    margin: 0 auto 20px; */
    width: calc(50% - 4px);
    margin-right: 8px;
    margin-bottom: 16px;
  }
  .clinic_listconts-ttl{
    font-size: 15px;
    line-height: 1.5;
  }
  .clinic_listconts-text{
    display: none;
  }
  /* .clinic_listconts:nth-of-type(2n){
    margin: 0 auto 20px;
  }
  .clinic_listconts:last-of-type{
    margin-bottom: 0;
  } */
  .clinic_listconts-img{
    margin-bottom: 4px;
    text-align: center;
  }
  .clinic_listconts-img img{
    max-width: 95%;
    margin: 0 auto;
  }
  .clinic_listconts-text{
    width: 100%;
    padding: 0 2.5%;
  }
  /* 連絡先 */
  .contact_clinicinfo-img02{
    margin-top: 24px;
  }
  .contact_access {
    flex-direction: column;
    padding: 0;
    margin-bottom: 1em;
  }
  .contact_conts .contact_btn {
    margin-top: -17px;
  }
  .contact_telbtn, .contact_formbtn,
  .contact_telbtn, .contact_line-btn{
    margin-bottom: 10px;
    line-height: 1;
  }
  .contact_conts .contact_btn .contact_telbtn a,
  .contact_conts .contact_btn .contact_formbtn a,
  .contact_conts .contact_btn .contact_line-btn a{
    padding: 0;
  }
  .contact_conts .contact_btn .contact_telbtn a img,
  .contact_conts .contact_btn .contact_formbtn a img,
  .contact_conts .contact_btn .contact_line-btn a img{
    margin: 0 auto;
  }
  .info_logo {
    max-width: 65%;
    margin: 0 auto;
  }
  .contact_access-rt {
    width: 100%;
    margin-top: 1em;
  }
  .contact_conts .tbl_opentime thead tr th {
    padding: 4px;
  }
  .contact_conts {
    padding: 20px;
  }
  .contact_conts .tbl_opentime thead tr th {
    font-size: 12px;
  }
  .contact_access-lf {
    margin-right: 0;
    text-align: center;
  }
  .contact_access-map iframe {
    min-height: 300px;
  }
  .contact_access-info {
    font-size: 14px;
  }
  .contact_access-lf {
    /* width: 180px; */
    width: 100%;
    max-width: 100%;
  }
  .contact_access-map{
    margin-top: 1em;
  }
  .form_tbl tbody tr th,
  .form_tbl tbody tr td{
    padding: 8px;
  }
  /* sidebtn */
  #sidebtn {
    display: none;
  }
  /* pagetop */
  #pagetop img {
    width: 48px;
    height: 48px;
  }
  .common_contact-wrap {
    width: 90%;
  }
  .common_contactconts {
    padding: 24px 0 76px;
  }
  .common_contact-btnlist {
    margin-top: 24px;
  }
  .common_contact-btnlist ul {
    display: flex;
    flex-direction: column;
  }
  .common_contact-btnlist ul li {
    width: 100%;
    margin: 0 auto 12px !important;
    text-align: center;
  }
  .common_contact-btnlist ul li:last-of-type {
    margin-bottom: 0 !important;
  }
  /* footer */
  #footer {
    width: 100%;
    margin: 0 auto;
    padding: 24px 0;
  }
  .footer_wrap {
    padding: 0;
  }
  .footer_l {
    margin-bottom: 16px;
  }
  .f_info {
    flex-direction: column;
    justify-content: center;
    margin: 16px auto;
    padding: 16px 0;
  }
  .f_info p {
    text-align: center;
  }
  .tbl_opentime thead tr th {
    font-size: 12px;
    padding: 4px;
  }
  .tbl_opentime tbody tr th, .tbl_opentime tbody tr td {
    font-size: 12px;
    padding: 4px;
  }
  .tbl_opentime tbody tr td:first-of-type {
    font-size: 10px;
  }
  .f_menu ul li a {
    font-size: 12px;
  }
  .f_memo {
    font-size: 12px;
  }
  .f_copy {
    margin-top: 16px;
    padding-bottom: 12vw;
  }
  .sp_btm .sp_btm-wrap {
    display: flex;
    justify-content: space-between;
  }
}