@charset "UTF-8";
html {
  font-size: 62.5%; 
}
html:focus {
    outline: none; 
}
body {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.6;
  color: #333; 
  background: #fff;
}
html, body {
  margin: 0;
  padding: 0;
}
a{
  transition: 0.3s ease-in-out;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;   
}
@media print, screen and (min-width: 768px) {
    .container {
      width: 750px;
      transition: ease-in .1s;
      box-sizing: border-box;
	} 
}
@media print, screen and (min-width: 992px) {
    .container {
      width: 970px;
      transition: ease-in .1s;
      box-sizing: border-box;
	} 
}
@media print, screen and (min-width: 1200px) {
    .container {
      width: 1170px;
      transition: ease-in .1s;
      box-sizing: border-box;
	} 
}

#header{
	width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    position: fixed;
    box-sizing:border-box;
    z-index: 2;
    background-color: #fff;
}
.headerlogo {
    margin-top: 20px;
    padding-left: 0;
    padding-bottom: 13px;
    /*
    flex-basis: 425px;
    width: 425px;
    */
}
.headerlogo p{
    font-size: 17px;
    font-weight: 400;
    line-height: 1;
    display: inline-block;
    margin: 0;
}
.headerlogo p span{
    font-size: 10px;
}
.headerlogo img {
    width: 186px;
}
.contact_area {
    display: none; /*flex*/
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
    flex-basis:  calc( 100% - 500px);
    width: calc( 100% - 500px);    
}
.contact_area .tell{
    display: none;
    margin: 0;
}
.contact_area .tell span{
    display: block; 
    font-size: 16px;
    line-height: 1;
}
.contact_area .tell a{
    padding: 0 14px 0 20px;
    background: url("../images/tel.svg") left/contain no-repeat;
    text-decoration: none;
    color: #111;
    font-size: 18px;  
}
.contact_area .line {
    display: none;
    padding: 10px 37px 10px 50px;
    background: url("../images/line.svg") no-repeat;
    background-size: 37px;
    background-position: left 2px center;
    text-decoration: none;
    color: #111;
    font-size: 16px;
}
.contact_area .mail{
    width: 135px;
    height: 80px;
    background: #111 url("../images/mail.svg") no-repeat;
    background-size: 24px;
    background-position: 20px center;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 45px;
    font-size: 16px;
}
.contact_area .mail:hover {
    opacity: .8;
}
@media print, screen and (min-width: 768px) {
    .headerlogo {
        padding-left: 25px;
    }
    .headerlogo p{
        font-size: 20px;
        margin-left: 20px;
    }
    .headerlogo p span{
        font-size: 14px;
        
    }
    .headerlogo img {
        width: 200px;
    }
    .contact_area {
        display: flex;
    }
}
@media print, screen and (min-width: 1005px) {
    .headerlogo .logo2,
    .contact_area .line {
        display: block;
    }
}
@media print, screen and (min-width: 1200px) {
    .contact_area .tell {
        display: block;
    }
}

/* page_topbtn */ 
#page_top {
    background: #333333;
    height: 50px;
    width: 100%;
    position: relative;
    border: 1px solid #333;
    transition: .3s ease-in;
    box-sizing: border-box;
}
#page_top::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(315deg);
    transform: translateX(-50%) rotate(315deg);
    width: 16px;
    height: 16px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transition: .3s ease-in;
}
#page_top:hover, #page_top:focus { 
    background: transparent; 
}

#page_top:hover::before, #page_top:focus::before { 
    border-top: 2px solid #333;
    border-right: 2px solid #333;
}
@media print, screen and (max-width: 768px) {
    #page_top {
    }
}
/* main_image */  
.main_image {
    width: 100%;
    padding: 158px 0 300px;
    background: url("../images/kyoto_main.jpg") no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}
.main_image::before {
    
    position: absolute;
    top: 0;
    left: 0;
    background:  rgba(0, 0, 0, .7);
    width: 100%;
    height: 100%;
    
}
.main_text {
    margin: 0 0 -151px;
    text-align: center;
    position: relative;
}
.main_text p {
    color: #fff;
    font-size: 32px;
    
}
.point_img img {
    max-width: 420px;
    width: 100%;
    height: auto;
}
.top_btn {
    position: absolute;
    bottom: 40px;
    right: 35px;
}
.top_btn a img {
    width: 140px;
}
@media print, screen and (max-width: 768px) {
    .main_image {
        
    }
    .main_text {
        margin: 0 0 -95px;
    }
    .main_text img {
        width: 100%;
    }
    .main_text p {
        font-size: 18px;
        line-height: 33px;
        margin-top: 0;
        padding-top: 8px;
    }
}
/* ----------------------------------- */
/* titleのスタイル **/ 
/* ----------------------------------- */
.title-h2 {
    font-size: 28px;
    font-weight: 500;
    color: #111;
    margin-top: 0;
}
.content-title-h2 {
    text-align: center;
    margin: 0;
}
.title-h3 {
    font-size: 24px;
    font-weight: 500;
    color: #111;
}
.title-h3 span {
    font-size: 14px;
    font-weight: 500;
    color: #AA2323;
}
@media print, screen and (min-width: 768px) {
    .title-h2 {
        font-size: 28px;
    }
    .title-h3 {
        font-size: 24px;
    }
    .title-h3 span {
        font-size: 14px;
    }
}
/* ----------------------------------- */
/* カラム */
/* ----------------------------------- */
.column1Wrap {
  margin-bottom: 30px; }

.column2Wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px; }
  .column2Wrap .columnBox {
    flex-basis: 100%;
    margin-bottom: 20px; }

.column3Wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 15px; }
  .column3Wrap .columnBox {
    flex-basis: 100%;
    width: 100%;
    margin-bottom: 50px; }
    .column3Wrap .columnBox img {
      width: 100%; }
    .column3Wrap .columnBox p:last-child {
      margin-bottom: 0; }

.column4Wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 15px; }
    .column4Wrap .columnBox {
      flex-basis: 48%;
      width: 48%;
    margin-bottom: 20px;} 
    .column4Wrap .columnBox img {
      width: 100%; }
    .column4Wrap .columnBox p:last-child {
      margin-bottom: 0; }

.columnBox {
  overflow: hidden; }
  .columnBox img {
    align-self: baseline;
    max-width: 100%; }
  .columnBox p:last-of-type {
    margin-bottom: 0; }

@media print, screen and (min-width: 640px) {
  .column2Wrap .columnBox {
    flex-basis: 48%;
    width: 48%; }
  .column2Wrap .column2Wrap .columnBox {
    flex-basis: 45%; }

  .column3Wrap .column_box {
    flex-basis: 48%;
    width: 48%; 
    margin-bottom: 20px; }

  .column4Wrap {
    position: relative; }
    .column4Wrap .columnBox {
      flex-basis: 48%;
      width: 48%; } }
@media print, screen and (min-width: 1140px) {
  .column3Wrap:after {
    content: "";
    width: 32%; }
  .column3Wrap .columnBox {
    flex-basis: 32%;
    width: 32%; }

  .column4Wrap {
    position: relative; }
    .column4Wrap:before {
      content: "";
      display: block;
      width: 23%;
      order: 1; }
    .column4Wrap:after {
      content: "";
      width: 23%;
      display: block; }
    .column4Wrap .columnBox {
      flex-basis: 23%;
      width: 23%; } }
/* ----------------------------------- */
/* table */
/* ----------------------------------- */
 table { 
     margin: 0 0 30px; 
     width: 100%; 
     border-collapse: collapse; 
     border: 1px solid #E8E8E8; }
 table caption { 
     font-size: 18px; 
     font-weight: bold; 
     text-align: left; 
     margin: 0; }
 table tr th, table tr td { 
     display: block; 
     padding: 12px 23px 8px; 
     width: auto;
     text-align: left;
     line-height: 1.4; }
 table tr th { 
     color: #111; 
     font-weight: bold; 
     vertical-align: top; 
     background-color: #F5F5F5; }
table.type2 {
    border: none;
    margin: 20px 0 30px;
}
table.type2 tr th {
    background-color: transparent;
    border-bottom: 1px solid #71692B;
    max-width: 220px;
    text-align: left;
}
table.type2 tr td {
    border-bottom: 1px solid #EEEFEE;
}
table.type3 td input[type="text"] {
    width: 98%;
}
table.type3 td textarea {
    max-width: 500px;
    width: 100%;
}
@media print, screen and (min-width: 768px) { 
    table tr {
        border-bottom: 1px solid #E8E8E8;
    }
   table tr th, table tr td { 
       display: table-cell;
       width: 50%;
       padding: 12px 0 8px; }
   table tr th { 
       background-color: #F5F5F5; 
       text-align: center;
       width: auto; }
   table tr td { 
       padding-left: 23px;
       border-left: none; }
    table.type2 tr th {
        width: 220px;
        padding-right: 20px;
        text-align: right;
    }
    table.type2 tr td {
        width: calc( 100% - 220px);
    }
    table.type3 tr th {
        width: 220px;
        padding-right: 20px;
        padding-left: 20px;
        text-align: left;
    }
    table.type3 tr td {
        padding-right: 23px;
        width: calc( 100% - 220px);
    }
}

/* メインビジュアル下お知らせ */
.news {
    background: #f2f2f2;
    text-align: center;
    padding: 60px 0;
}
.news p.ttl {
    font-size: 18px;
}
.news p.txt,
.news p.day {
    font-size: 16px;
}
.news p.day span {
    border-bottom: 1px solid #d8b362;
}

/* top-content1 */ 
.top-content1 {
    background: #111111;
    text-align: center;
    padding: 76px 0;
}
.top-content1 h2 {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}
.top-content1 h2 span {
    color: #D8B362;
    display: inline-block;
    padding-top: 10px;
}
@media print, screen and (min-width: 768px) {
    .top-content1 h2 {
        font-size: 28px;
    }
}
/* top-content2 */ 
.content-title-h2 {
    background: #EFEFEF;
    padding: 44px 15px;
    
}
.top-content2 {
    max-width: 1370px;
    margin-right: auto;
    margin-left: auto;
}
.top-content2 .textWrap {
    position: relative;
    
}
.top-content2 .textWrap h2 {
    padding-left: 15px;
    padding-right: 15px;
}
.top-content2 .textWrap .textbox {
    padding: 45px 15px 120px;
    background: rgba(255, 255, 255, .8);
}
.top-content2 .textWrap img {
    width: 100%;
    height: auto;
}
.top-content2 .textWrap-1 {
    padding-top: 55px;
}

@media print, screen and (min-width: 768px) {
    
}
@media print, screen and (min-width: 970px) {
    .content-title-h2 {
        padding: 61px 15px;

    }
    .top-content2 .textWrap h2 {
        padding-left: 0;
        padding-right: 0;
    }
    .top-content2 .textWrap .textbox {
        padding: 44px 60px 100px 0;
        max-width: 720px;
        width: 100%;
    }
    .top-content2 .textWrap-1 {
        padding-left: 74px;
        padding-top: 80px;
    }
    .top-content2 .textWrap-1 img {
        width: 720px;
        height: 420px;
        position: absolute;
        top: 0;
        right: 0;
        z-index: -1;

    }
    .top-content2 .textWrap-3 {
        padding-left: 74px;
        padding-top: 80px;
    }
    .top-content2 .textWrap-3 img {
        width: 720px;
        height: 420px;
        position: absolute;
        top: 0;
        right: 0;
        z-index: -1;

    }
    .top-content2 .textWrap-2 {
        padding-top: 80px;
    }
    .top-content2 .textWrap-2 h2{
        text-align: right;
        padding-right: 74px;
    }
    .top-content2 .textWrap-2 .textbox {
        margin: 0 0 0 auto;
         padding-left: 74px;
    }
    .top-content2 .textWrap-2 img {
        width: 720px;
        height: 420px;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;

    }
}
/* top-content3 */
.top-content3 {
    background: #F5F5F5;
    padding: 57px 0 30px;
}
.top-content3 .column3Wrap .columnBox h4 {
    font-size: 18px;
    font-weight: 500;
    color: #111;
}
.top-content3 .column3Wrap .columnBox h4 span {
    font-size: 16px;
    color: #AA2323;
}
@media print, screen and (min-width: 768px) {
    .top-content3 {
        background: #F5F5F5;
        padding: 57px 0 100px;
    }
    .top-content3 .column3Wrap .columnBox {
        flex-basis: 32%;
        width: 32%;
        margin-bottom: 20px;
    }
}
/* top-content4 */
.top-content4 {
    padding: 55px 0 60px;
}
.top-content4 .titlewrap {
    margin: 0 auto;
    text-align: center;
}
.top-content4 .column4Wrap .columnBox {
    background: #111111;
    border-radius: 5px;
}
.top-content4 .column4Wrap .columnBox .imgbox {
    padding: 17px 0 16px;
}
.top-content4 .column4Wrap .columnBox .imgbox img{
    display: block;
    margin: 0 auto;
}
.top-content4 .column4Wrap .columnBox .imgbox p {
    color: #fff;
    text-align: center;
    font-size: 13px;
}
.faga-box {
    padding: 33px 15px 50px;
    background: #EFEFEF url("../images/icon5.svg") no-repeat;
    background-size: 58px;
    background-position: left 25px top 33px;
}
.faga-box h4 {
    margin-top: 0 ;
    margin-bottom: 17px;
    margin-left: 90px;
    padding-bottom: 7px;
    font-size: 18px;
    position: relative;
}
.faga-box h4::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #707070;
}
@media print, screen and (min-width: 768px) {
    .top-content4 {
        padding: 92px 0 60px;
    }
    .top-content4 .titlewrap {
        margin: 0 auto 40px;
    }
    .top-content4 .column4Wrap .columnBox .imgbox {
        padding: 23px 0 19px;
    }
    .top-content4 .column4Wrap .columnBox .imgbox p {
        font-size: 18px;
    }
    .faga-box {
        padding: 33px 60px 33px 160px;
        background: #EFEFEF url("../images/icon5.svg") no-repeat;
        background-size: 58px;
        background-position: left 57px center;
    }
    .faga-box h4 {
        margin-left: 0;
        background: none;
    }
}
/* top-content5 */
.top-content5 {
    text-align: center;
    padding-top: 120px;
}
.top-content5 .r_txt{
	color: #AA2323;
	font-size: 14px;
}
/* top-content6 */
.top-content6 {
    padding-top: 40px;
    text-align: center;
}
/* top-content7 */
.top-content7 {
    padding-top: 70px;
}
.top-content7 .column3Wrap .columnBox {
    flex-basis: 32%;
    width: 32%; }
@media print, screen and (min-width: 768px) {
    .top-content5 {
        padding-top: 115px;
    }
    .top-content6 {
        padding-top: 50px;
    }
}
/* 症例 */
.content_case {
    padding: 75px 0 60px;
    background-color: #EFEFEF;
}
@media print, screen and (min-width: 768px) {
    .content_case {
        padding: 75px 0 100px;
    }
}
.content_case h2 {
    border-bottom: 1px solid #111;
}
.caseinner {
    background-color: #fff;
    padding: 10px 20px 50px;
    margin-bottom: 20px;
}
.case_h3 {
    background-color: #111;
    padding-left: 10px;
    color: #fff;
    font-size: 18px;
    padding: .7em;
    font-weight: 500;
}
.case_column2wrap {
    display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    padding-bottom: 20px;
    
}
.case_columnBox {
    width: 48%;
}
.title_h4 {
    border-bottom: 2px solid #707070;
    padding-bottom: 5px;
    color: #111;
    font-size: 18px;
}
.img_box {
    text-align: center;
}
.img_box img {
    max-width: 400px;
    width: 100%;
    margin-bottom: 30px;
}
.case_text {
    padding-bottom: 15px;
    color: #323333;
}

/* contactArea */
/*            */
.contactArea {
    padding: 115px 0 100px;
    text-align: center;
    background: #F5F5F5;
}
.contactArea .textArea h2 {
    color: #fff;
    padding: 45px 0 20.5px;;
    margin: 0;
    background: url("../images/title_contact.svg") no-repeat;
    background-size: 454px;
    background-position: top 17px center;
}
.contactArea .line_tel {
    margin-bottom: 10px;
}
.contactArea .line_tel .tell {
    text-decoration: none;
    font-size: 32px;
    padding-left: 35px;
    background: url("../images/tel.svg") no-repeat;
    background-position: left;
    background-size: 28px;
    color: #111;
}
.contactArea .line-p {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.contactArea .line-p span{
    font-size: 16px;
    display: inline-block;
    margin-left: 15px;
}
@media print, screen and (max-width: 768px) {
    
}


.footer {
    padding: 150px 0 180px;
    text-align: center;
    background: #111;
}
.footer img {
    padding-bottom: 70px;
}
.footer p {
    color: #fff;
    font-size: 12px;
}
@media print, screen and (max-width: 768px) {
    .footer {
    padding: 150px 0 150px;
    
    }
}


#fixedBtnSpArea {
    display: none;
}
@media print, screen and (max-width: 767px) {
    #fixedBtnSpArea {
        display: block;
        width: 100%;
        opacity: 0;
        position: fixed;
        bottom: -50px;
        transition: .6s;
        
        z-index: 32;
    }
    #fixedBtnSpArea.fixedsp {
        opacity: 1;
        transition: .6s;
        bottom: 0;
    }
    #fixedBtnSpArea #fixedBtnSp ul {
        margin: 0 0 0 0;
        padding: 0;
        height: 60px;
        width: 100%;
        overflow: hidden;
        display: flex;
    }
    #fixedBtnSpArea #fixedBtnSp ul li {
        list-style: none;
        flex-basis: 100%;
    }
    #fixedBtnSpArea #fixedBtnSp ul li a img {
        display: inline-block;
        padding-bottom: 2px;
    }
    #fixedBtnSpArea #fixedBtnSp ul li:first-child {
        background-color: #111;
    }
    #fixedBtnSpArea #fixedBtnSp ul li:nth-child(2) {
        background-color: #2dad48;
    }
    #fixedBtnSpArea #fixedBtnSp ul li:last-child {
        background-color: #c50000;
    }
    #fixedBtnSpArea #fixedBtnSp ul li a:hover, #fixedBtnSpArea #fixedBtnSp ul li a:focus {
    background-color: #444;
    color: #fff;
}
    #fixedBtnSpArea #fixedBtnSp ul li a {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    color: #fff;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0 6px;
    font-size: 14px;
    text-decoration: none;
    background-repeat: no-repeat;
    background-size: auto 20px;
    background-position: center 10px;
    
}
}

/* ------------------------------------------ /
/ 表示非表示 /
/ ------------------------------------------ */
.pc{
    display: none;
}
@media (min-width: 768px) {
.pc{
    display: block;
}
}
.sp{
    display: block;
}
@media (min-width: 768px) {
.sp{
    display: none;
}
}

    
    
/* ----------------------------------- */
/* ボタン */
/* ----------------------------------- */
.btnWrap { 
    margin: 40px 0; 
}
.btn { 
    clear: both; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    width: 100%; 
    height: 60px; 
    margin: 20px auto 20px; 
    font-size: 18px; 
    line-height: 1.5; 
    font-weight: 400; 
    -ms-touch-action: manipulation; 
    touch-action: manipulation; 
    text-decoration: none; 
    transition: .3s ease-in; 
    user-select: none; 
    position: relative; 
    border: 1px solid #AA2323; 
    color: #fff; 
    background: #AA2323; 
    max-width: 345px; 
    cursor: pointer; 
    -webkit-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none;
    border-radius: 8px;
}
.btn:hover, .btn:focus { 
    text-decoration: none; 
    color: #AA2323 !important; 
    background: transparent; 
    border-color: #AA2323 !important; 
}

.btn.arrow:hover:after, .btn.arrow:focus:after { 
    color: #AA2323; 
}

/* ------------------------------------------ /
/ アニメーション /
/ ------------------------------------------ */
.copyimganime{

                  animation-duration: 3s; /* アニメーションの時間 */
                  animation-delay: 1s; /*アニメーション開始時間 */
                  animation-iteration-count: 1; /* アニメーションの繰り返し回数 */
            }

/* ------------------------------------------ */
/* Bnr
-----------------------------------------*/
.Bnr{
  position: relative;
    display: none;
}
@media print, screen and (min-width: 768px) {
    .Bnr{
        display: block;
    }

    .Bnr .Bnr__img{
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 88;
        width: 100%;
        height: 80px;
        background: #111;
    }
    .Bnr__img__inner {
        display: flex;
        align-items: center;
        gap: 10px;
        max-width: 1300px;
        height: 100%;
        margin: 0 auto;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
    .Bnr__img__inner .name {
        color: #fff;
        font-size: 18px;
        line-height: 1;
        margin: 0 auto 0 10px;
    }
    .Bnr__img__inner .name span {
        font-size: 11px;
    }
    .Bnr__img__inner .tell span{
        display: block;
        height: 1lh;
        margin-top: 10px;
        color: #fff;
        font-size: 18px;
        line-height: 1;
    }
    .Bnr__img__inner .tell a{
        display: block;
        text-decoration: none;
        font-size: 18px;
        padding-left: 18px;
        background: url("../images/tel_w.svg") no-repeat;
        background-position: left;
        background-size: 16px;
        color: #fff;
    }
    .Bnr__img__inner .axess-btn {
        display: none;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        color: #111111;
        background: #fff;
        height: 40px;
        width: 160px;
        font-size: 14px;
        font-weight: 500;
    }
    .Bnr__img__inner .axess-btn[href="#kyoto-axes"] {
        color: #742D2D;
    }
    .Bnr__img__inner .axess-btn[href="#kyoto-sta-axes"] {
        color: #853D7B;
    }
    .Bnr__img__inner .axess-btn:hover {
        opacity: .8;
    }
    .Bnr .Bnr__img p.close{
        position: absolute;
        right: 3px;
        top:0;
        margin: 0;
    }
    .Bnr .Bnr__img p.close a{
        display: block;
        width: 60px;
        height: 24px;
        text-decoration: none;
        color: #fff;
        background: #333333;
    }
    .Bnr .Bnr__img p.close a span{
        display: block;
        color: #fff;
        font-size: 12px;
        position: relative;
        padding: 3px 7px;
    }
    .Bnr .Bnr__img p.close a span::before {
        content: "×";
        position: absolute;
        top: 3px;
        right: 5px;
        font-size: 12px;
        color: #fff;
    }
    .Bnr .Bnr__img p.close a i{
        font-size: 12px;
        z-index: 888;
        color: #fff;
    }
}
@media print, screen and (min-width: 1200px) {
    .Bnr__img__inner .name {
        font-size: 22px;
    }
    .Bnr__img__inner .name span {
        font-size: 14px;
    }
    .Bnr__img__inner .tell {
        margin-left: 10px;
    }
    .Bnr__img__inner .tell a{
        font-size: 22px;
        padding-left: 23px;
        background-size: 18px;
    }
    .Bnr__img__inner .axess-btn {
        display: flex;
    }
}
/*   */
h1 {
   margin: 0;
   display: inline-block; 
}
/* ------------------------------------------ */
/* フォーム
-----------------------------------------*/
.m_t {
    color: #fff;
    background: #AA2323;
    font-size: 11px;
    padding: 2px 3px 3px;
    margin-left: 6px;
    border-radius: 4px;
}
input[type=text] {
    font-size: 20px;
}
/* ラジオボタン01 */
input[type=radio] {
    display: none;
}
.radio01 {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 30px;
    position: relative;
    width: auto;
    font-size: 20px;
}
.radio01::before {
    background: #fff;
    border: 1px solid #231815;
    border-radius: 50%;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}
.radio01::after {
    background: blue;
    border-radius: 50%;
    content: '';
    display: block;
    height: 10px;
    left: 9px;
    margin-top: -4px;
    opacity: 0;
    position: absolute;
    top: 50%;
    width: 10px;
}
input[type=radio]:checked + .radio01::after {
    opacity: 1;
}
.c_btn {
    text-align: center;
}
.c_btn input {
    max-width: 100px;
    width: 100%;
    padding: 13px;
    font-size: 14px;
}
@media (min-width: 640px) {
.c_btn input {
    max-width: 200px;
    width: 100%;
    padding: 15px;
    font-size: 18px;
}
}

.text-td textarea {
    font-size: 20px;
}

.text-normal {
    font-size: 15px;
    line-height: 23px;
    font-weight: normal;
}

/* ------------------------------------------ */
/* 2025.12 京都駅前院統合 */
/* ------------------------------------------ */
.clinicTab,
.clinicTab *,
.clinicInfo,
.clinicInfo *{
    box-sizing: border-box;
}
.clinicTab{
    border-top: 10px solid #efefef;
    padding: 17px 0 50px;
    background-color: white;
}
.clinicTab p{
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: .05em;
    text-align: center;
    line-height: 1.5;
}
.clinicTab ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.clinicTab ul li a img{
    width: 164px;
    height: auto;
    filter: drop-shadow(0 1px 2px rgb(0 0 0 /16%));
}
@media screen and (min-width: 768px) {
    .clinicTab{
        padding: 40px 0 78px;
    }
    .clinicTab p{
        margin-bottom: 40px;
        font-size: 30px;
        letter-spacing: .2em;
    }
    .clinicTab p br{
        display: none;
    }
    .clinicTab ul{
        gap: 20px;
    }
    .clinicTab ul li a img{
        width: 500px;
    }
}

.clinicInfo{
    margin-top: 30px;
    padding: 100px 15px 90px;
    background-color: #efefef;
}
.clinicInfo h2{
    margin-bottom: 50px;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: .2em;
    text-align: center;
}
.clinicInfo-con{
    margin: 0 auto;
    padding: 73px 12px 55px;
    background-color: white;
}
.clinicInfo-con + .clinicInfo-con{
    margin-top: 70px;
}
.clinicInfo h3{
    margin: 0 0 13px;
    color: #742D2D;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}
.clinicInfo :where(#kyoto-sta) h3{
    color: #853D7B;
}
.clinicInfo h3 span{
    display: inline-block;
}
.clinicInfo table{
    margin: 0;
    border: none;
}
.clinicInfo table th,
.clinicInfo table td{
    display: table-cell;
    vertical-align: middle;
}
.clinicInfo table th{
    width: 80px;
    border-color: #742D2D;
    border-width: 3px;
    border-top-style: solid;
    padding: 5px 3px;
    background: none;
    font-size: 12px;
}
.clinicInfo :where(#kyoto-sta) table th{
    border-color: #742D2D;
}
.clinicInfo table tr:last-child th{
    border-bottom-style: solid;
}
.clinicInfo table td{
    position: relative;
    width: auto;
    height: 2lh;
    padding: 5px 9px 5px 19px;
    font-size: 14px;
}
.clinicInfo table td::before{
    content: '';
    display: block;
    position: absolute;
    inset: 0 0 auto 10px;
    height: 1px;
    background-color: #848484;
}
.clinicInfo table tr:last-child td:after{
    content: '';
    display: block;
    position: absolute;
    inset: auto 0 -1px 10px;
    height: 1px;
    background-color: #848484;
}
.clinicInfo table .credit img{
    width: 200px;
    height: auto;
    vertical-align: bottom;
}
.clinicInfo h4{
    margin: 12px 0 12px 3px;
    font-size: 12px;
}
.clinicInfo-access{
    position: relative;
    padding-bottom: 30px;
}
.clinicInfo-access::before{
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #742D2D;
}
:where(#kyoto-sta) .clinicInfo-access::before{
    background-color: #853D7B;
}
.clinicInfo-access::after{
    content: '';
    display: block;
    position: absolute;
    inset: auto 0 1px 90px;
    height: 1px;
    background-color: #848484;
}
.clinicInfo-map{
    height: 200px;   
}
.clinicInfo-train,
.clinicInfo-car{
    padding-left: 53px;
    line-height: 1.5;
}
.clinicInfo-train{
    margin: 6px 0 0;
    background: url("../images/icon-train.webp") 7px 10px/19px no-repeat;
}
.clinicInfo-car{
    margin: 14px 0 0;
    background: url("../images/icon-car.webp") 7px 14px/22px no-repeat;
}
.clinicInfo-train dt,
.clinicInfo-car dt{
    font-size: 12px;
    letter-spacing: .2em;
}
.clinicInfo-train dd,
.clinicInfo-car dd{
    margin: 0;
    font-size: 14px;
    letter-spacing: .1em;
}
.clinicInfo-pic{
    display: grid;
    grid-template-columns: repeat(3, 32%);
    justify-content: space-between;
    margin: 14px 0 0;
    padding: 0 0 30px;
    list-style: none;
}
.clinicInfo-pic li img{
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 4px;
}
.clinicInfo-pic li span{
    display: block;
    font-size: 10px;
    text-align: center;
}
.clinicInfo-name{
    margin: 30px 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .1em;
    text-align: center;
}
.clinicInfo-name span{
    display: inline-block;
}
.clinicInfo-contact{
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 360px;
    margin: 0 auto;
}
.clinicInfo-contact a img{
    vertical-align: bottom;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(2px 2px 1px rgb(0 0 0/16%));
}
.clinicInfo-contact .tel{
    position: relative;
}
.clinicInfo-contact .tel::before,
.clinicInfo-contact .tel::after{
    content: '';
    display: block;
    position: absolute;
    top: 10px;
    width: 19px;
    height: 1px;
    background-color: #742D2D;
}
:where(#kyoto-sta) .clinicInfo-contact .tel::before,
:where(#kyoto-sta) .clinicInfo-contact .tel::after{
    background-color: #853D7B;
}
.clinicInfo-contact .tel::before{
    left: 0;
    transform: rotate(50deg);
}
.clinicInfo-contact .tel::after{
    right: 0;
    transform: rotate(-50deg);
}
.clinicInfo-contact .tel p{
    margin: 0 0 7px;
    color: #742D2D;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .1em;
    text-align: center;
}
:where(#kyoto-sta) .clinicInfo-contact .tel p{
    color: #853D7B;
}
.clinicInfo-contact .tel p::before{
    content: 'バナーをタップして';
}
.clinicInfo-contact .tel a{
    display: block;
    aspect-ratio: 335/90;
    border-radius: 10px;
    padding-top: 18px;
    box-shadow: 2px 2px 1px rgb(0 0 0 /16%);
    background: url(../images/cta-tel-sp.webp) center/contain no-repeat;
    color: white;
    text-decoration: none;
}
.clinicInfo-contact .tel a .num{
    display: block;
    margin-left: 55px;
    font-size: 35px;
    font-weight: 600;
    letter-spacing: .02em;
    line-height: 1;
}
.clinicInfo-contact .tel a .txt{
    display: block;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-align: center;
}
:where(#kyoto-sta) .clinicInfo-contact .tel a{
    background-image: url(../images/cta-tel-ekimae-sp.webp);
}
@media screen and (min-width: 768px) {
    .clinicInfo{
        margin-top: 200px;
        padding: 100px 0 200px;
    }
    .clinicInfo h2{
        margin-bottom: 60px;
        font-size: 36px;
    }
    .clinicInfo-con{
        max-width: 1200px;
        padding: 70px 50px 130px;
    }
    .clinicInfo-con + .clinicInfo-con{
        margin-top: 80px;
    }
    .clinicInfo h3{
        margin: 0 0 20px;
        font-size: 28px;
        text-align: left;
    }
    .clinicInfo table tr{
        border: none;
    }
    .clinicInfo table th{
        width: 180px;
        padding: 20px 29px;
        font-size: 18px;
        text-align: left;
    }
    .clinicInfo table td{
        height: auto;
        padding: 20px 29px 20px 59px;
        font-size: 18px;
    }
    .clinicInfo table td::before,
    .clinicInfo table tr:last-child td:after{
        left: 30px;
    }
    .clinicInfo table .credit img{
        width: 234px;
    }
    .clinicInfo h4{
        float: left;
        width: 180px;
        margin: 0;
        padding: 20px 29px;
        font-size: 18px;
    }
    .clinicInfo-access{
        margin: 20px 0 0 210px;
    }
    .clinicInfo-access::before{
        left: -210px;
        width: 180px;
    }
    .clinicInfo-access::after{
        left: 0;
    }
    .clinicInfo-map{
        max-width: 800px;
        height: 500px;
        margin: 0 10px;
    }
    .clinicInfo-train,
    .clinicInfo-car{
        padding-left: 63px;
    }
    .clinicInfo-train{
        margin-top: 32px;
        background-position: 0 12px;
        background-size: 26px;
    }
    .clinicInfo-car{
        margin-top: 20px;
        background-position: 0 18px;
        background-size: 31px;
    }
    .clinicInfo-train dt,
    .clinicInfo-car dt{
        font-size: 16px;
    }
    .clinicInfo-train dd,
    .clinicInfo-car dd{
        font-size: 18px;
    }
    .clinicInfo-pic{
        max-width: 800px;
        margin: 20px 10px 0;
    }
    .clinicInfo-pic li img{
        margin-bottom: 14px;
    }
    .clinicInfo-pic li span{
        font-size: 14px;
        letter-spacing: .2em;
        text-align: left;
    }
    .clinicInfo-name{
        clear: both;
        margin: 50px 0 26px;
        font-size: 22px;
    }
    .clinicInfo-contact{
        flex-flow: row wrap;
        align-items: center;
        justify-content: center;
        gap: 50px 10px;
        max-width: none;
    }
    .clinicInfo-contact .tel{
        margin-right: 33px;
        border-top: 1px solid #707070;
        border-bottom: 1px solid #707070;
    }
    .clinicInfo-contact .tel::before,
    .clinicInfo-contact .tel::after{
        content: none;
    }
    .clinicInfo-contact .tel p{
        margin: 6px 0 10px;
        color: #000;
        font-size: 16px;
        letter-spacing: .5em;
    }
    .clinicInfo-contact .tel p::before{
        content: none;
    }
    .clinicInfo-contact .tel a{
        cursor: default;
        aspect-ratio: auto;
        border-radius: 0;
        padding-top: 0;
        box-shadow: none;
        background: url(../images/cta-tel.webp) 12px 7px/34px no-repeat;
        color: #742D2D;
    }
    :where(#kyoto-sta) .clinicInfo-contact .tel a{
        background-image: url(../images/cta-tel-ekimae.webp);
        color: #853D7B;
    }
    .clinicInfo-contact .tel a .num{
        margin-left: 53px;
        font-size: 43px;
        letter-spacing: .04em;
    }
    .clinicInfo-contact .tel a .txt{
        margin: 10px 0 5px;
        font-size: 14px;
        letter-spacing: .1em;
        color: #000;
    }
}

/* ------------------------------------------ */
/* スマホ下部ボタン（共通styleから移植） */
/* ------------------------------------------ */
#fixedBtnSpArea2{
  z-index: 9999;
  position: fixed;
  inset: auto 0 0;
  background-color: #111;
}
@media screen and (min-width: 768px) {
    #fixedBtnSpArea2{
        display: none;
    }
}
#fixedBtnSpArea2 #fixedBtnSp ul {
  margin: 0;
  padding: 0;
  height: 74px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}
#fixedBtnSpArea2 #fixedBtnSp ul li {
  list-style: none;
  flex-basis: 50%;
  max-width: 50%;
  width: 100%;
}
#fixedBtnSpArea2 #fixedBtnSp ul li.umeda .clinicName {
  background-color: #111;
}
#fixedBtnSpArea2 #fixedBtnSp ul li.umeda ul {
  background-color: #333;
}
#fixedBtnSpArea2 #fixedBtnSp ul li.namba .clinicName {
  background-color: #71692B;
}
#fixedBtnSpArea2 #fixedBtnSp ul li.namba ul {
  background-color: #A99C7D;
}
#fixedBtnSpArea2 #fixedBtnSp ul li .clinicName {
  font-size: 12px;
  color: #ffffff;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#fixedBtnSpArea2 #fixedBtnSp ul li ul {
  display: flex;
  align-items: center;
  height: 50px;
}
#fixedBtnSpArea2 #fixedBtnSp ul li ul li {
  flex-basis: 33.333333%;
  max-width: 33.333333%;
  width: 100%;
  height: 100%;
}
#fixedBtnSpArea2 #fixedBtnSp ul li ul li a {
  display: block;
  width: 100%;
  height: 100%;
}
#fixedBtnSpArea2 #fixedBtnSp ul li ul li.contact img, #fixedBtnSpArea2 #fixedBtnSp ul li ul li.line img {
  width: 17px;
}
#fixedBtnSpArea2 #fixedBtnSp ul li ul li.tel img {
  width: 16px;
}
#fixedBtnSpArea2 #fixedBtnSp ul li ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  text-decoration: none;
}
#fixedBtnSpArea2 #fixedBtnSp ul li ul li a:hover, #fixedBtnSpArea2 #fixedBtnSp ul li ul li a:focus {
  opacity: 0.8;
}
#fixedBtnSpArea2 #fixedBtnSp ul li ul li a:hover img, #fixedBtnSpArea2 #fixedBtnSp ul li ul li a:focus img {
  opacity: 1;
}
#fixedBtnSpArea2 #fixedBtnSp ul li ul li + li {
  position: relative;
}
#fixedBtnSpArea2 #fixedBtnSp ul li ul li + li:after {
  content: "";
  width: 1px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -7px;
  background-color: #fff;
}
#fixedBtnSpArea2 #fixedBtnSp .fixedBtnSpHub {
  padding: 12px 0 17px;
  background: #232323;
}
#fixedBtnSpArea2 #fixedBtnSp .fixedBtnSpHub .ttl {
  margin-bottom: 7px;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
}
#fixedBtnSpArea2 #fixedBtnSp .fixedBtnSpHub .ttl:after {
  content: "";
  display: block;
  width: 250px;
  height: 1px;
  margin: 2px auto 0;
  background: linear-gradient(90deg, #111111, #BEBEBE, #111111);
}
#fixedBtnSpArea2 #fixedBtnSp .fixedBtnSpHub .list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, min(42.7%, 200px));
  justify-content: center;
  gap: 5px;
}
#fixedBtnSpArea2 #fixedBtnSp .fixedBtnSpHub .list button {
  position: relative;
  border: 1px solid;
  border-image-slice: 1;
  padding: 7px 8px 7px 0;
  background-color: #232323;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-align: center;
  box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.2);
}
#fixedBtnSpArea2 #fixedBtnSp .fixedBtnSpHub .list button:after {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  right: 18px;
  width: 7px;
  height: 7px;
  border-width: 1px;
  border-style: none none solid solid;
  transform: rotate(-45deg);
}
#fixedBtnSpArea2 #fixedBtnSp .fixedBtnSpHub .list button.kyoto_sta {
  border-image-source: linear-gradient(120deg, #C787BE, #A44791 60%);
  color: #C787BE;
}
#fixedBtnSpArea2 #fixedBtnSp .fixedBtnSpHub .list button.kyoto {
  border-image-source: linear-gradient(120deg, #F6B2B2, #A84848 60%);
  color: #F6B1B1;
}

#fixedSpDetail {
  position: fixed;
  z-index: 10000;
  inset: auto 0 0;
  background-color: #111;
  padding: 12px 0 10px;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}
#fixedSpDetail.fixed {
  transform: translateY(0);
}
#fixedSpDetail .close {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border: none;
  background: url(../../images/common/close.png) right 5px top 5px/24px no-repeat;
}
#fixedSpDetail .close span {
  display: none;
}
#fixedSpDetail .fixedSpDetailInner {
  display: none;
}
#fixedSpDetail .fixedSpDetailInner.shown {
  display: block;
}
#fixedSpDetail .fixedSpDetailInner .clinicName {
  font-size: 14px;
  letter-spacing: 0.5em;
  line-height: 1.2;
  text-align: center;
}
#fixedSpDetail .fixedSpDetailInner .clinicName span {
  font-size: 22px;
}
#fixedSpDetail .fixedSpDetailInner .clinicName:after {
  content: "";
  display: block;
  width: 236px;
  height: 1px;
  margin: 2px auto 0;
}
#fixedSpDetail .fixedSpDetailInner ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, min(27.2%, 200px));
  justify-content: center;
  gap: 15px;
  margin: 9px 0 0;
  padding: 0;
}
#fixedSpDetail .fixedSpDetailInner a {
  display: block;
  padding: 3px;
  text-decoration: none;
}
#fixedSpDetail .fixedSpDetailInner a span {
  display: block;
  border-radius: 5px;
  padding: 36px 0 3px;
  background-color: #232323;
  background-position: 50% 5px;
  background-repeat: no-repeat;
  box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
}
#fixedSpDetail .fixedSpDetailInner a.contact span {
  background-image: url(../../images/common/circle_mail.svg);
  background-size: 27px;
}
#fixedSpDetail .fixedSpDetailInner a.line span {
  background-image: url(../../images/common/circle_line.svg);
  background-size: 28px;
}
#fixedSpDetail .fixedSpDetailInner a.tel span {
  background-image: url(../../images/common/circle_tel.svg);
  background-size: 27px;
}
#fixedSpDetail .fixedSpDetailInner.kyoto_sta .clinicName {
  color: #C787BE;
}
#fixedSpDetail .fixedSpDetailInner.kyoto_sta .clinicName:after {
  background: linear-gradient(90deg, #111111, #C787BE 25%, #A44791 50%, #111111);
}
#fixedSpDetail .fixedSpDetailInner.kyoto_sta a {
  background: linear-gradient(50deg, #C787BE, #A44791 60%);
}
#fixedSpDetail .fixedSpDetailInner.kyoto .clinicName {
  color: #F6B1B1;
}
#fixedSpDetail .fixedSpDetailInner.kyoto .clinicName:after {
  background: linear-gradient(90deg, #111111, #F6B1B1 25%, #B35757 50%, #111111);
}
#fixedSpDetail .fixedSpDetailInner.kyoto a {
  background: linear-gradient(50deg, #F6B2B2, #A84848 60%);
}