@charset "UTF-8";

body {
	margin: 0;
	font-family: "Noto Sans JP", 'メイリオ', 'Hiragino Kaku Gothic Pro', sans-serif;
/*	font-family: "M PLUS 1p", 'メイリオ', 'Hiragino Kaku Gothic Pro', sans-serif; */
    background-image: url("img/bg_image01.png");
    background-size: cover;
}

/* ヘッダー */
header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background-color: rgba(255,255,255,0.9);
}

.nohero header {
    position: static;
    border-bottom: solid 1px #ddd;
}

/* ヘッダーA: 舟吉 */
.headA {
    display: inline-block;
/*    line-height: 70px; */
    padding-left: 20px;
    padding-right: 20px;
/*    background-color: #5D9AB2;
    color: #fff;
    font0-family: "Hannari", 'メイリオ', 'Hiragino Kaku Gothic Pro', sans-serif;
    font-size: 24px;
    text-decoration: none; */
    margin-top: 10px;
}

/* ヘッダーB: ナビゲーションメニュー */
.headB ul {
    mergin: 0;
    padding: 0;
    list-style: none;
}

.headB a {
    display: block;
    padding: 15px;
    color: inherit;
    font-size: 12px;
    text-decoration: none;
}

.headB a:hover {
    background-color: rgba(62,139,181,0.3);
}

@media (min-width: 768px) {
    header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .headB ul {
        display: flex;
    }
}

/* ヘッダーC: トグルボタン */
@media (max-width: 767px) {
    /* 小さい画面用の設定　*/
    header .container-small {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .headC {
        margin-right: 10px;
        padding: 0;
        border: none;
        outline: none;
        background: none;
        font-size: 28px;
        opacity: 0.5;
        cursor: pointer;
    }
    
    .headC:hover {
        opacity: 0.3;
    }
    
    .headB {
        display: none;
    }
}

@media (min-width: 768px) {
    /* 大きい画面用の設定 */
    .headC {
        display: none;
    }
    
    .headB {
        display: block !important;
    }
}

/* アレンジ：ヘッダーとヒーローイメージを一体化 */
.head-hero {
    background-color: rgba(255,255,255,0.7);
/*    background-color: transparent; */
    color: #006A95
}

.head-hero .headA {
    background-color: transparent;
    color: inherit;
}

.head-hero .headC {
    color: inherit;
    opacity: 1;
}

@media (max-width: 767px) {
    .head-hero .headB {
        background-color: rgba(62,139,181,0.7);
/*        background-color: rgba(0,0,0,0.6); */
        color: #fff;
    }
}

/* アレンジ：ヘッダーを画面上部に固定 */
.head-fixed,
.nohero .head-fixed {
    position: fixed;
}

.nohero .head-fixed + * {
    margin-top: 70px;
}

/* テキストリンクの色を花浅葱色に設定 */
a.no-color-change:link,
a.no-color-change:visited,
a.no-color-change:hover,
a.no-color-change:active {
  color: #3e8bb5;
}

/* フッター */
footer {
    color: #fff;
    background-color: #006A95;
}

footer .container {
    padding: 40px 20px;
}

@media (min-width: 768px) {
    footer .container {
        display: flex;
        flex-wrap: wrap;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footA {
        flex: 0 0 40%;
    }
    
    .footB {
        flex: 0 0 60%;
    }
    
    .footC { 
        flex: 0 0 100%;
    }
}

/*　見出しの装飾 */
h1 {
  color: #006a95;
  position: relative;
  padding: 0 .5em .2em 2em;
  border-bottom: 1px solid #ccc;
}
h1::before,
h1::after {
  position: absolute;
  content: '';
  border-radius: 100%
}
h1::before {
  top: .2em;
  left: .2em;
  z-index: 2;
  width: 18px;
  height: 18px;
  background: rgba(52, 106, 149, .5);
/*  background: rgba(150, 150, 150, .5); */
}
h1::after {
  top: .7em;
  left: .7em;
  width: 13px;
  height: 13px;
  background: rgba(70, 125, 174, .5);
/*  background: rgba(210, 210, 210, .5); */
}


/* フッターA: サイト情報 */
.footA h2 {
    margin0-top: 0;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    letter-spacing: 0.2em;
}

.footA p {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.footA a {
    color: inherit;
    text-decoration: none;
}

.footA {
    margin-bottom: 30px;
}

/* フッター B: フッターメニュー */
.footB div {
    margin-bottom: 20px;
}

.footB h3 {
    margin-top: 0;
    margin-bottom: 10px;
    border-bottom: solid 1px currentColor;
    font-size: 14px;
}

.footB ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footB a {
    display: block;
    padding: 5px;
    color: inherit;
    font-size: 12px;
    text-decoration: none;
}

.footB a:hover {
    background-color: rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
    .footB {
        display: flex;
    }
    
    .footB div {
        flex: 1;
    }
    
    .footB div:not(:first-child) {
        margin-left: 40px;
    }
}

/* フッターC: コピーライト */
.footC { 
    font-size: 12px;
    text-align: center;
    font-family: 'Montserrat', sans-sefif;
}

/* フッターD: SNSメニュー */
.footD {
    margin-top: 20px;
}

.footD ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footD a {
    display: block;
    margin-right: 8px;
    padding: 0;
    color: inherit;
    font-size: 16px;
    text-decoration: none;
    border: solid 1px currentColor;
    width: 2em;
    line-height: 2em;
    border-radius: 50%;
    text-align: center;
}

.footD a:hover { 
    background-color: rgba(0,0,0,0.3)
}

/***********/
/* 地図掲載 */
/***********/
.location iframe {
    width: 100%;
    height: 400px;
    margin-bottom: -10px;
    vetical-align: bottom;
}

.location h2 {
    margin: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #006a95;
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
}

/*******************************/
/* スマホ以外は電話番号のリンク削除 */
/*******************************/
@media (min-width: 751px) {
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}
}


/**************************/
/* ページ遷移時アニメーション */
/**************************/
#page-animate::before {
 content: '';
 position: fixed;
 top: 0;
 width: 100%;
 height: 100%;
 background-color: #3e8bb5;
 z-index: 9999;
 pointer-events: none;
 right: 100%;
 -webkit-transition: right 0.8s cubic-bezier(0.4, 0, 0.2, 1);
 transition: right 0.8s cubic-bezier(0.4, 0, 0.2, 1);

}
 #page-animate::after {
 content: '';
 position: fixed;
 top: 0;
 width: 100%;
 height: 100%;
 background-color: #3e8bb5;
 z-index: 9999;
 pointer-events: none;
 left: 100%;
 -webkit-transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
 transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
 #page-animate.is-slide-in::before {
 right: 0;
}
 #page-animate.is-slide::after {
 left: 0;
}

.mt20 {
    margin-top: 20px;
}
.mt30 {
    margin-top: 30px;
}
.mb20 {
    margin-bottom: 20px;
}
.mb30 {
    margin-bottom: 30px;
}

/** カルーセルスライダー表示エリア） **/
.slide_area {
    margin-top: 40px;
    margin-bottom: 60px;
	font-family: "Noto Sans JP", 'メイリオ', 'Hiragino Kaku Gothic Pro', sans-serif;
}
.slide_area .media-container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 0px;
    text-align: center;
}

/** カルーセルスライダー設定（slick） **/
/*左右の矢印の色を変える*/
.slick-prev:before,
.slick-next:before {
    color: #000;
}
/*左右の矢印の位置を変える*/
.slick-next {
/*    right: 20px; */
    z-index: 99;
}
.slick-prev {
/*     left: 15px; */
    z-index: 100;
}
/*スライド数のドットの色を変える*/
.slick-dots li.slick-active button:before,
.slick-dots li button:before {
    color: #fff;
}
/*スライド画像の横幅可変*/
img {
    max-width: 100%;
    height: auto;
}
.data-slick {
    padding: 0;
    margin: 0;
}

.data-slick { padding: 0;}
.data-slick img { width: 100%;}
.data-slick div { margin: 0 0px;}

/* メディア風バナーレイアウト */
.media-link {
    display: block;
    margin-left: 20px;
    margin-bottom: 20px;
    position: relative;
}

.media-list .lower-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: rgba(0,106,149,0.5);
    padding: 12px;
    box-sizing: border-box;
    color: #ffffff;
    overflow: hidden;
    text-align: left;
}

.media-list .lower-box .tag {
    display: inline-block;
}

.media-list .lower-box .date {
    display: inline-block;
    font-size: 12px;
    position: relative;
    color: #fff;
    top: 1px;
}

.media-list .lower-box .title {
    margin-top: 5px;
    line-height: 1.4;
    font-size: 0.8rem;
}

/* 記事バナーバッジ */
.tag {
  display: inline-block;
  line-height: 20px;
  font-size: 10px;
  letter-spacing: 0.04em;
  padding: 0 5px;
  border-radius: 2px; }
  .tag.tag-info {
    background-color: #007eb1; }
  .tag.tag-news {
    background-color: #F17161; }
  .tag.tag-event {
    background-color: #dc4473; }


/* コンテンツページ：記事 */
.post .container {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 100px 10px;
	font-family: "Noto Sans JP", 'メイリオ', 'Hiragino Kaku Gothic Pro', sans-serif;
}

/*.post h1 {
    padding-left: 0.5rem;
    border-left: solid 0.75rem #BF6A7A;
    font-size: 2rem;
} */

.post p {
    font-size: 1rem;
    line-height: 2;
}

.post img {
    max-width: 100%;
}

/* コンテンツページ：パンくずリスト */
.bread ol {
    display: flex;
    margin-top: 0;
    padding: 0;
    list-style: none;
}

.bread a {
    display: block;
    padding: 5px;
    color: inherit;
    font-size: 0.875rem;
    text-decoration: none;
}

.bread a::after {
    margin-left: 10px;
    content: '\f054';
    font-family: 'FontAwesome';
    opacity: 0.3;
}

.bread a:hover {
    background-color: rgba(0,106,149,0.3);
}




.msr_newslist02 {
    margin: 0 auto;
    width: 80%;
}
.msr_newslist02 li {
    list-style: none;
  font-size: 14px;
  background-color: #F3F3F3;
}
.msr_newslist02 li:nth-child(odd) {
  background-color: #E6E6E6;
}
.msr_newslist02 li a {
  box-sizing: border-box;
  color: #333333;
  display: table;
  padding: 10px;
  text-decoration: none;
  transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  width: 100%;
}
.msr_newslist02 li a:hover {
  text-decoration: none;
  background-color: #FDFDFD;
}

.msr_newslist02 li div {
  display: table-cell;
  width: 144px;
}
.msr_newslist02 li p {
  display: table-cell;
  padding-left: 20px;
  vertical-align: middle;
}

/* 時間の設定 */
.msr_newslist02 li time {
  display: table-cell;
  vertical-align: top;
  width: 90px;
}

/* カテゴリの設定 */
.msr_newslist02 li .cat01,
.msr_newslist02 li .cat02,
.msr_newslist02 li .cat03 {
  background-color: #F17161;
  border-radius: 2px;
  color: #FFFFFF;
  font-size: 9px;
  padding: 0 2px;
  text-align: center;
  width: 50px;
}
.msr_newslist02 li .cat02 {
  background-color: #007eb1;
}
.msr_newslist02 li .cat03 {
  background-color: #dc4473;
}

@media (max-width: 751px) {
    .msr_newslist02 {
        margin: 0 auto 0 -20px;
        width: 90%;
    }
    .msr_newslist02 li {
        font-size: 10px;
    }
.msr_newslist02 li time {
    width: 70px;
    }
    .msr_newslist02 li div {
        width: 110px;
    }
}


/* Table */
.fee {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 10px;
}
    .table-wrapper {
    overflow: auto;
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 10px;
    }
    .table-wrapper table{
    width:100%;
    }
    .table-wrapper::-webkit-scrollbar{
    height: 5px;
    }
    .table-wrapper::-webkit-scrollbar-track{
    background: #F1F1F1;
    }
    .table-wrapper::-webkit-scrollbar-thumb {
    background: #d6d6d6;
    }
    .table-wrapper td, .table-wrapper th{
    white-space: nowrap;
    }

	table {
		margin: 0 0 0.5rem 0;
		width: 100%;
	}

		table tbody tr {
			border: solid 1px;
			border-left: 0;
			border-right: 0;
		}

		table td {
			padding: 0.75rem 0.75rem;
		}

		table th {
			font-size: 1.8rem;
			font-weight: 600;
			padding: 0 0.75rem 0.75rem 0.75rem;
			text-align: left;
		}

		table thead {
			border-bottom: solid 2px;
		}

		table tfoot {
			border-top: solid 2px;
		}

		table.alt {
			border-collapse: separate;
		}

			table.alt tbody tr td {
				border: solid 1px;
				border-left-width: 0;
				border-top-width: 0;
			}

				table.alt tbody tr td:first-child {
					border-left-width: 1px;
				}

			table.alt tbody tr:first-child td {
				border-top-width: 1px;
			}

			table.alt thead {
				border-bottom: 0;
			}

			table.alt tfoot {
				border-top: 0;
			}

	table tbody tr {
		border-color: rgba(0, 106, 149, 0.25);
	}

		table tbody tr:nth-child(2n + 1) {
			background-color: rgba(0, 106, 149, 0.075);
		}

	table th {
		color: #3f3f3f;
	}

	table thead {
		border-bottom-color: rgba(0, 106, 149, 0.25);
	}

	table tfoot {
		border-top-color: rgba(0, 106, 149, 0.25);
	}

	table.alt tbody tr td {
		border-color: rgba(0, 106, 149, 0.25);
	}


/* トップページ各種主要項目バナー */
.listB .container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 30px auto;
}

.listB article {
    flex: 1 1 384px;
    display: flex;
}

.listB a {
    flex: 1;
    margin: 10px;
    display: flex;
    border: solid 1px #ddd;
    color: inherit;
    text-decoration: none;
}

.listB a:hover {
    opacity: 0.8;
}

.listB .photo {
    flex: 2;
    min-height: 0;
    background-position: center;
    background-size: cover;
}

.listB .text {
    flex: 3;
    margin: 10px;
}

.listB h2 {
    font-size: 18px;
}

.listB p {
    font-size: 14px;
    opacity: 0.8;
}

@media (max-width: 384px) {
    .listB .photo {
        flex: 1;
    }
    
    .listB p {
        display: none;
    }
}

/*** スマホ（767px以下）の場合は改行を無効にする ***/
@media screen and (max-width: 767px){
.br-pc {display: none; }
}
