/*-------------------------------------------
共通
-------------------------------------------*/
@charset "utf-8";
html{
  font-size: 100%;
}
body{
  font-family: yu-gothic-pr6n, sans-serif;
  line-height: 24px;
  color: #2d2d2e;
  height: 100vh;
  overflow-x: hidden;
  margin: 0;
}
img{
  max-width: 100%;
}
ul {
  list-style: none;
}
a{
  text-decoration: none;
}
/* サイト全体のコンテンツ幅を設定 */
.container{
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  padding: 0 10px;
  flex-wrap: wrap;
  justify-content: space-around;
}
.container-right{
  margin-right: 0;
  margin-left: auto;
  max-width: 1220px;
}
/* Flex */
.flex{
  display: flex;
}
/* セクションタイトル */
.section-title{
  position: relative;
  text-align: center;
  margin-bottom: 100px;
  color: #2d2d2e;
  
}
.section-title-ja{
  font-size: 2.25rem;
  margin-bottom: 10px;
  font-family: kinuta-maruminyoshino-stdn, serif;
}
.section-title-en{
  font-size: 1.125rem;
  font-weight: normal;
}

/*-------------------------------------------
header
-------------------------------------------*/

/* ヘッダートップ */

#header{
  margin-bottom: 100px;
}
.header-top-fixed{
  background: linear-gradient(rgba(180,196,213,1),rgba(180,196,213,0));
}
.header-logo{
  max-width: 230px;
}
.header-top{
  padding: 15px 0;
  justify-content: space-between;
  color: #182665;
}
.header-tel{
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: bold;
}
.header-access{
  font-weight: normal;
}

/* ハンバーガーメニュー */
.openbtn{
  display: none;
}

/* グローバルナビ */
.glovalnavi{
  font-size: 1.25rem;
  color: #fff;
  height: 70px;
  background-color: #283673;
  /*margin-bottom: 100px;*/
  padding: 0 120px;
  box-shadow: 0px 3px 10px #e1e1e1 inset,0px -3px 10px #e1e1e1 inset;/* y,影のサイズ,ぼかす範囲 */
}
.navi-menu{
  justify-content: space-between;
  line-height: 70px;
}
.navi-menu li a{
  font-family: yu-mincho-pr6n, sans-serif;
  font-weight: lighter;
  color: #fff;
  padding: 0;
  position: relative;
}
.navi-menu li.current a,
.navi-menu li a:hover{
	color:#fff;
}
.navi-menu li a::after{
  content: '';
  position: absolute;
  bottom: -8px;
  left: 1%;
  /*線の形状*/
  width: 100%;
  height: 2px;
  background: #fff;
  opacity: 0.7;
  /*アニメーションの指定*/
  transition: all .3s;
  transform: scale(0, 1);/*X方向0、Y方向1*/
  transform-origin: center top;/*上部中央基点*/
}

/*現在地とhoverの設定*/
.navi-menu.current a::after,
.navi-menu a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}

/* sp用グローバルナビ */
.open-menu{
  display: none;
}







/*-------------------------------------------
main
-------------------------------------------*/

/* 共通 
-------------------------------------------*/
/*.comment{
  text-align: center;
}*/
.section-contents{
  padding: 180px 0;
}

.general_01,.colonoscope_03{
  /*background-color: #e6e9f6;*/
  background-image: radial-gradient(circle, #ebebeb, #e3e3ed, #d9dbef, #cdd4f1, #becef4);
}
.contents-img{/* 画像 */
  width: 35%;
  /*min-width: 170px;*/
}
.contents-text{/* No + タイトル + テキスト */
  width: 45%;
  /*min-width: 260px;*/
}

.content-title{/* No + タイトル */
  font-weight: bold;
  margin-bottom: 60px;
  justify-content:unset;
  row-gap: 30px;
}
.contents-no{/* No */
  margin-right: 10%;
  color: #feac6a;
  font-style: italic;
  font-size: 3.75rem;
  font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.content-title h3{/* タイトル */
  font-size: 2rem;
}

.comment{
  margin-bottom: 100px;
}


/*--------------- 一般診療 ------------*/


/*--------------- 胃カメラ ------------*/
.gastroscope_02 .contents-img{/* 画像 */
  margin-right: 0;
  width: 35%;
  /*min-width: 170px;*/
}

/*--------------- 大腸カメラ --------------------*/
.colonoscope_03{
  margin-bottom: 0;
}


/*-------------------------------------------
footer
-------------------------------------------*/
#footer{
  height: 50px;
  width: 100vw;
  background-color: #283673;
  color: #fff;
  text-align: center;
  line-height: 50px;
}





/*-------------------------------------------
tablet
-------------------------------------------*/
@media screen and (min-width:600px) and ( max-width:900px) {

/* ヘッダートップ */

.header-logo{
  width: 200px;
}

.header-tel{
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.header-access{
  font-size: 1rem;
  line-height: 1.2rem;
}


/* グローバルナビ */
  .glovalnavi{
    font-size: 1rem; /*12px*/
    border-bottom-left-radius:0px;
    border-top-left-radius:0px;
    padding: 0 5%;
    }
/* スクロールしたらグローバルナビ固定 */  
  .glovalnavi .fixed{
    position: fixed;/*fixedを設定して固定*/
    z-index: 2;/*最前面へ*/
    top:0;/*位置指定*/
    left:0;/*位置指定*/
  }



/* 共通 
-------------------------------------------*/

.contents-no{/* No */
  margin-right: 10%;
  color: #feac6a;
  font-style: italic;
  font-size: 3.2rem;
  font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.content-title h3{/* タイトル */
  font-size: 1.5rem;
}

}






/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 599px) {

  /*-------------------------------------------
共通
-------------------------------------------*/
body{
  font-size: 14px;
  margin: 0;
}

/* セクションタイトル */
.section-title{
  text-align: center;
  margin-bottom: 60px;
}
.section-title-ja{
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.section-title-en{
  font-size: 0.8rem;
  font-weight: normal;
}



/*-------------------------------------------
header
-------------------------------------------*/
/* ヘッダートップ */
.header-top-fixed{
  position: fixed;
  z-index: 2;
  background: linear-gradient(rgba(167,200,237,1),rgba(167,200,237,0));
}

#header .container{
    width: 100vw;
    padding: 10px;
    margin: 0;
}
.header-logo{
  width: 200px;
}
.header-top{
  text-align: center;
}
.about{
  display: none;
}

/* ハンバーガーメニュー */
.openbtn{
  display: block;
  /*position: relative;*/
  position: fixed;
  top:10px;
  right: 10px;
  cursor: pointer;
	cursor: pointer;
  width: 50px;
  height:50px;
  z-index: 4;/* 最前面に */
}
.openbtn span{
  display: inline-block;
  transition: all .4s;/*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 1.5px;
  border-radius: 2px;
  background: #525252;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;/*真ん中の線は透過*/
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/* sp用グローバルナビ */
.open-menu{
  display: block;
  position: fixed;
  z-index: 3;
  width: 100vw;
  height: 100vh;
  background-color: rgba(17,97,216,0.7);
  font-size: 1.2rem;
  transition: all 0.6s;
  text-align: left;
  left: 100%;
}
.open-menu ul{
  position: absolute;
  top:30%;
  left:40%;
  transform: translate(-50%,-50%);
}
.open-menu li{
  padding: 10px 0;
  font-family: toppan-bunkyu-gothic-pr6n;
}
.open-menu a{
  color: #fff;
}
/*openクラスが付与されてmenuが開く*/
.open-menu.open{
  left: 0;
}

/* メインビジュアル */

/* グローバルナビ */
.glovalnavi{
display: none;
}



/*-------------------------------------------
main
-------------------------------------------*/

/* 共通 
-------------------------------------------*/
.section-contents{
  padding: 100px 0;
}
.contents-img{/* 画像 */
  width: 40%;
  min-width:170px;
  margin:0 auto;
}
.contents-text{/* テキスト */
  width: 100%;
}
.content-title{/* タイトル */
  font-weight: bold;
  margin-bottom: 60px;
  justify-content:unset;
  row-gap: 30px;
}
.contents-no{/* No */
  margin-right: 10%;
  color: #feac6a;
  font-style: italic;
  font-size: 3.2rem;
  font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.content-title h3{
  font-size: 1.5rem;
}
.container{
  row-gap: 50px;
}


/*--------------- 一般診療 ------------*/


/*--------------- 胃カメラ ------------*/
.gastroscope_02 .container{
  flex-direction: column-reverse;
}
.gastroscope_02 .contents-img{/* 画像 */
  width: 40%;
  min-width:170px;
  margin:0 auto;
}

/*--------------- 大腸カメラ --------------------*/

}