@charset "UTF-8";
/* 幅1000px以下からcss適応 */
@media only screen and (max-width: 1000px) {
  /* ヘッダー */
  .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_sp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, #ff984f 0%, #f36b09 100%);
  }
  .nav_sp-conts {
    width: calc(100% / 3);
    text-align: center;
    border-right: 1px solid #fff;
  }
  .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%;
  }
  /* ここまで */
  .sp_tel p,
  .sp_contact p {
    line-height: 0;
  }
  .hum_menu_obtn p,
  .sp_tel a,
  .sp_contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-height: 94px;
    max-height: 94px;
    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, #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;
    width: 100%;
  }
  #nav.on .hum_menu_obtn p,
  #nav.on .sp_tel a,
  #nav.on .sp_contact a {
    min-height: 70px;
    max-height: 70px;
  }
  #nav.on .hum_menu_obtn p img,
  #nav.on .sp_tel a img,
  #nav.on .sp_contact a img {
    max-height: 45px;
  }
  /* common */
  #conts {
    width: 95%;
    max-width: 730px;
    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;
  }
}

/* 幅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 16px;
  }
  .maincampaign_text {
    font-size: 3.5vw;
    top: 18vw;
  }
  /* top */
  .flow_step ul li {
    width: calc(50% - 4vw);
    margin-right: 8vw;
  }
  .flow_step ul li:after {
    right: -8vw;
  }
  .flow_step ul li:nth-child(2n) {
    margin-right: 0;
  }
  .offer_btn {
    width: 85%;
  }
  .ttl01 {
    width: calc(100% - 32px);
    margin-left: 16px;
  }
}

/* 幅660px以下からcss適応 */
@media only screen and (max-width: 660px) {
  /* header */
  #nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
  }
  #nav .hum_menu_obtn p,
  #nav .sp_tel a,
  #nav .sp_contact a {
    min-height: 55px;
    max-height: 55px;
  }
  #nav .hum_menu_obtn p img,
  #nav .sp_tel a img,
  #nav .sp_contact a img {
    max-height: 40px;
  }
  #header {
    width: 95%;
    padding: 0;
    margin: 0 auto;
    background: #fff;
  }
  .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;
  }
	
	.pc-only {
		display: none;
	}
	
  /* common */
  #conts {
    padding: 16px 0 32px;
  }
  .conts01 {
    margin-top: 16px;
  }
  .ttl02 {
    margin-bottom: 1em;
  }
  .br {
    display: inline;
  }
  .contact_btn {
    display: block;
  }
  /* top */
  /* sp用メインイメージ */
  .sp_mainimage {
    display: block;
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }
  .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;
  }
  /* covd-19 */
  .covd-19{
    padding: 14px;
    box-sizing: border-box;
  }
  .covd-19_ttl01{
    font-size: 17px;
  }
  .covd-19 figure{
    margin: 16px auto;
  }

  .covd-19 p{
    font-size: 15px;
  }
  /* 資格アピール */
  .top_proofconts{
    padding: 12px;
  }
  .proof_ttlconts{
    padding: 6px 8px;
  }
  .proof_ttl{
    font-size: 18px;
  }
  .proof_ttl img{
    max-width: 18px;
    margin-right: 8px;
  }
  .proof_ttl span{
    top: 1px;
  }
  .proof_list{
    margin-top: 16px;
  }
  .proof_listconts{
    width: calc(50% - 6px);
    margin-right: 12px;
    margin-bottom: 16px;
  }

  .proof_listconts:nth-of-type(3n){
    margin-right: 12px;
  }

  .proof_listconts:nth-of-type(2n){
    margin-right: 0;
  }

  /* 推薦の声 */
  .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-text {
    width: 100%;
  }
  .recommend_voice-img {
    margin: 0 auto 16px;
    text-align: center;
  }
  /* こんなことでお悩みではありませんか？ */
  .nayami_conts-text {
    width: 97.9%;
    padding: 0 2.95vw 20px;
  }
  /* 院長プロフィール */
  .profile_conts-img01 {
    width: 150px;
  }
  .profile_conts-img01 img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  /* オファー */
  .offer_btn {
    bottom: 4vw;
  }
  /* お客様の声 */
  .voice_conts-ttl01 {
    font-size: 18px;
    padding: 16px;
  }
  .voice_conts-movie iframe {
    min-height: 200px;
  }
  .voice_conts-text {
    padding: 16px;
  }
  .voice_ba-img-wrap{
    align-items: flex-start;
  }
  .voice_ba-arrow{
    margin: 0 4px;
  }
  .voice_ba-arrow{
    margin-top: 11vw;
  }
  .voice_ba-text01{
    font-size: 13px;
  }
  .voice_text-img01 {
    float: none;
    margin: 0 auto 12px;
    text-align: center;
    box-shadow: none;
    line-height: 0;
  }
  .voice_text-img01 .voice_img01-photo {
    box-shadow: none;
    line-height: 0;
  }
  .voice_text-img01:after {
    content: none;
  }
  .voice_btn {
    margin-top: 16px;
  }
  .voice_btn a {
    padding: 16px;
    font-size: 5.5vw;
  }
  .voice_btn a img {
    width: 40px;
    height: auto;
  }
  /* メリット */
  .merit_conts {
    padding: 0;
  }
  .merit_conts-ttl {
    font-size: 16px;
    min-height: 30px;
    padding-left: 40px;
  }
  .merit_conts-ttl:after {
    background-size: 30px auto;
    width: 30px;
    height: 51px;
  }
  .merit_img {
    float: none;
    text-align: center;
    margin: 0 auto 12px;
  }
  /* ビフォーアフター */
  .ba_conts-ttl01 {
    font-size: 16px;
    padding: 16px;
  }
  .ba_conts-ttl01 img {
    width: 40px;
    height: auto;
  }
  .ba_conts-tac01{
    text-align: left;
  }
  /* 施術の流れ */
  .flow_step ul li {
    width: 100%;
    margin: 0 auto 32px !important;
  }
  .flow_step ul li:after {
    width: 50px;
    max-width: 50px;
    height: 50px;
    transform: rotate(90deg);
    top: calc(100% - 10px);
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
  }
  .flow_step-ttl {
    font-size: 18px;
    padding-left: 0;
    min-height: 82px;
  }
  .flow_step-ttl img {
    width: 56px;
    height: auto;
  }
  .flow_caution-illust {
    width: 50px;
    margin-right: 12px;
  }
  .flow_caution-illust img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  .flow_caution-text {
    width: calc(100% - 62px);
  }
  .flow_caution-text p {
    font-size: 15px;
  }
  /* 他院との違い */
  .select_conts-ttl {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .select_conts-ttl:before {
    top: -8px;
  }
  .select_hikaku {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .select_hikaku-tain {
    margin: 0 auto 50px;
    max-width: 100%;
    padding: 16px;
  }
  .select_hikaku-tain:after {
    width: 30px;
    height: 50px;
    background-size: 30px auto;
    transform: rotate(90deg);
    top: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
  }
  .select_hikaku-touin {
    max-width: 100%;
    margin: 0 auto;
  }
	
	/*動画用
----------------------------------------------------*/
	  .conts-movie iframe {
    min-height: 240px;
  }
	
  /* サポート */
  .support_tel-ttl01 {
    font-size: 6vw;
  }
  /* contactconts */
  .contact_conts {
    padding: 16px;
  }
  .contact_btn-mail p a {
    padding: 16px;
    font-size: 3.7vw;
  }
  .contact_btn-mail p a img {
    width: 30px;
    height: auto;
    margin-right: 8px;
  }
  .contact_open-tbl01 {
    display: table;
    font-size: 11px;
    padding: 4px;
    border-collapse: collapse;
    border-width: 1px;
  }
  .contact_open-tbl01 tbody {
    display: table-cell;
  }
  .contact_open-tbl01 tbody tr {
    display: table-row;
  }
  .contact_open-tbl01 tbody tr th,
  .contact_open-tbl01 tbody tr td {
    display: table-cell;
  }
  .contact_access-info {
    flex-direction: column;
  }
  .contact_access-info dd {
    width: 100%;
    margin: 0 auto;
  }
  /* commoncontact */
  .common_contact {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffdb59+38,f36b09+100 */
    background: linear-gradient(to bottom, #ffdb59 0%, #f36b09 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    line-height: 1.5;
  }
  .common_contact-pc {
    display: none;
  }
  .common_contact-sp {
    display: block;
    width: 100%;
    padding: 36px 2.5% 24px;
    box-sizing: border-box;
  }
  .common_contact-sp p {
    line-height: 1.5;
    color: #fff;
  }
  .common_contact-sp p a {
    font-size: 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 8px;
  }
  .common_contact-sp .common_contact-sptext {
    font-size: 1.1em;
    font-weight: bold;
  }
  .common_contact-open {
    padding: 0 2.5%;
  }
  .sp_btm {
    display: block;
    position: fixed;
    bottom: -100px;
    z-index: 9998;
    left: 0;
    right: 0;
    line-height: 0;
    transition: all 0.1s linear 0s;
  }
  .sp_btm img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  .sp_btm.on {
    bottom: 0;
  }
  /* 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 {
    margin: 0 16px 1em;
    width: calc(100% - 32px);
    padding: 10px 12px;
    font-size: 20px;
    border-width: 10px;
  }
  .ttl02 {
    font-size: 18px;
    padding: 8px 12px 8px 30px;
    line-height: 1.5;
  }
  .ttl02:after {
    left: 10px;
  }
  .img_f-r img {
    max-width: 120px;
  }
  .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;
  }
  #breadcrumb {
    padding: 0 16px;
    margin-bottom: 12px;
  }
  /* 施術料金 */
  /* 施術について */
  .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;
  }
  /* ご予約・お問い合わせ */
  .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;
    top: -8px;
    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 !important;
  }
  .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: 14px;
  }
  .faq_list-ttl01 {
    font-size: 15px;
  }
  .faq_list-ttl02 {
    font-size: 17px;
  }
  .faq-a dt {
    font-size: 16px;
    padding-left: 26px;
  }
  .faq-a dt:before {
    font-size: 18px;
    top: -2px;
  }
  /* リンク集 */
  .link_list02 {
    text-align: center;
  }
  .link_list02 ul li {
    width: calc(50% - 4px);
    margin-right: 8px;
    margin-bottom: 8px;
  }
  .link_list02 ul li:nth-of-type(2n) {
    margin-right: 0;
  }
  /* 症状紹介ページ共通 */
  .case_intro-text01{
    font-size: 1.3em;
  }
  .case_intro-img01{
    margin-top: 16px;
  }
  /* ヘルニア */
  .herunia_sejyutsu{
    flex-direction: column;
  }
  .herunia_sejyutsu-conts{
    width: 100%;
    margin: 0 auto 24px;
  }
  .herunia_sejyutsu-conts:last-of-type{
    margin-bottom: 0;
  }
  /* 症状コラム */
  .report_single h3{
    font-size: 16px;
  }

  .report_single h4{
    font-size: 15px;
  }

  .report_single img.alignleft{
    float: left;
    margin-right: 1em;
    max-width: 50%;
  }
  
  .report_single img.aligncenter{
    text-align: center;
    margin: 0 auto;
  }
  
  .report_single img.alignright{
    float: right;
    margin-left: 1em;
    max-width: 50%;
  }
}
