@charset "UTF-8";

body {
    margin: 0;
    overflow-x: hidden;
    overscroll-behavior-x: none;
    max-width: 100%;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.content{
    margin: 0 auto;
    width: 700px;
}
@media screen and (max-width:700px) {
    .content{
        width: 100%;
    }
}

/*------ commo ------*/
div.inner{
    padding: 0 5%;
}
div.inner p{
    margin: 4% 0;
}
div.inner img{
    margin: 4% 0;
}
.fcO {
    color: #ff7901;
}
b.marker {
    background: linear-gradient(transparent 70%, #fff5ba 70%);
    font-weight: bold;
}
.fsSS{
    font-size: 0.6em;
    color: #d1d1d1;
    text-align: right;
    margin-top: 2%;
    display: block;
    margin: 1% 0 !important;
}

.pc {
    display: none;
}
.sp {
    display: block;
}
@media screen and (min-width: 800px){
    .pc {
        display: block;
    }
    .sp {
        display: none;
    }
}
/*------ commo ------*/


/*------ header ------*/
header {
    width: 100%;
    background: #05256b;
    box-sizing: border-box;
}

.header_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 3% 4%;
    background-image: linear-gradient(90deg, #23a4b2, #4ccadb);
    box-sizing: border-box;
}

.header_logo {
    display: flex;
    align-items: center;
    gap: 3%;
    width: 75%;
}

.header_logo img {
    display: block;
    width: 10%;
    max-width: 48px;
}

.header_logo p {
    margin: 0;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
}

header .humburger{
    width: 30px;
    height: 22px;
    margin-left: auto;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
header .humburger span{
    display: block;
    height: 2px;
    border-radius: 100px;
    background-color: #fff;
    width: 100%;
    transition: all 0.3s;
    position: absolute;
}
header .humburger span+span{
    margin-top: 0;
}
header .humburger span:nth-child(1) { top: 0; }
header .humburger span:nth-child(2) { top: 10px; }
header .humburger span:nth-child(3) { top: 20px; }
header .header-inner{
    background-color: #fff;
    padding: 20px;
    display: none;
}
header .humburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(-45deg);
}
header .humburger.active span:nth-child(2) {
    opacity: 0; /* ★透明にする */
}
header .humburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(45deg);
    top: 18.5px;
}
header .humburger.active+.header-inner{
    margin-top: 15px;
}
@media screen and (min-width: 700px){
    .header_wrapper {
        padding: 2%;
    }
    .header_logo {
        gap: 1%;
    }
    .header_logo img {
        width: 4%;
    }
}
@media screen and (max-width: 700px){
    header .header-inner{
        padding: 2%;
    }
}
/*------ header ------*/

/*------ intro ------*/
section.intro{
    background: #fffceb;
    padding: 0 0 5%;
    margin-top: 5%;
}
.img01{
    margin-bottom: 2% !important;
}
.tips01{
    margin-top: 3%;
}
@media screen and (min-width: 700px){
    div.tips img{
        width: 80%;
        margin: auto;
    }
}
/*------ intro ------*/


/*------ recommend ------*/
section.recommend{
    padding: 0 0 5%;
}

/* ------ medical-table ------ */
.medical-table-container {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    margin: 0 auto 5%;
    box-sizing: border-box;
  }
  
  /* テーブル全体のスタイル */
  .medical-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 4px; /* セル同士の隙間（白い線に見える部分） */
    table-layout: fixed;
  }
  
  /* セルの基本スタイル */
  .medical-table th,
  .medical-table td {
    padding: 15px 10px;
    text-align: center;
    vertical-align: middle;
    font-size: 15px;
    line-height: 1.4;
  }
  
  /* ヘッダーセルのスタイル */
  .medical-table th {
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
  }
  
  /* 左端の項目ラベル列 */
  .col-title {
    background-color: #e9fdff;
    color: #0b688d !important;
    width: 25%;
    border-radius: 10px 0 0 0;
  }
  .medical-table td.row-label {
    background-color: #e9fdff;
    color: #0b688d;
    font-weight: bold;
    font-size: 16px;
    width: 25%;
  }
  
  /* 保険治療列（通常スタイル） */
  .col-insurance {
    background-color: #7d7d7d;
    width: 37.5%;
  }
  .bg-light-gray {
    background-color: #ededed;
  }
  .text-dark {
    color: #4a4a4a;
  }
  
  /* 自費治療列（おすすめ・強調スタイル） */
  .col-private {
    background-color: #2eafbe;
    width: 37.5%;
    border-radius: 0 10px 0 0;
  }
  .bg-light-blue {
    background-color: #ffffe2; /* ほんのり黄色味を帯びた白 */
    border: 1px dashed #e2eff5; /* グリッドに馴染ませるためのダミー枠 */
  }
  .text-blue {
    color: #2eafbe;
  }
  .text-small {
    font-size: 13px;
    font-weight: normal;
    display: block;
    margin-top: 4px;
  }
  .fsM{
    font-size: 17px;
  }
  @media (max-width: 480px) {
    .medical-table th,
    .medical-table td,
    .medical-table td.row-label {
      font-size: 12px;
      padding: 10px 4px;
    }
    .medical-table th {
      font-size: 13px;
    }
    .text-small {
      font-size: 10px;
    }
  }

/*------ recommend ------*/

/*------ Risk ------*/
section.Risk{
    background: #e8eef0;
    padding: 2% 0 5%;
}
.slick-dotted.slick-slider {
    margin-bottom: 10%;
}
section.Risk .slider .slide01,
section.Risk .slider .slide02,
section.Risk .slider .slide03 {
    background-color: #ffffff;
    background-image: 
        linear-gradient(#e8f7ff 1px, transparent 1px),
        linear-gradient(90deg, #e8f7ff 1px, transparent 1px);
    background-size: 15px 15px;
    box-sizing: border-box;
}
section.Risk div.inner img{ 
    margin: 0;
}
section.Risk .slider div h3 img{
    margin: 0 !important;
}
section.Risk .slider div p.extxt{
    padding: 5% 8% 0;
}
section.Risk .slider div img.risk-img{
    padding: 5% 8% 2%;
}
section.Risk .slider div .risk-box{
    background: #ffffe2;
    padding: 3% 4% 3% 5%;
    margin: 0 8% 8%;
    font-size: 0.8em;
}
/* スライダー */
.slider {
    padding: 0 5px; 
    position: relative;
}
.slider > div {
    /* スライド同士の間に隙間を作る */
    padding: 0 10px; 
    box-sizing: border-box;
}
.slider .slick-slide {
    margin: 0 10px;
}
.slick-dotted.slick-slider{
    margin: 4% 0 0;
}
.slider .slick-prev,
.slider .slick-next {
    z-index: 10;
    position: absolute;
    top: 50%;
}
.slider .slick-prev::before,
.slider .slick-next::before {
    font-family: 'slick' !important;
    font-size: 40px !important;
    color: #28a9b7 !important;
    opacity: 0.8 !important;
    transition: opacity 0.2s;
}
.slider .slick-prev {
    left: 6px;
}
.slider .slick-next {
    right: 24px;
}
.slider .slick-dots {
    bottom: -30px; /* スライダーの下側に配置 */
}
.slider .slick-dots li{
    width: 12px;
    height: 13px;
    margin: 0 10px;
}
.slider .slick-dots li button::before {
    font-family: inherit !important;
    content: "" !important; /* デフォルトの「•」を消す */
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #bde0ec; 
    opacity: 1; /* slickデフォルトの透過をリセット */
}
.slider .slick-dots li.slick-active button::before {
    background-color: #28a9b7; /* テーブルで使用したアクセントの青と同色 */
}
@media (min-width: 700px) {
    .slick-dotted.slick-slider {
        margin: 4% 5% 0;
    }
    section.Risk .slider div .risk-box{
        font-size: 1em;
    }
    section.Risk .slider div img.risk-img{
        padding: 3% 8% 2%;
    }
}
@media (max-width: 700px) {
    section.Risk{
        background: #e8eef0;
        padding: 6% 0 1%;
    }
    .slider{
        width: 100%;
        overflow: hidden;
    }
    .slider .slick-dots {
        bottom: 0;
    }
    .slick-dotted.slick-slider {
        padding-bottom: 5%;
    }
}
/*------ Risk ------*/

/*------ Three-points ------*/
section.Three-points{
    margin-bottom: 10%;
}
section.Three-points h3 {
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    gap: 10px;
    padding-bottom: 6px; /* 線と文字の間の隙間 */
    background-image: radial-gradient(#2eafbe 30%, transparent 35%);
    background-position: left bottom; /* 左下に配置 */
    background-size: 7px 7px;
    background-repeat: repeat-x;
    font-size: 1.3em;
    line-height: 1.3;
    color: #4a4a4a;
    flex-shrink: 0;
    box-sizing: border-box;
}  
section.Three-points h3 img {
    width: 50px;
    height: 50px;
    margin: 2% 0;
    flex-shrink: 0;
}
section.Three-points .point-area{
    margin-top: 6%;
}
section.Three-points .point-area p{
    line-height: 1.7;
}
/* アコーディオン */
.point-summary-wrap {
    position: relative;
    height: 140px;
    overflow: hidden;
    width: 100%;
    transition: height 0.4s ease;
}
/* 白グラデーションのマスク（疑似要素） */
.point-summary-wrap::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px; /* グラデーションの縦幅 */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none; /* マスクの下の要素を触れるようにする */
    transition: opacity 0.3s ease;
}
/* wrapの中にある画像の設定 */
.point-summary-wrap img {
    max-width: 100%;
    height: auto;
    margin-top: 15px;
}
/* -------------------------------------------
   ボタンがクリックされて開いた状態（.is-open）
------------------------------------------- */
.point-summary-wrap.is-open {
    height: auto !important; /* 高さを全開にする */
}
.point-summary-wrap.is-open::after {
    opacity: 0; /* 開いたらグラデーションを消す */
}
/* 詳細を見るボタンの装飾 */
.btn-point-more {
    display: block;
    margin: 0 auto 6%;
    padding: 2% 5% 1.5%;
    background-color: #2bafc6;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s;
    font-size: 14px;
}

@media (min-width: 700px) {
    section.Three-points h3{
        font-size: 1.6em;
    }
    section.Three-points h3 img {
        width: 8%;
    }
    section.Three-points .point-area p{
        line-height: 2;
        font-size: 1.1em;
    }
    .btn-point-more {
        padding: 1% 5% 1.5%;
    }
    .point-summary-wrap {
        height: 172px;
    }
}
/*------ Three-points ------*/


/*------ Comparison-table ------*/
div.inner p.scroll-txt{
    color: #999999; 
    font-size: 14px;
    text-align: center;
    margin-bottom: 3%;
}
.rankTable{
    margin-inline: auto;
    margin-top: 100px;
    white-space: nowrap; /* テキストの折り返しなし */
    width: 300px;
    vertical-align: middle;
    font-size:14px;
}
.rankTable>p{
    display: none;
}
.rankTable table{
    table-layout: fixed;
    width: 530px;
    border-collapse: collapse;
    line-height: 1.2;
    font-size:14px;
}
.rankTable th{
    position: sticky;
    background-color: #36b6c5;
    left: 0;
    border-bottom: 1px dotted #ddd;
    z-index: 5;
    color: #fff;
    white-space: normal;
    vertical-align: middle;
    font-size:12px;
    padding:3px;
    width: 11%;
}
.rankTable td{
    width: auto;
    border-bottom: 1px dotted #ddd;
    border-right: 1px dotted #ddd;
    vertical-align: middle;
    text-align: center;
    background: #fff;
    font-size: 12px;
    padding: 5px;
    word-wrap: break-word;
    white-space: normal;
}
.rankTable td strong{
    font-size: 1.05em;
    color: #0b688d;
}
.rankTable tr:first-child img{
    width: 90%;
    margin: 0 auto;
}
.rankTable td:last-child{
    border-right: none;
}
.rankTable tr:last-child td,
.rankTable tr:last-child th{
    border-bottom: none;
}
.rankTable  td:nth-child(2) {
    background-color: #fffbe8;
}
.rankTable td a.btn-ctano1{
    background-color: #ff7700;
    color: #fff;
    border-radius: 50px;
    padding: 14px 6% 12px;
    margin: 5px 5px 8px;
    font-weight: bold;
    display: block;
    box-shadow: #e36a00 0px 0.3em;
    font-size: 11px;
    text-decoration: none;
}
.rankTable td a.btn-cta{
    background-color: #ffb100;
    color:#fff;
    border-radius:50px;
    padding: 14px 6% 12px;
    margin: 5px 5px 8px;
    font-weight: bold;
    display: block;
    box-shadow: #e36a00 0px 0.3em;
    font-size: 11px;
    text-decoration: none;
}
.rankTable {
    width: 100%;
}
.rankTable img{
    width: 20px;
}
.rankTable td {
    font-size:12px;
}
.ico-circle{
    display: inline-block;
    color: #ff9900;
    font-size: 66px;
    font-weight: bold;
    line-height: 0.5;
    margin-bottom: 2px; 
}
.ico-cross{
    display: inline-block;
    color: #434343;
    font-size: 34px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 2px; 
}
.rankTable .fsL {
    font-size: 1.5em;
}

@media screen and (max-width:768px){
    .rankTable{
        overflow-x: scroll;
    }
}
@media (min-width: 700px) {
    section.Comparison-table div.inner{
        padding: 0;
    }
    div.inner p.scroll-txt{
        margin: 0 0 2%;
    }
    .rankTable table{
        width: 695px;
    }
    .rankTable th {
        width: 9%;
    }
    .rankTable td strong{
        font-size: 1.5em;
    }
}
/*------ Comparison-table ------*/

/*------ Select-clinic ------*/
div.inner02{
    padding: 0 3%;
}
div.inner02 p{
    margin: 4% 0;
}
div.inner02 img{
    margin: 4% 0;
}
section.Select-clinic{
    background: #e7f9ff;
    margin-top: 5%;
    padding: 0 0 5%;
}
div.clinic-wrap{
    background: #fff;
    padding: 9% 5% 6%;
    margin: 5% 0;
    border-radius: 20px;
}
div.clinic-wrap h3{
    display: flex;
    align-items: center;
    gap: 2%;
    color: #0b688d;
    font-size: 1.3em;
    line-height: 1.5;
}
div.clinic-wrap h3 img{
    width: 33%;
    margin: 0;
}
.main-clinic{
    border: #ff7700 solid 3px;
    padding: 9% 5% 2% !important;
}
/* ポイント */
.clinic-point-box {
    width: 100%;
    max-width: 500px;
    background-color: #ffffff;
    box-sizing: border-box;
    font-family: sans-serif;
    margin: 20px auto;
}
.clinic-point-box h4 {
    margin: 0;
    background-color: #2eb2c2;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    border-radius: 10px 10px 0 0;
}
.point-item {
    padding: 12px 15px;
    background: #fffdeb;
}
.point-item:not(:last-child) {
    border-bottom: 1.5px dashed #333333;
}
.point-label {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: #2eb2c2;
    display: inline-block; /* 文字の長さに背景を合わせる */
    font-size: 14px;
    font-weight: bold;
    padding: 3px 12px;
    border-radius: 0 20px 20px 0;
}
.point-text {
    margin: 2% 0 !important;
    font-size: 14px;
    line-height: 1.5;
    color: #333333;
}
.point-text strong {
    font-weight: bold;
}
.point-text .txt-red {
    color: #e54d42;
    font-weight: bold;
}
.clinic-basic-table h3 img{
    margin: 0 auto !important;
    display: block;
    width: 48% !important;
}
@media (min-width: 700px) {
    div.clinic-wrap{
        padding: 6% 5%;
    }
    .clinic-point-box {
        width: 100%;
        max-width: 700px;
    }
    div.clinic-wrap h3{
        font-size: 2em;
    }
    .clinic-point-box h4{
        font-size: 1.5em;
    }
    .point-item{
        padding: 4% 4% 2%;
    }
    .clinic-basic-table h3 img{
    width: 38% !important;
    }
}

/* 基本情報 */
.info-table {
    width: 100%;
    max-width: 600px;
    border-collapse: collapse;
    margin: 1% auto;
    font-family: sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
}
.info-table tr {
    border-bottom: 1px solid #dddddd;
}
.info-table tr:first-child {
    border-top: 1px solid #dddddd;
}
.info-table th {
    width: 30%;
    background-color: #cdf2f6;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    padding: 12px 15px;
    color: #1595a5;
}
.info-table td {
    width: 70%;
    background-color: #ffffff;
    text-align: left;
    vertical-align: middle;
    padding: 12px 15px;
}

/* メインクリニックボタン */
.cv_btn {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96%;
    min-height: 48px;
    background: #ff7700;
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 0 #e36a00;
    box-sizing: border-box;
    z-index: 0;
    isolation: isolate;
    margin: 0 auto 5%;
    padding: 3%;
    text-align: center;
}

.cv_btn::after {
    content: "▶";
    margin-left: 3%;
    font-size: 0.75rem;
}

/* 光 */
.cv_btn::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -40%;
    width: 18%;
    height: 160%;
    background: rgba(255, 255, 255, 0.55);
    transform: rotate(25deg);
    animation: btn_shine 2.4s infinite;
    pointer-events: none;
}
/* 矢印 */
.cv_btn::after {
    content: "▶";
    margin-left: 3%;
    font-size: 0.75rem;
    position: relative;
    z-index: 1;
}
@keyframes btn_shine {
    0% {
        left: -40%;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    45% {
        left: 120%;
        opacity: 1;
    }

    46% {
        opacity: 0;
    }

    100% {
        left: 120%;
        opacity: 0;
    }
}

/* サブクリニックボタン */
.cv_btny {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96%;
    min-height: 48px;
    background: #faa900;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 0 #e36a00;
    box-sizing: border-box;
    z-index: 0;
    isolation: isolate;
    margin: 0 auto 5%;
    padding: 3%;
    text-align: center;
}
.cv_btny::after {
    content: "▶";
    margin-left: 3%;
    font-size: 0.75rem;
}
/* 矢印 */
.cv_btny::after {
    content: "▶";
    margin-left: 3%;
    font-size: 0.75rem;
    position: relative;
    z-index: 1;
}
@media (min-width: 700px) {
    .cv_btn{
        font-size: 1.5em;
        border-radius: 60px;
    }
}


/* -- 理由 -- */
div.reason{
    margin-top: 15%;
}
.attention{
    background: #f0fbff;
    padding: 3% 5% 1%;
}
.attention .atten-box h5{
    gap: 4%;
    font-size: 1.2em;
    color: #1ba2b4;
    background: #fffde1;
    border-radius: 10px;
    padding: 3% 5% 2%;
    margin: 2% 0 2%;
    border-left: #1ba2b4 solid 5px;
}
.attention .atten-box h5 img{
    width: 10%;
}
.atten-box{
    margin-bottom: 15%;
}

.clinic-case{
    margin-bottom: 11%;
}
.clinic-case h3, 
.clinic-voice h3{
    background: linear-gradient(90deg, #2bb2c2 0%, #3fc0cc 50%, #52ced5 100%);
    padding: 2% 5%;
    margin: 8% 0 0;
    border-radius: 0 12px 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.clinic-case h3 img{
    margin: 0 auto !important;
    display: block;
    width: 54% !important;
}

div.inner02 .clinic-case img {
    margin: 1% 0;
}
@media (min-width: 700px) {
    .attention .atten-box h5{
        font-size: 1.6em;
        line-height: 1.3;
    }
    .atten-box{
        margin-bottom: 10%;
    }
    .clinic-case h3 img{
        width: 45% !important;
    }
}
@media (max-width: 700px) {
    .attention p{
        font-size: 0.9em;
    }
}

/* -- 口コミ -- */
.clinic-voice h3 {
    margin: 13% 0 4%;
}
.clinic-voice h3 img{
    margin: 0 auto !important;
    display: block;
    width: 54% !important;
}
.review-card {
    padding: 5%;
    border: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
}
.user-icon {
    width: 48px;
}
.user-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.user-name {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    color: #111;
}
.user-name.user-main {
    font-size: 1.3em;
    color: #1595a5;
}


.rating-container {
    display: flex;
    align-items: center;
    gap: 8px;
}
/* 星5の評価 */
.star-rating {
    --percent: calc(var(--rating) / 5 * 100%);
    display: inline-block;
    font-size: 18px;
    font-family: Times;
    line-height: 1;
}
.star-rating::before {
    content: '★★★★★';
    background: linear-gradient(90deg, #ffb300 var(--percent), #cccccc var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.rating-number {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}
.review-content {
    font-size: 15px;
    margin: 0;
    max-height: 100px;
    overflow-y: scroll;
    padding-right: 12px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}
/* スクロールバー表示 */
.scroll-area {
    overflow: auto;
}
.simplebar-scrollbar:before {
    background: #b7b7b7 !important;
}
.simplebar-track.simplebar-vertical {
    width: 10px !important;
}
.simplebar-track {
    background: #f4f4f4;
}
/* スクロールバー表示 */

.review-content p {
    margin: 0 0 1em 0;
}
.review-footer-note {
    text-align: right;
    font-size: 12px;
    color: #666;
    margin-top: 8px;
    padding-right: 10px;
}
div.inner02 div.user-ttl p{
    font-size: 1em;
    margin: 0 0 4%;
    color: #111;
}
.clinic-voice .none{
    text-align: center;
    margin-bottom: 10%;
}
/* -- 口コミ end -- */

/* キャンペーン */
div.inner02 .Campaign{
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 10%, #fffae0 10%, #fffae0 100%);
    padding: -0 4% 2%;
    margin: 5% 0 0;
}
div.inner02 .Campaign img{
    margin: 2% 0 0 !important;
}
/* クリニック内Tips */
.clinic-tips{
    margin: 5% 0 10%;
}
div.inner02 .clinic-tips h5{
    margin: 0 !important;
}
div.inner02 .clinic-tips h5 img{
    margin: 0 !important;
}
.clinic-tips p{
    padding: 5%;
    font-size: 0.8em;
    background: #e9fdff;
    border-radius: 0 0 10px 10px;
    margin: 0 0 4% !important;
}
@media (min-width: 700px) {
    .clinic-tips{
        margin: 5% 10% 8%;
    }
    .clinic-tips p{
        font-size: 1em;
    }
    .main-clinic{
        padding-bottom: 0 !important;
    }
    .clinic-voice h3 img{
        width: 40% !important;
    }
}
/*------ Select-clinic ------*/

/*------ Column(TOPページ内の記載のみ)※コラム専用cssあり ------*/
section.Column{
    margin: 5%;
}
section.Column h2{
    background: #4ccadb;
    color: #fff;
    text-align: center;
    font-weight: bold;
    padding: 4%;
    border-radius: 10px;
}
section.Column .Column-link a{
    display: block;
    margin: 4% 2%;
    font-size: 14px;
    color: #1595a5;
}
@media (min-width: 700px) {
    section.Column{
        margin: 5% 0;
    }
    section.Column h2{
        padding: 2%;
    }
    section.Column .Column-link a{
        margin: 2%;
    }
}
/*------ Column ------*/

/*------ footer ------*/
footer {
    width: 100%;
    text-align: center;
    background-color: #999999;
}
footer a {
    display: block;
    width: 100%;
    padding: 4% 0;
    color: #fff !important;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 0.05em;
}
footer a:hover {
    opacity: 0.8;
}
/*------ footer ------*/