@charset "utf-8";
/* CSS Document */
/*WEB-------------フォント-------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap');
* {
  font-family: 'Noto Sans JP', sans-serif, "Font Awesome 5 Free";
}
body {
  font-family: 'Noto Sans JP', sans-serif, "Font Awesome 5 Free";
  font-size: 16px;
  color: #333631;
  background-color: transparent;
  overflow-x: hidden;
  line-height: 1.5;
}
h1, h2, h3, h4, h5, h6, p, td, li {
  font-family: 'Noto Sans JP', sans-serif, "Font Awesome 5 Free";
}
/*-------------アンカー・ボタン アウトラインなし-------------*/
a.active.focus, a.active:focus, a.focus, a:active.focus, a:active:focus, a:focus, button.active.focus, button.active:focus, button.focus, button:active.focus, textarea:active:focus, textarea:focus,button:active:focus, button:focus, .btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
  outline: 0;
  outline-color: transparent;
  outline-width: 0;
  outline-style: none;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

/*----文字にアンカー-----------------------*/
.text_link {
    color: #2c5e7b;
    text-decoration: none;
    background-color: transparent;
}
.text_link:hover{
    color: #7a4171;
    text-decoration: none;
    background-color: transparent;
}

.container{
  padding: 0;
  line-height: 1.5;
}
.bg_transparent{
  background: rgba(255,255,255,0.7);
  border-radius: 5px;
}
.bg_nav_transparent{
  background: rgba(255,255,255,0.9);

}


.text_purple{
color: #b15b9b;
line-height: 30px;
}

.text_blue{
  color: #2c5e7b;
}


/*-----フォントサイズ--------------------------*/
.f12{
  font-size: 12px;
}

.f14{
  font-size: 14px;
}

.f16{
  font-size: 16px;
}

.f18{
  font-size: 18px;
}

.f20{
  font-size: 20px;
}

.f24{
  font-size: 24px;
}


/*-------------  ヘッダータイトル　----------------*/

.header_title {
  font-size: 20px;
  color: #2c5e7b;
  margin-top: 3rem;
  margin-bottom: 1rem;
  position: relative;
  text-align: left;
}
.header_title span {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin: 0 1em 0 0;
  padding: 0 1em 0 0;
  background-color: #fff;
  text-align: left;
}
.header_title::before {
  position: absolute;
  top: 50%;
  z-index: 1;
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: #ccc;
  background: -webkit-linear-gradient(-45deg, transparent, #2c5e7b 20%, #2c5e7b 90%, transparent);
  background: linear-gradient(-45deg, transparent, #2c5e7b 20%, #2c5e7b 90%, transparent);
}







/*-------------　PC・SP画像切り替え------------- */
.pc_area {
    display: block !important;
}

.phone_area {
    display: none !important;
}

@media only screen and (max-width: 768px) {
    .pc_area {
        display: none !important;
    }

    .phone_area {
        display: block !important;
    }
}

/*-----ナビバー--------------------------*/

/*----トグル閉じるボタン----*/
button[aria-expanded="true"] > span {
  position: relative;
  display: none;
}
button[aria-expanded="true"]::after {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  content: "×";
}
/*----ハンバーガーの枠線を消す-----------*/
.navbar-light .navbar-toggler {
    border-color: rgba(0,0,0,0);
}

.navbar-light .navbar-nav .nav-link {
    color: #666;
    margin-left: 1.5rem;
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: #9f428e;
}

/*-----ナビバーここまで------------------*/

.greeting_back{
  background-image: url(../img/251305_m.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 2rem 1rem;
  line-height: 2;
}

.list-inline {
    line-height: 1.7;
}

.list-inline-item:not(:last-child) {
    margin-right: 0;
}

/*-------footer-----------------*/
.cpac_footer {
  background: rgba(44,94,123,0.7);
 
 color: #04141d;
  text-align: center;
  padding: 2px 0;
  font-size: 14px;
}


/*------topへ戻るボタン------------------------*/
#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #2c5e7b;
  opacity: 0.6;
  border-radius: 50%;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -10px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}




