@charset "UTF-8";
/* CSS Document */


@media only screen and (max-width : 768px) {

/*-------------------------------------------------------------------------------------
スマホ用レイアウト（768px以下スクリーン）
----------------------------------------------------------------------------------------*/

/*--------------------------------------------------
共通設定(スマホ)
-----------------------------------------------------*/
	
/*body全体の初期スタイル調整*/
body {
	width: 100%;
  -webkit-text-size-adjust:100%;
	-ms-text-size-adjust:100%;
}
    /*--------------------------------------------------
全体レイアウト／背景設定（スマホ）
-----------------------------------------------------*/
/*記事(ボディ)エリア*/
.article {
  border-left: none;
  border-right: none;
  font-size: 1.6em; /*=16px*/
}
/*記事(ボディ)エリアの行間*/
.article p {
  line-height: 1.6;
}

.article{
	width: 100%;
}

/*カラム全体の幅を変更する*/
.top_image_in,.section_inr {
  width: 100%;
  margin: 0 auto; /*真ん中に要素を置きたいときに使う*/
}

/*--------------------------------------------------
見出しタグ設定（PC）
-----------------------------------------------------*/
h2 {
  font-size: 1.5em;
}


/*--------------------------------------------------
ファーストビュー設定
-----------------------------------------------------*/
.top_image {
  background-image: none;
}
.top_image_in img {
  width: 100%;
}
    .pc_img { display: none !important; }
    .sp_img { display: block !important; }

.ctn_vimeo {
  margin-top: 38%;
  max-width: 950px; 
  position: relative;
}


.tit_doctorsvoice {
position: absolute; 
top: -63%; 
left: 0;
 width: 100%;
  height: 100%; 
  object-fit: contain; 
  z-index: 2;
}

.mp4_doctor {
  width: 100%;
   padding-top: 56.25%;
}



    
    /*--------------------------------------------------
下部固定ヘッダー（スマホ）
-----------------------------------------------------*/
     
/* まずは常にフッター固定。表示はクラスで切替 */
#fix_btn {
  display: block!important;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  text-align: center;
  padding: 0.8em 0.5em;
  z-index: 10000;

  /* 最初は非表示（透明） */
  opacity: 0;
  pointer-events: none;

  /* フェードはCSSに任せる */
  transition: opacity .8s;
   padding-bottom: calc(0.8em + env(safe-area-inset-bottom, 0px));
}

/* 表示状態 */
#fix_btn.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/*--------------------------------------------------
フッター部分
-----------------------------------------------------*/
.footer {
  padding: 2em 0em 20em;
  font-size: 1.2em;
}
}