/*-------------------------------------------
共通
-------------------------------------------*/
@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;
}
.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: #151515;
  
}

.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;
  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;
}
.mainvisual{
  width: 100vw;
}





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

/*------------- ごあいさつ -----------------*/
.greeting{
  /*background-image: radial-gradient(circle, #ffffff, #f9f9fb, #f2f2f6, #ebecf2, #e4e6ee);*/
  background-image: linear-gradient(to top, #ffffff, #f9f9fb, #f2f2f6, #ebecf2, #e4e6ee,#f2f2f6,#f9f9fb,#ffffff);
  padding: 130px 0;
}

.greeting-content{
  justify-content: space-between;
  text-align: center;
  flex-wrap: wrap;
  align-items: top;
}
.greeting-about{
  min-width: 246px;
  max-width: 480px;
  /*width: 48%;*/
  width: 45%;
  
}
.greeting-about-title{
  font-size: 1.8rem;
  line-height: 2rem;
  font-family:  kinuta-maruminyoshino-stdn, serif;
  font-weight: normal;
  margin-bottom: 50px;
}
.greeting-about-text{
  text-align: left;
}
.greeting-img{
  min-width: 246px;
  max-width: 480px;
  /*width: 48%;*/
  width: 45%;
  height: auto;
}
.greeting-img-img{
  border-radius: 10px;
  box-shadow:0px 0px 20px 5px #aeb6be;
}


/*-------------- お知らせ ----------------*/
.news{
  margin: 0 auto;
  padding: 130px 0 ;
}
.news-cover{
  background: linear-gradient(to bottom, transparent 0%, transparent 70%, #fff 100%),url(../images/HOME/HOME_main.png);
  /* linear-gradient( 向かう方向, 始点の色(transparent=透明) 始点の位置(0%), 終点の色(transparent=透明 終点の位置(70%), #fff 100%),url(パス); */
}

.news-table{
  margin: 0 auto;
  width: 80%;
  border-collapse: collapse;
  border-left: solid 2px #cccccc;
  border-right: solid 2px #cccccc;
  border-bottom: solid 2px #cccccc;
  border-top: solid 20px #283673;
  background-color: rgba(255,255,255,0.7);
}
.news-table td{
  padding: 15px;
  border-bottom: solid 2px #cccccc;
}
.date{
  width: 120px;
}






/*------------- 診療時間・アクセス -------------*/
.access{
  padding: 130px 0;
}
.access-content{
  justify-content: space-between;
  flex-wrap: wrap;
}
.access-map{
  width: 45%;/*48%*/
  max-width: 480px;
  min-width: 246px;
}
.access-map iframe{
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.access-about{
  width: 45%;/*48%*/
  max-width: 480px;
  min-width: 246px;
  border-top: dashed 2px #283673;
  border-bottom: dashed 2px #283673;
  padding: 20px 0;
}
.access-dl{
  width: 95%;
  margin: 0 auto 30px;
}
.access-dl dt{
  margin-right: 60px;
  width: 50px;
}
.access-dl div{
  padding: 20px 0;
}
.access-dl div:nth-child(2){
  border-top: dashed 1px #a9afc7;
  border-bottom: dashed 1px #a9afc7;
}
.access-table{
  width: 95%;
  border: solid 1.7px #283673;
  margin: 0 auto;
  padding: 0 20px;
  border-collapse: collapse;
}
.access-table th,.access-table td{
  height: 56px;
  text-align: center;
  padding: 0 2%;
}
.access-table th{
  background-color: rgba(12,73,156,0.3);
  font-weight: normal;
}
.access-table tr{
  border-bottom: dashed 1px #283673;
}


/*-------------------------------------------
footer
-------------------------------------------*/
#footer{
  height: 50px;
  background-image: radial-gradient(circle, #283673, #314280, #3a4e8d, #435a9a, #4c67a7);
  color: #fff;
  text-align: center;
  line-height: 50px;
}


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

  /* ヘッダートップ */

.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;/*位置指定*/
  }


}






/*-------------------------------------------
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: yu-gothic-pr6n, sans-serif;
}
.open-menu a{
  color: #fff;
}
/*openクラスが付与されてmenuが開く*/
.open-menu.open{
  left: 0;
}

/* メインビジュアル */
/*.mainvisual{
  width: 100%;
  height: auto;
  background:none;
  position: relative;
}*/
.header-mainvisual img{
  margin-top: 70px;
}

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



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

/*------------- ごあいさつ -----------------*/
.greeting{
  background-color: #e6e9f6;
  padding: 0 0 50px 0;
}
.greeting-content{
  flex-wrap: wrap;
  justify-content: center;
}
.greeting-about{
  width: 100%;
  margin-bottom: 40px;
}
.greeting-about-title{
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 50px;
}
.greeting-about p{
  text-align: left;
}
.greeting-img{
  width: 100%;
  border-radius: 10px;
}

/*---------------- お知らせ ----------------*/

.news-table{
  width: 100%;
}
.news-table td{
  padding:  10px 15px;
}




/*------------- 診療時間・アクセス -------------*/
.access-content{
  flex-wrap: wrap;
  justify-content: center;
}

.access{
  margin-bottom: 0px;
}

.access-map{
  width: 100%;
  height: 100%;
  margin-bottom: 50px;
}
.access-map iframe{
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.access-about{
  width: 100%;
  padding: 20px 0;
}
.access-dl{
  width: 95%;
  margin: 0 auto 10px;
}
.access-dl dt{
  margin-right: 60px;
  width: 50px;
}
.access-dl div{
  padding: 20px 0;
}
.access-dl div:nth-child(2){
  border-top: dashed 1px #a9afc7;
  border-bottom: dashed 1px #a9afc7;
}
.access-table{
  width: 95%;
  border: solid 2px #283673;
  margin: 0 auto;
  padding: 0 20px;
  border-collapse: collapse;
}
.access-table th,.access-table td{
  height: 56px;
  text-align: center;
  /*padding: 0 10px;*/
  padding: 0 2%;
}
.access-table th{
  background-color: #c2c2d6;
}
.access-table tr{
  border-bottom: dashed 1px #283673;
}

}