/*
Theme Name:original
*/
@charset "UTF-8";

/* ---------------------------------------------------------------------------
共通スタイル
--------------------------------------------------------------------------- */

/* 要素にスタイルを適用 ここから↓ ----------------------------------------------------------------------------- */
* {
  border: 0;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-size: 16px;
  color: #464036;
  letter-spacing: 0.02em;
  line-height: 1.8em;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  word-break: normal;
}

body {
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  min-width: 320px;
  color: #3F3F3F;
}

img{
  display: block;
  width: 100%;
}

ul,ol {
  list-style-type: none;
}

h1,h2,h3,h4,h5,h6{
  font-family: "Sawarabi Mincho";
}

a {
  text-decoration: none;
  transition: 0.8s;
  -webkit-transition: 0.8s;
  color: #3F3F3F;
}

a:hover {
  opacity: 0.8;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
/* 要素にスタイルを適用 ここまで↑ ----------------------------------------------------------------------------- */


/* 共通スタイル ここから↓ ------------------------------------------------------------------------------------- */
.sp{
  display: none;
}

.wrap{
  width: calc(100% - 20px);
  max-width: 960px;
  margin: 0 auto;
  display: block;
}

/* ヘッダー */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: #fff;
  background-color: #3ab5bf;
}

/* ヘッダー：ロゴ */
header #bloc_logo{
  padding: 0px 15px;
  font-size: 10px;
}
header #bloc_logo img{
  margin-top: 5px;
  width: 100%;
  max-width: 270px;
}

/* ヘッダー：グローバルナビゲーション */
header nav{
  font-size: 16px;
  width: calc(100% - 330px);
  max-width: 780px;
}
header nav ul{
  display: flex;
  justify-content: space-between;
  text-align: center;
}
header nav ul li{
  border-left: 1px solid #fff;
  width: calc(100% / 6);
}
header nav ul li a{
  display: block;
  padding: 20px 0 20px;
  font-family: "Sawarabi Mincho";
  font-size: clamp(8px, 1.2vw, 1em);
  color: #fff;
}
header nav ul li a:link{
  color: #fff;
}

/* フッター */
footer{
  width:100%;
  padding-top: 100px;
}

footer .wrap{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.map{
  width: 48%;
  height: 540px;
  overflow: hidden;
}

footer #footer_info{
  width: 48%;
}

/* フッター：ロゴ */
footer #footer_info .footer-logo{
  display: block;
  width: 270px;
}

footer #footer_info .medical-department{
  margin: 10px 0 15px;
}

/* フッター：電話番号 */
footer #footer_info .tel{
  color: #fb8608;
  font-weight: bold;
  font-size: 30px;
}

/* フッター：診療時間表 */
footer #footer_info table{
  border-collapse: collapse;
  margin: 50px 0 10px;
  width: 100%;
  font-size: 16px;
}
footer #footer_info table th,
footer #footer_info table td{
  border-bottom: 1px solid #3F3F3F;
  text-align: center;
  font-weight: 100;
  padding: 10px 0;
}
footer #footer_info table td{
  color: #3ab5bf;
  font-size: 20px;
}
footer #footer_info table td.time,
footer #footer_info table td.closed{
  color: #3F3F3F;
  font-size: 16px;
}
footer #footer_info table td.time{
  width: 115px;
}
footer #footer_info table td.txt{
  font-size: 12px;
  line-height: 1em;
}
footer #footer_info table td.time span{
  display: block;
  font-size: 12px;
  text-align: center;
}
/* フッター：休診 */
footer #footer_info dl{
  display: flex;
  align-items: center;
}
footer #footer_info dt{
  background-color: #fb8608;
  color: #FFF;
  font-size: 13px;
  margin-right: 15px;
  width: 60px;
  text-align: center;
}
footer #footer_info dd{
}

/* フッター：コピーライト */
footer #copyright{
  text-align: center;
  background-color: #3ab5bf;
  color: #FFF;
  font-size: 12px;
  margin-top: 35px;
}

/* フッター：ページトップへ戻るボタン */
#btn_pagetop{
  position: fixed;
  bottom: 5px;
  right: 10px;
  border: 1px solid #FFF;
  background-color: #3ab5bf;
  border-radius: 30px;
  width: 60px;
  height: 60px;
}
#btn_pagetop img{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  width: 18px;
}

/* 下層ページのh1領域 */
h1#pagename{
  background: url("./images/common/vi.png") no-repeat #faeecc left center /auto 100%;
  padding: 50px 0;
  text-align: right;
}
h1#pagename span{
  font-size: 30px;
  font-family: "Sawarabi Mincho";
}

/* 下層ページのコンテンツ領域 */
#contents{
  border-bottom: 1px solid #DCEBEB;
  margin-bottom: 30px;
}

/* パンくずリスト */
#breadcrumb{
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}
#breadcrumb li {
  font-size: 11px;
}
#breadcrumb li:after {
  content: '>';
  padding: 0 10px;
}
#breadcrumb li:last-child:after {
  content: '';
}


/* 下層ページのセクション設定 */
#contents .wrap > section{
  padding: 40px 0 20px 0;
}
#contents .wrap > section > section{
  border-bottom: 1px dashed #DCEBEB;
  padding: 20px 0;
}
#contents .wrap > section > section:last-child{
  border-bottom: 0;
}

/* 下層ページのタイトル */
.tit_second{
  background: url("./images/common/icon.png") no-repeat left center /20px auto;
  border-bottom: 1px solid #3ab5bf ;
  margin-bottom: 30px;
  padding-left: 35px;
}
.tit_third{
  color: #3ab5bf;
  font-size: 20px;
  margin-bottom: 20px;
}

/* 矢印デザイン */
ul.arrow li{
  background: url("./images/common/icon_arrow.png") no-repeat left center /15px auto;
  padding-left: 20px;
}

ul.circle li{
  position: relative;
  padding: 0 0 0 20px;
}
ul.circle li:before{
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  display: block;
  width:10px;
  height:10px;
  background: url("./images/common/icon_circle.png") no-repeat;
  background-size: cover;
}

/* EPARK */
.epark{
  display: block;
  margin-top: 26px;
}

.underline{
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: rgba(255, 228, 0, 0.4);
  text-underline-offset: -0.2em;
  text-decoration-skip-ink: none;
}

.lists{
  list-style: disc;
  margin: 30px 0 40px 30px;
}
.lists li{
  margin-bottom: 10px;
}

.lists-number{
  list-style-type: decimal;
  margin: 0 0 0 30px;
}

/* スマートフォンデザイン */
@media (max-width: 767px) {
  .pc{
    display: none;
  }
  .sp{
    display: inline;
  }

  .wrap{
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
    display: block;
  }

  /*header*/
  header{
    color: #fff;
  }
  header #bloc_logo{
    padding: 5px 0 5px 10px;
    width: calc(100% - 65px);
  }
  header #bloc_logo img{
    margin-top: 5px;
    width: 100%;
  max-width: 210px;
  }

  header a#nav_humburger{
    display: block;
    margin: 8px 8px 8px 0;
    cursor: pointer;
    padding: 9px 8px 0 8px;
    border: 1px solid #000;
    position: relative;
  }

  header a#nav_humburger img{
    display: -webkit-inline-box;
    -webkit-transition: all ease-in-out 350ms;
    transition: all ease-in-out 350ms;
    width: 24px;
  }

  header nav{
    display: none;
    width: 100%;
    font-size: 16px;
    background-color: rgba(1,1,1,0.8);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    padding: 0;
  }

  header nav ul{
    display: block;
    text-align: left;
  }

  header nav ul li{
    border-left: 0 !important;
    border-top: 1px solid #DCEBEB;
    width: 100%;
  }

  header nav ul li a{
    display: block;
    padding: 15px 0 15px 20px;
  }
  header nav ul li a{
    display: block;
  padding: 15px 0 15px 20px;
  font-family: "Sawarabi Mincho";
  font-size: 16px;
    color: #fff;
  }

  header nav ul li a:link {
      color: #fff;
  }

  header nav ul li:first-child a{
    text-align: right;
    padding: 0;
    margin: 15px 10px 10px 10px;
  }

  header nav ul li:first-child a img{
    width: 30px;
    cursor: pointer;
    display: -webkit-inline-box;
    -webkit-transition: all ease-in-out 350ms;
    transition: all ease-in-out 350ms;
  }

  /*==footer==*/
  footer .wrap{
    display: block;
  }

  .map{
    width: 100%;
    height: 400px;
  }

  footer #footer_info{
    width: 100%;
    margin-top:20px;
  }

  footer #footer_info .tel{
    display: block;
    border: 2px solid #fb8608;
    border-radius: 25px;
    width: 280px;
    font-size: 18px;
    text-align: center;
    padding: 10px 0 10px 15px;
    margin: 20px auto;
    background: url("./images/common/bg_tel.png?26040401") no-repeat 18px center /16px auto;
  }

  footer #footer_info table{
    font-size: 12px;
    margin: 20px 0 10px;
  }

  footer #footer_info table td{
    color: #3ab5bf;
    font-size: 4.5vw;
  }

  footer #footer_info table td.time,
  footer #footer_info table td.closed{
    font-size: 13px;
  }

  footer #footer_info table td.time{
    width: 100px;
  }

  footer #footer_info table td.time span{
    display: block;
  font-size: 11px;
    text-align: center;
  }

  footer #copyright {
    margin-top: 20px;
  }

  #breadcrumb li {
    font-size: 12px;
  }
  #breadcrumb li span{
    font-size: 12px;
  }
}

@media screen and (min-width: 747px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

@media screen and (max-width: 980px) {
  header nav{
    font-size: 1.48vw;
  }
}

/* 共通スタイル ここまで↑ ------------------------------------------------------------------------------------- */




/* トップページ ここから↓ ------------------------------------------------------------------------------------- */

/*==vi==*/
#top_bloc_vi{
  width: 100%;
  height: 680px;
  text-align: center;
  background: url("./images/top/bg_vi.jpg") no-repeat center center /cover;
  padding-top: 120px;
}

.vi_message{
  width: 70%;
  max-width: 400px;
  margin: 0 auto 0 auto;
}

/* お知らせ */
#top_bloc_news{
  position: relative;
  background-color: #fff5b4;
}

#top_bloc_news dl{
  position: absolute;
  top: -8vw;
  left: 50%;
  transform:translateX(-50%);
  display: flex;
  width: 96%;
  max-width: 960px;
  padding: 0;
  height: 220px;
  margin: 50px auto 0 auto;
  box-shadow: 0 0 10px #ccc;
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
}
#top_bloc_news dt{
  width: 240px;
  padding: 50px 0 0;
  text-align: center;
  color: #FFF;
  font-size: 24px;
  background-color: #3ab5bf;
  font-family: "Sawarabi Mincho";
  height: 220px;
}

#top_bloc_news dt a.btn{
  display: block;
  margin: 40px auto 0;
  width: 170px;
  border: 1px solid #FFF;
  font-size: 15px;
  line-height: 40px;
  border-radius: 20px;
  color: #fff;
}

#top_bloc_news dt a.btn:link{
  color: #FFF;
}

#top_bloc_news dd{
  padding: 0 15px;
  width: calc(100% - 240px);
  overflow-y: scroll;
  background-color: #FFF;
}

#top_bloc_news dd ul li{
  border-bottom: 1px solid #E6EBEF;
  padding: 20px 0;
}

#top_bloc_news dd ul li:after{
  display: block;
  content: "";
  clear: both;
}

#top_bloc_news dd ul li:last-child{
  border-bottom: 0;
}

#top_bloc_news dd ul li span{
  color: #3ab5bf;
  margin-right: 15px;
  display: block;
  float: left;
  width: 130px;
}

#top_bloc_news dd ul li a{
  display: block;
  float: left;
  width: calc(100% - 150px);
}

/* キャッチコピー */
#top_bloc_policy{
  padding: 250px 0 70px 0;
  background-color: #fff5b4;
  border-top: 10px solid #3ab5bf;
}
#top_bloc_policy .wrap{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#top_bloc_policy .wrap div{
  width: 50%;
}

#top_bloc_policy .wrap div h2{
  color: #3ab5bf;
  font-size: 28px;
  margin-bottom: 20px;
}

#top_bloc_policy img{
  width: 46%;
  border-radius: 20px;
}

/*==medical==*/
#top_bloc_medical{
  padding: 35px 0;
  position: relative;
}
#top_bloc_medical:after{
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100px;
  background-color: #fff5b4;
  z-index: -1;
}
#top_bloc_medical .wrap{
  display: flex;
  justify-content: space-between;
}
#top_bloc_medical section{
  color: #FFF;
  width: 33%;
  max-width: 280px;
  position: relative;
  border: 3px solid #3AB5C1;
  border-radius: 150px;
}

#top_bloc_medical section img{
  width: 100%;
  border-radius: 50% 50% 0 0;
}

#top_bloc_medical section h3{
  color: #3AB5C1;
  font-size: 20px;
  text-align: center;
  margin: 25px 0 0 0;
}
#top_bloc_medical section p{
  display: block;
  height: 120px;
  padding: 0 10px;
}
#top_bloc_medical section a.btn{
  display: block;
  margin: 0 auto 30px auto;
  text-align: center;
  color: #3AB5C1;
  font-weight: bold;
  position: relative;
}
#top_bloc_medical section a.btn:after{
  content: "〉";
  display: inline-block;
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  color: #3AB5C1;
  font-weight: bold;
}


/* スマートフォンサイズ */
@media (max-width: 767px) {
  header {
    position: static;
  }

  #top_bloc_vi{
    width: 100%;
  height: 520px;
    text-align: center;
  background: url("./images/top/bg_vi_sp.jpg?26033101") no-repeat center center /cover;
    padding-top: 120px;
  }

  .vi_message{
  width: 56%;
    max-width: 400px;
    margin: 0 auto 0 auto;
  }

  /*お知らせ*/
  #top_bloc_news dl{
    position: absolute;
  top: -45vw;
    left: 50%;
    transform:translateX(-50%);
    display: flex;
  flex-direction: column;
  width: 90%;
    max-width: 960px;
    padding: 0;
  height: 400px;
    margin: 50px auto 0 auto;
    box-shadow: 0 0 10px #ccc;
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
  }

  #top_bloc_news dt{
    width: 100%;
  padding: 10px 10px 10px 20px;
    text-align: left;
    font-size: 18px;
    position: relative;
    height: auto;
  }

  #top_bloc_news dt a.btn{
    margin: 0;
    width: 80px;
    line-height: 30px;
    border-radius: 0px;
    text-align: center;
    position: absolute;
  top: 11px;
  right: 20px;
  }

  #top_bloc_news dt a.btn:link{
    color: #FFF;
  }

  #top_bloc_news dd{
    width: 100%;
  height: 330px;
  }

  #top_bloc_news dd ul li span{
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
  }

  #top_bloc_news dd ul li a{
    width: 100%;
  }

  /* キャッチコピー */
  #top_bloc_policy{
  padding: 340px 0 30px 0;
    background-color: #fff5b4;
    border-top: 10px solid #3ab5bf;
  }
  #top_bloc_policy .wrap{
  flex-direction: column;
  }
  #top_bloc_policy .wrap div{
  width: 100%;
  }

  #top_bloc_policy .wrap div h2{
  font-size: 22px
  }

  #top_bloc_policy img{
  width: 80%;
  margin: 50px auto;
  }

  /*==medical==*/
  #top_bloc_medical{
  padding: 35px 0 0 0;
    position: relative;
  }
  #top_bloc_medical .wrap{
    display: flex;
    justify-content: space-between;
  flex-direction: column;
  }
  #top_bloc_medical section{
    color: #FFF;
  width: 80%;
  max-width: none;
    position: relative;
    border: 3px solid #3AB5C1;
  border-radius: 400px;
  margin: 0 auto 50px auto;
  }

  #top_bloc_medical section img{
    width: 100%;
    border-radius: 50% 50% 0 0;
  }

  #top_bloc_medical section h3{
    color: #3AB5C1;
    font-size: 20px;
    text-align: center;
    margin: 25px 0 0 0;
  }

  #top_bloc_medical section p{
    display: block;
  height: 100px;
  padding: 10px 30px 0 30px;
  }

  #top_bloc_medical section a.btn{
    display: block;
    margin: 0 auto 30px auto;
    text-align: center;
    color: #3AB5C1;
    font-weight: bold;
    position: relative;
  }
  #top_bloc_medical section a.btn:after{
    content: "〉";
    display: inline-block;
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    color: #3AB5C1;
    font-weight: bold;
  }

}

/* トップページ ここまで↑ ------------------------------------------------------------------------------------- */



/* ごあいさつ ここから↓ --------------------------------------------------------------------------------------- */

/*---bloc_greetings---*/
#bloc_greetings{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 0 0 0;
}

#bloc_greetings img{
  width: 40%;
  margin-right: 8%;
}

#bloc_greetings .txt{
  width: calc(100% - 230px);
}

#bloc_greetings p.sign{
  text-align: right;
}

/*---bloc_profile---*/
#bloc_profile section{
  display: flex;
  align-items: flex-start;
}
#bloc_profile section span{
  margin-right: 14px;
  display: inline-block;
  width: 100px;
}
#bloc_profile h3{
  width: 130px;
  margin-right: 20px;
}

/**\\\\\746 breakpoint\\\\\**/
@media (max-width: 767px) {
  #bloc_greetings{
    padding: 10px 0 0 0;
    flex-direction: column;
  }
  #bloc_greetings img{
    width: 90%;
    margin: 50px auto;
  }
  #bloc_greetings .txt{
    width: 100%;
  }
  /*---bloc_profile---*/
  #bloc_profile section{
    display: block;
  }
  #bloc_profile section span{
    display: block;
    line-height: 1em;
  }
  #bloc_profile h3{
    width: 100%;
    margin: 0 0 20px 0;
  }
  #bloc_profile ul{
    margin-left: 10px;
  }
  /* career */
  #career .circle li{
    margin-bottom: 7px;
  }
  #career .circle li:last-child{
    margin-bottom: 0;
  }
  #career .circle li:before{
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    display: block;
    width:10px;
    height:10px;
    background: url("./images/common/icon_circle.png") no-repeat;
    background-size: cover;
  }
}

.circle{
  position: relative;
}

ul.circle li.customLi{
  background: none;
  padding-left: 0;
  font-weight: bold;
}

ul.circle li.customLi-last{
  background: none;
  font-weight: normal;
  position: absolute;
  left: -30px;
}

/* ごあいさつ ここまで↑ --------------------------------------------------------------------------------------- */


/* 診療案内 ここから↓ ----------------------------------------------------------------------------------------- */

/* 理念 */

/*---bloc_philosophy---*/
#bloc_philosophy ul{
  font-size: 18px;
  list-style: disc none outside;
  padding-left: 20px;
}

#bloc_philosophy ul li{
  margin-bottom: 15px;
}

#bloc_philosophy ul li:last-child{
  margin-bottom: 0;
}

/*---bloc_medical---*/

/*main*/
#main div{
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

#main div img{
  width: 280px;
  margin-right: 40px;
}

#main div section{
  width: calc(100% - 320px);
}

#main div h4{
  color: #3ab5bf;
  font-size: 20px;
  font-weight: 100;
  margin-bottom: 20px;
}

/*exam*/
#exam ul.arrow{
  margin: 15px 0 0 16px;
}

/* worry */
#bloc_medical--worry ul li{
  padding-bottom: 20px;
  border-bottom: 1px dotted #ccc;
  margin-bottom: 20px;
}

#bloc_medical--worry ul li span{
  font-weight: bold;
}

.last-sentence{
  margin-top: 50px;
}

.first-sentence{
  margin-bottom: 50px;
}

.clinic-message{
  border: 3px solid #DCEBEB;
  padding: 20px;
  margin: 20px auto 50px auto;
}

#mynumber ul{
  margin: 50px auto;
  padding: 30px;
  background-color: #fbf1d3;
}

#mynumber ul li{
  margin-left: 25px;
  position: relative;
  margin-bottom: 10px;
}
#mynumber ul li:before{
  content: "●";
  position: absolute;
  left: -25px;
}
#mynumber ul li:last-child{
  margin-bottom: 0;
}

.img-allergy{
  margin: 50px auto;
  width: 90%;
  max-width: 600px;
}

.banner_alg{
  display: block;
  margin: 30px auto;
  width: 90%;
  max-width: 600px;
}
/**\\\\\746 breakpoint\\\\\**/
@media (max-width: 767px) {
/*---bloc_medical---*/
/*main*/
#main div{
  display: block;
}

#main div img{
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 480px;
}

#main div section{
  width: 100%;
  padding: 20px;
  margin: 0 auto;
  max-width: 480px;
  background-color: #DCEBEB;
}


}

/* 診療案内 ここまで↑ ----------------------------------------------------------------------------------------- */


/* 院内紹介 ここから↓ ----------------------------------------------------------------------------------------- */

/*---bloc_facility---*/
#bloc_facility div{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#bloc_facility section{
  text-align: center;
  width: 49%;
  border: 1px solid #DCEBEB;
  padding: 20px;
  margin-bottom: 2%;
}

#bloc_facility section img{
  width: 100%;
}

#bloc_facility section h3{
  margin: 15px 0;
}

#bloc_facility section p{
  text-align: left;
}

/*---bloc_equipment---*/
#bloc_equipment > div{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#bloc_equipment > div::after{
  content:"";
  display: block;
  width:32%;
}

#bloc_equipment > div > div{
  width: 32%;
  border: 1px solid #DCEBEB;
  padding: 20px;
  margin: 0 0 2% 0;
}

#bloc_equipment > div > div img{
  width: 100%;
}

#bloc_equipment > div > div p{
  margin-top: 10px;
}


/**\\\\\746 breakpoint\\\\\**/
@media (max-width: 767px) {
/*---bloc_facility---*/
#bloc_facility div{
  display: block;
}

#bloc_facility section{
  width: 100%;
  max-width: 400px;
  margin:0 auto 2%;
}

#bloc_facility section:last-child{
  margin:0 auto;
}

/*---bloc_equipment---*/
#bloc_equipment > div > div{
  width: 100%;
}

}

/* 院内紹介 ここまで↑ ----------------------------------------------------------------------------------------- */


/* お知らせ ここから↓ ----------------------------------------------------------------------------------------- */
.news-outer{
  padding-top: 50px;
}
.news-outer section{
  background-color: #FFF;
  border-radius: 10px;
  margin-bottom: 50px;
  padding: 30px;
  box-shadow: 0 0 10px #ccc;
}

/* お知らせ ↓ */
.news-outer section h2{
  border-bottom: 1px dotted #ccc;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.news-outer section .tit_second{
  font-size: 18px;
  margin-bottom: 15px;
}

.news-outer section .date{
  font-size: 14px;
  color: #3ab5bf;
  margin-bottom: 5px;
}

.news-outer a{
  color: #1A73E8;
  text-decoration: underline;
}

#pager {
  width: 300px;
  margin: 0 auto 50px;
}

#pager li {
  width: 25%;
  float: left;
  background-color: #1777BA;
  border-right: 1px solid #FFF;
  text-align: center;
  color: #FFF;
  height: 50px;
  line-height: 50px;
}

#pager li:nth-child(2) {
  width: calc(50% - 2px);
}

#pager li:last-child {
  border-right: none;
}

#pager li a{
  display: block;
  padding-top: 4px;
}

#pager li img {
  width: 10px;
}

#pager li:nth-child(1) img {
  transform: rotate(180deg);
}

/* お知らせ ここまで↑ ----------------------------------------------------------------------------------------- */
