@charset "utf-8";

/* ========================================================
   for ＰＣ　1200px～
===========================================================*/

/* ------------------------------------------
  reset
--------------------------------------------- */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
hr,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
main,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after {
    content: "";
    content: none;
}

q:before,
q:after {
    content: "";
    content: none;
}

abbr {
    text-decoration: none;
}

mark {
    background: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption,
th {
    text-align: left;
}

img {
    vertical-align: top;
}

hr {
    height: 0;
}

html {
    font-size: 62.5%;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    font-size: 14px;
    line-height: 1.75;
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    background: #fff;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    word-break: break-all;
    letter-spacing: 0.5px;
    -webkit-font-feature-settings: "palt";
    -moz-font-feature-settings: "palt";
    font-feature-settings: "palt";
    padding-top: 310px;
}

a {
    color: #333;
    text-decoration: none;
}

/*a[href^="tel"] {
    color: #fff;
    pointer-events: none;
}*/

a:hover {
    opacity: 0.75;
    -webkit-transition: all 0.3s 0s ease;
    transition: all 0.3s 0s ease;
}

.pc-hide {
    display: none !important;
}

.pc-only {
 display: block !important;
}

.tb-only {
  display: none !important;
}

.sp-only {
    display: none !important;
}

.text-link {
    color: #000;
}

.text-red {
    color: #f34;
}

.strong {
    font-weight: 700;
}

.no-border {
    border: none !important;
}

.align-center {
    text-align: center;
}

.align-right {
    text-align: right;
}

.img-full img {
    width: 100%;
    height: auto;
}


/* ------------------------------------------
  ページの背景色
--------------------------------------------- */
.bg-white {/*背景：白*/
    background: #fff;
}
.bg-gray {/*背景：グレー*/
    background: #f0f0f0;
}

#page-top {
    display: block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

#page-top:hover {
    opacity: 0.6;
    cursor: pointer;
    -webkit-transition: all 0.3s 0s ease;
    transition: all 0.3s 0s ease;
}

#page-bottom {
    display: block;
    position: fixed;
    bottom: 300px;
    right: 0;
    z-index: 100;
}

#page-bottom:hover {
    opacity: 0.6;
    cursor: pointer;
    -webkit-transition: all 0.3s 0s ease;
    transition: all 0.3s 0s ease;
}

#page-bottom img {
    width: 180px;
    height: auto;
}


.pc_mb20 {/*ＰＣの場合、下に20px分空ける*/
	 margin-bottom: 20px;
}

.common-lead-text {
    text-align: center;
    padding-bottom: 40px;
}

.common-border-box {
    padding: 20px 30px;
    border: 1px solid #ddd;
    background: #fff;
}

.anchor {/*同一ページ内リンクのときズレを解消*/
	display: block;
    padding-top: 460px;
    margin-top: -460px;
}


/* ------------------------------------------
  header
--------------------------------------------- */
/*ヘッダーと下部との境界線*/
.header {
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

/*ヘッダーの上部のライン*/
.header:before {
    content: "";
    display: block;
    width: 100%;
    height: 10px;
    background: #191970;
}

/*左端（ロゴ）の部分*/
.header .logo {
	display: inline-flex;
	top: 20px;
	left: 20px;
	position: absolute;
	z-index: 999;
	opacity: 1;
}
.header .logo img {
	width: 200px;
    height: auto;
}
.header .header-inner {
    display: flex;
    background: #fff;
    justify-content: space-between;
    align-items: center;
    height: 300px;
    padding: 0;
}

/*ヘッダーのメニュー（PCのみ）*/
.gnav {
    height: 60px;
    display: flex;
    justify-content: space-between;
    background: #fff;
	position: absolute;
	bottom: 1px;
	right: 5px;
	position: absolute;
}
.gnav > ul {
    display: flex;
    margin-left: auto;
}
.gnav > ul > li:hover:after {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    background: #191970;
    position: relative;
    bottom: 9px;
	width: 90%;
	margin: auto;
}
.gnav > ul > li > a {
	width: 130px;
    height: 60px;
    text-decoration: none;
    display: flex;
	align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    line-height: 1;
    text-align: center;
    position: relative;
    border-left: 1px dotted #191970;
}
.gnav > ul > li a:hover {/*マウスオーバー時、メニューの文字色はそのまま*/
    opacity: 1;
}

/*ヘッダーのサブメニュー（PCのみ）*/
.gnav .megamenu {
    -webkit-transition: all 0.5s 0s ease;
    transition: all 0.5s 0s ease;
    -webkit-transform: translateY(-200%);
    transform: translateY(-200%);
    position: absolute;
    top: 50px;
    left: 45px;
    z-index: -1;
    width: 300px;
    background: #f0f0f0;
    padding: 10px 0;
    list-style: none;
    box-sizing: border-box;
    box-shadow: 0px 3px 2px -2px rgba(0, 0, 0, 0.35);
    -webkit-box-shadow: 0px 3px 2px -2px rgba(0, 0, 0, 0.35);
    -moz-box-shadow: 0px 3px 2px -2px rgba(0, 0, 0, 0.35);
}
.gnav .has-megamenu:hover .megamenu {/*サブメニューが出現したときの上部メニューとの間隔*/
    -webkit-transform: translateY(2%);
    transform: translateY(2%);
}
.gnav .megamenu .megamenu-inner {/*サブメニュー全体の横幅*/
    width: 300px;
    margin: 0px auto;
    display: list-item;
    justify-content: space-between;
    list-style: none;
}
.gnav .megamenu .megamenu-inner li {}
.gnav .megamenu .megamenu-inner li a {/*サブメニューの枠サイズ*/
	position: relative;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    width: 100%;
    height: 40px;
    border-radius: 10px;
	margin: 5px auto;
}
.gnav .megamenu .megamenu-inner li a span {/*サブメニュー左の〇とメニュー名との間隔*/
	text-align: center;
}
.gnav .megamenu .megamenu-inner li a span:before {/*サブメニュー左の〇部分*/
    content: "";
    display: block;
    width: 40px;
    height: 40px;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    background: #191970;
}
.gnav .megamenu .megamenu-inner li a span:after {/*サブメニュー左の〇内の＞部分*/
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 10px;
}


/* ------------------------------------------
  footer
--------------------------------------------- */
/*ページ下部*/
.footer {
    background: #e3e3e3;
    color: #333;
}

/*ページ下部の内側の設定*/
.footer-inner {
    width: 100%;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-left {
	width: 120px;
}
.footer-left .footer-logo {
	opacity: 1;
}
.footer-left .footer-logo img {
	width: 100%;
}

.footer-address {/*ページ下部のロゴと組織情報との間隔*/
    padding-top: 22px;
}

.footer-right {/*ページ下部のメニューの上余白*/
    padding-top: 10px;
}

.footer-right ul {
    display: flex;
    flex-wrap: wrap;
}

.footer-right ul > li:nth-of-type(1) {/*ページ下部のメニューの幅：１例目*/
    width: 150px;
}
.footer-right ul > li:nth-of-type(2) {/*ページ下部のメニューの幅：２例目*/
    width: 150px;
}
.footer-right ul > li:nth-of-type(3) {/*ページ下部のメニューの幅：３例目*/
    width: 150px;
}
.footer-right ul > li:nth-of-type(4) {/*ページ下部のメニューの幅：４例目*/
    width: 150px;
}
.footer-right ul > li:nth-of-type(5) {/*ページ下部のメニューの幅：５例目*/
    width: 150px;
}

.footer-right ul li a {/*ページ下部のメニュー部分*/
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 18px;
    color: #333;
}

.footer-right ul li a::before {/*ページ下部のメニュー左の＞部分*/
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #191970;
    border-right: 2px solid #191970;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 13px;
    left: 0;
}

.footer-copyright {/*ページ下部のコピーライト*/
    width: 100%;
    text-align: center;
    font-size: 12px;
    border-top: 1px solid #fff;
    margin-top: 30px;
    padding-top: 30px;
}


/* ------------------------------------------
  パンくずリスト
--------------------------------------------- */
.breadcrumb {
    background: #f0f0f0;
    padding: 0 40px;
	margin-top: 5px;
}
.breadcrumb ul {
    max-width: 1000px;
    margin: 0 auto;
    height: 40px;
    font-size: 12px;
    display: flex;
    align-items: center;
}
.breadcrumb ul li span {
    padding: 0 5px;
}


/* ------------------------------------------
  ボタン
--------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: none;
    text-decoration: none;
    width: 150px;
    height: 30px;
    border-radius: 10px;
    background: #191970;
    color: #fff;
    font-size: 12px;
	position: relative;
}
.btn:after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 13px;
    right: 15px;
}

.btn-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 60px;
}


/* ------------------------------------------
  各ページのタイトル
--------------------------------------------- */
.page_title {/*メインタイトル*/
    width: 100%;
    height: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
	position: relative;
	top: 5px;
}
.page_title .head-lv1 {
	text-shadow: none;
	text-align: right;
	position: absolute;
	bottom: 0;
	right: 50px;
	line-height: 0.5;
	font-size: 80px;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	color: #fff;
}
.page_title .head-lv1 span {
	color: #fff;
	line-height: 3;
}
.page_title.title_mv {/*タイトルの背景*/
    background: url("../images/title_mv.png") no-repeat center;
    background-size: cover;
}


/* ------------------------------------------
  各ページのサブタイトル
--------------------------------------------- */
.head_line {/*サブタイトル*/
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    position: relative;
	height: 50px;
	margin-bottom: 50px;
}
.head_line:after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #191970;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    margin-left: -30px;
    bottom: 5px;
}


/* ------------------------------------------
  タイトル、項目の文字
--------------------------------------------- */
.head-lv1 {
    font-size: 32px;
    font-weight: 500;
    color: #555;
    letter-spacing: 2px;
    line-height: 1;
    text-align: center;
    text-shadow: 1px 1px 5px rgba(255, 255, 255, 0.5);
}
.head-lv1 span {
    font-size: 18px;
    color: #191970;
}

.head-lv2 {
    font-size: 24px;
    font-weight: 500;
    font-family: "M PLUS Rounded 1c";
    letter-spacing: 0.5px;
    text-align: center;
    position: relative;
    padding-bottom: 45px;
    
}
.head-lv2 span {
    font-size: 13px;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 1px;
    color: #191970;
    display: block;
}

.head-lv3 {
    font-size: 18px;
    color: #191970;
    font-weight: 700;
    padding-bottom: 5px;
    margin-bottom: 15px;
    border-bottom: 1px solid;
    border-bottom-style: dashed;
}

.head-lv4 {/*フォームなどエラータイトル*/
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 15px;
    padding-left: 20px;
    letter-spacing: 1px;
    position: relative;
    color: #191970;
}
.head-lv4:before {
    content: "";
    display: block;
    position: absolute;
    background: #191970;
    width: 8px;
    height: 20px;
    top: 9px;
    left: 0;
}


/* ------------------------------------------
  ブロック、インナー
--------------------------------------------- */
.block {
    width: 100%;
    padding: 0 40px;
}

.inner {
    width: 100%;
    padding: 50px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.inner_pc {
    width: 100%;
    padding: 0px 0px 15px 0px;
    max-width: 1200px;
    margin: 0 auto;
}

.inner_top_img {
    width: 100%;
    padding: 5px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.inner.mw-800 {
    max-width: 800px !important;
}

.block .inner:last-child {
    padding: 50px 0 90px;
}

.block .inner + .inner {
    margin-top: -50px;
}

.border-top {
    border-top: 1px solid #e5e2e2;
}


/* ------------------------------------------
  BOXサイズ
--------------------------------------------- */
.col {
    max-width: 920px;
	margin-left: auto;
	margin-right: auto;
}
.col:after {
    content: "";
    clear: both;
    display: block;
}
.col [class*=col-] {
    float: left;
    padding: 0 10px 10px;
}
.col .col-1-1 {/*全体の全部：100%*/
    width: 100%;
}
.col .col-2-1 {/*全体の半分：50%*/
    width: 50%;
}
.col .col-3-1 {/*全体の1/3：33%*/
    width: 33.33333%;
}
.col .col-3-2 {/*全体の2/3：66%*/
    width: 66.66667%;
}


/* ------------------------------------------
  アコーディオンメニュー
--------------------------------------------- */
.mod-accordion {}

.mod-accordion:after,
.mod-accordion:before {
    content: "";
    display: block;
    width: 12px;
    height: 2px;
    border: 0;
    background: #191970;
    position: absolute;
    top: 50%;
    right: 25px;
    margin-top: -2px -webkit-transition: all 0.3s 0s ease;
    transition: all 0.3s 0s ease;
}

.mod-accordion:after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.mod-accordion + .accordion-contents {
    display: none;
    background: #fff;
}

.mod-accordion.is-open:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.mod-accordion.is-open:before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.mod-accordion.is-open + .accordion-contents {
    display: block;
    background: #fff;
}

.megamenu-btn {}


/* ------------------------------------------
  トップ：バナー
--------------------------------------------- */
.top_banner {
	position: relative;
	display: inline-flex;
    height: 300px;
	width: 100%;
}
.top_banner img {
	width: 100%;
	max-height: 300px;
}
.top_banner p {
	position: absolute;
	color: #fff;
	left: 20px;
	right: 20px;
	bottom: 30px;
	font-size: 33px;
	font-family: serif;
	font-weight: 600;
}
.top_banner span {
	position: absolute;
	color: #fff;
	left: 20px;
	bottom: 10px;
	font-size: 20px;
	font-family: "Times New Roman", Times, "serif";
}
.top_banner .teikyou {
	position: absolute;
	color: #fff;
	right: 15px;
	bottom: 80px;
	font-size: 15px;
	font-weight: 600;
}
.top_banner .teikyou::after {
	content: "つながろう木曽様から写真を提供いただきました";
}


/* ------------------------------------------
  トップ：スライドショー：2022.01.20 停止
--------------------------------------------- */
.top-mv {
    width: 100%;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
    position: relative;
}
.top-mv .top-mv-bg {
    width: 100%;
    height: 100%;
	padding: 5px;
}
.top-lead {/*スライドショー下のキャッチ部分*/
    background: #191970;
    color: #fff;
    text-align: center;
    padding: 5px;
    font-size: 15px;
    letter-spacing: 2px;
}


/* ------------------------------------------
  トップ：お知らせ
--------------------------------------------- */
/*お知らせ：全体*/
.top-news {
    padding: 0px;
}
.top-news .news-list {/*お知らせの幅*/
    max-width: 700px;
    margin: 0 auto;
}
.top-news .news-list li {/*お知らせの１項目分*/
    display: flex;
    padding: 28px 0 28px 70px;
    position: relative;
    border-bottom: 1px dashed #999;
}
.top-news .news-list li:first-child {
    padding-top: 20px;
}
.top-news .news-list li:last-child {/*お知らせの最終行には下線なし*/
    border: none;
}

/* お知らせの「NEW」 */
.top-news .news-list li .news-new {
    position: absolute;
    left: 0;
    top: 30px;
}
.top-news .news-list li .news-new span {
    display: block;
    background: #f15757;
    width: 40px;
    height: 18px;
    color: #fff;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    border-radius: 4px;
}
.top-news .news-list li:first-child .news-new {
    top: 22px;
}

/*お知らせの日付 */
.top-news .news-list li .news-date {
    width: 115px;
}
.top-news .news-list li .news-content {/*日付と内容との余白*/
    width: calc(100% - 115px);
}
.top-news .news-list li .news-content p {/*文字色：赤茶*/
    color: #C7410E;
}

/*リンク設定*/
.top-news .news-list li a {
    color: #00468C;
    text-decoration: underline;
}

/*お知らせ一覧のPDFファイルの画像*/
.top-news .news-list li a.news-pdf:after {
    content: '';
    display: inline-block;
    background: url(../images/icon-news-pdf.svg) no-repeat;
    background-size: 16px;
    width: 16px;
    height: 16px;
    position: relative;
    top: 3px;
    margin-left: 8px;
}

/*PDFファイルの画像のみ*/
.pdf:after {
    content: '';
    display: inline-block;
    background: url(../images/icon-news-pdf.svg) no-repeat;
    background-size: 16px;
    width: 16px;
    height: 16px;
    position: relative;
    top: 3px;
    margin-left: 8px;
}

/*PDFファイルのダウンロードボタン（定款など）*/
.btn_dl_pdf {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: none;
    text-decoration: none;
    width: 180px;
    height: 50px;
    border-radius: 10px;
    background: #191970;
    color: #fff;
    font-size: 12px;
	line-height: 1.3;
	position: relative;
}
.btn_dl_pdf:after {
    content: '';
    display: inline-block;
    background: url(../images/pdf_icon.png) no-repeat;
    background-size: 30px;
    width: 30px;
    height: 40px;
    position: relative;
    top: 2px;
    margin-left: 15px;
}

/*WORDファイルのダウンロードボタン（入会申込書など）*/
.btn_dl_word {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: none;
    text-decoration: none;
    width: 180px;
    height: 50px;
    border-radius: 10px;
    background: #191970;
    color: #fff;
    font-size: 12px;
	line-height: 1.3;
	position: relative;
}
.btn_dl_word:after {
    content: '';
    display: inline-block;
    background: url(../images/word_icon.png) no-repeat;
    background-size: 30px;
    width: 30px;
    height: 35px;
    position: relative;
    top: 3px;
    margin-left: 15px;
}


/*別ウィンドウの画像のみ*/
.window:after {
    content: '';
    display: inline-block;
    background: url(../images/icon-window.svg) no-repeat;
    background-size: 16px;
    width: 16px;
    height: 16px;
    position: relative;
    top: 3px;
    margin-left: 8px;
}

/*NEWの画像のみ*/
.new:before{
    content: 'New';
	display: inline-block;
    position: relative;
	right: 8px;
	margin-left: 15px;
    background: #f15757;
    width: 40px;
    height: 18px;
    color: #fff;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    border-radius: 4px;
}
/*NEWなしの場合*/
.new-no:before{
    content: '';
	display: inline-block;
    position: relative;
	right: 8px;
	margin-left: 15px;
    width: 40px;
    height: 18px;
    line-height: 18px;
}

/*ボタン要素の囲み*/
.info-btn-wrap {
    display: flex;
    justify-content: flex-end;
	z-index: 1;
}


/*各項目で利用できるポイント的な見出し：角丸*/
.point_midashi {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: none;
    text-decoration: none;
    width: 100px;
    height: 25px;
	margin-bottom: 5px;
    border-radius: 12px;
    background: #191970;
    color: #fff;
    font-size: 12px;
}

/*各項目で利用できるポイント的な見出し：角丸*/
.point_midashi2 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: none;
    text-decoration: none;
    width: 200px;
    height: 25px;
	margin-bottom: 5px;
    border-radius: 12px;
    background: #191970;
    color: #fff;
    font-size: 12px;
}


/* ------------------------------------------
  お知らせ
--------------------------------------------- */
.news {}

.news-box {
    border-bottom: 1px dotted #ccc;
    padding: 30px 0;
}
.news-list > li:last-child {
    border-bottom: 1px dotted #ccc;
}
.news-box:last-of-type {
    border: none;
}
.news-box:first-of-type {
    padding-top: 0;
}
.news-box .news-summary {
    display: flex;
    padding-bottom: 20px;
}
.news-box .news-summary li {
    padding-right: 20px;
}
.news-box .head-lv3 {
	position: relative;
	border-bottom-style: none;
    color: #555;
    font-weight: 500;
	padding-left: 20px;
}
.news-box .head-lv3:before {
    content: "";
    display: block;
    position: absolute;
    background: #191970;
    width: 8px;
    height: 20px;
    top: 4px;
    left: 0;
}
.news-box .news-content {
    line-height: 1.5;
}
.news-box .news-content p {
    padding-bottom: 10px;
	padding-left: 20px;
}
.news-box .news-content img {
    max-width: 100%;
    height: auto;
}


/* ------------------------------------------
  リストスタイル
--------------------------------------------- */
.mod-list {
    display: flex;
    flex-wrap: wrap;
}
.mod-list dt,.mod-list dd {
    border-bottom: 1px dotted #ccc;
    padding: 15px 0;
}
.mod-list dt:first-of-type,.mod-list dd:first-of-type {
    padding-top: 0;
}
.mod-list dt:last-of-type,.mod-list dd:last-of-type {
    padding-bottom: 0;
    border: none;
}
.mod-list dt {
    width: 150px;
}
.mod-list dd {
    width: calc(100% - 150px);
}
.mod-list dd ul {
    display: flex;
    flex-wrap: wrap;
}
.mod-list dd ul li {
    padding-right: 30px;
}


/* ------------------------------------------
  リストスタイル：連絡先など項目が色付き
--------------------------------------------- */
.common-list {
    display: flex;
    flex-wrap: wrap
}
.common-list dt {
    width: 60px;
    position: relative;
    color: #191970;
	font-weight: bold;
}
.common-list dt:after {
    content: ":";
    display: block;
    width: 2px;
    height: 14px;
    position: absolute;
    right: 10px;
    top: -2px;
    color: #191970;
	font-weight: bold;
}
.common-list dd {
    width: calc(100% - 60px);
    padding-bottom: 10px;
}

.common-list .access-list dt {/*連絡先*/
    width: 60px;
}
.common-list .access-list dd {
    width: calc(100% - 60px);
}


/* ------------------------------------------
  adobe readerの表示
--------------------------------------------- */
.adobe_table {
	display: block;
	width: 75%;
	margin-top: 0px;
	margin-bottom: 30px;
	margin-left: auto;
	margin-right: auto;
	padding: 20px;
	border: solid 1px #AAAAAA;
	text-align: left;
	font-size: 15px;
}
.adobe_table a {
	display: block;
	width: 100%;
	text-align: center;
	margin-top: 20px;
}


/* ------------------------------------------
  会員・役員ページ
--------------------------------------------- */
.border-bottom {/*リストの各項目に下線をつける*/
    border-bottom: 1px dotted #ccc;
	padding: 10px;
}


/* ------------------------------------------
  ドットの下線
--------------------------------------------- */
.head-dot {
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 20px;
    letter-spacing: 1px;
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}

.head-dot:after {
    content: "";
    display: block;
    width: 63px;
    height: 3px;
    background: url(../images/title-underline.svg) no-repeat;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -31px;
}



/* ========================================================
   for タブレット　600px～1199px
===========================================================*/
@media screen and (min-width:600px) and (max-width:1199px) {
body {
	padding-top: 200px;
}

a:hover {
    opacity: 1;
}

.pc-hide {
    display: block !important;
}
.pc-hide.btn {
    display: flex !important;
}

.pc-only {
    display: none !important;
}

.sp-hide {
    display: none !important;
}

.tb-display {
    display: block !important;
}

.tb-hide {
    display: none !important;
}

.tb-only {/*タブレットの時のみ表示*/
    display: block !important;
}

	
#page-top img {
    width: 75px;
    height: 75px;
}
	

#page-bottom {
    display: block;
    position: fixed;
    bottom: 200px;
    right: 0;
    z-index: 100;
}	
#page-bottom img {
    width: 175px;
    height: auto;
}
	

/* ------------------------------------------
  header
--------------------------------------------- */
/*ヘッダーの上部のライン*/
.header:before {
	content: none;
}

/*左端（ロゴ）の部分*/
.header .logo {
	display: inline-flex;
	top: 10px;
	left: 10px;
	position: absolute;
	z-index: 999;
}
.header .logo img {
	width: 120px;
    height: auto;
}
.header .header-inner {
    display: block;
    height: 200px;
    min-width: 0;
    padding: 0;
}

/*ヘッダーのメニュー（スマホのみ）*/	
.gnav {
    border-bottom: none;
    -webkit-transition: all 0.3s 0s ease;
    transition: all 0.3s 0s ease;
    position: relative;
    z-index: -1;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    height: auto;
    min-width: 0;
	right: 0;
    background: #f6f6f6;
	-ms-overflow-style:none;/*スクロールバーは非表示*/
	margin-left: 0px;
}
.gnav > ul {
    display: block;
    margin-left: 0;
	margin-top: 20px;
    width: 100%;
}
.gnav > ul li {
    display: block;
    margin-left: 0;
    border-bottom: 1px solid #e2dfdf;
    font-size: 14px;
}
.gnav > ul li:hover:after {
    content: none;
}
.gnav ul li a {
    height: 52px !important;
	width: 100%;
    padding: 20px 30px;
    text-align: left;
    display: block;
    position: relative;
    border-left: none;
}
.gnav ul li a::after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-top: 2px solid #191970;
    border-right: 2px solid #191970;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 24px;
    right: 30px;
}
.gnav .megamenu {
    display: none;
}

.menu-open .gnav {
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, -20px, 0);
}

.top-menu-banner-title {
    position: relative;
    padding: 15px 30px;
    text-align: left;
    display: block;
}
.top-menu-banner li:last-child {
    border: none;
}
	
/*ハンバーガーメニュー*/
.header .menu-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: #191970;
    width: 60px;
    height: 60px;
    cursor: pointer;
    -webkit-transition: all 0.3s 0s ease;
    transition: all 0.3s 0s ease;
	z-index: 999;
}
.header .menu-btn span {
    position: absolute;
    right: 15px;
    width: 30px;
    height: 3px;
    background-color: #fff;
    display: inline-block;
    -webkit-transition: all 0.3s 0s ease;
    transition: all 0.3s 0s ease;
}
.header .menu-btn span:nth-of-type(1) {
    top: 19px;
}
.header .menu-btn span:nth-of-type(2) {
    top: 28px;
}
.header .menu-btn span:nth-of-type(3) {
    bottom: 20px;
}
.header .menu-btn.is-open span:nth-of-type(1) {
    -webkit-animation: open-menu-bar01 0.6s forwards;
    animation: open-menu-bar01 0.6s forwards;
}
.header .menu-btn.is-open span:nth-of-type(2) {
    opacity: 0;
}
.header .menu-btn.is-open span:nth-of-type(3) {
    -webkit-animation: open-menu-bar03 0.6s forwards;
    animation: open-menu-bar03 0.6s forwards;
}
.header .menu-btn.is-close span:nth-of-type(1) {
    -webkit-animation: close-menu-bar01 0.6s forwards;
    animation: close-menu-bar01 0.6s forwards;
}
.header .menu-btn.is-close span:nth-of-type(2) {
    -webkit-transition: all 0.3s 0s ease;
    transition: all 0.3s 0s ease;
    opacity: 1;
}
.header .menu-btn.is-close span:nth-of-type(3) {
    -webkit-animation: close-menu-bar02 0.6s forwards;
    animation: close-menu-bar02 0.6s forwards;
}


/* ------------------------------------------
  パンくずリスト
--------------------------------------------- */
.breadcrumb ul {
    width: 100%;
    height: 40px;
    padding: 0 30px;
}

	
/* ------------------------------------------
  ボタン
--------------------------------------------- */	
.btn {}
	

/* ------------------------------------------
  各ページのタイトル
--------------------------------------------- */
.page_title {
    height: 180px;
}
.page_title .head-lv1 {
	text-shadow: none;
	text-align: right;
	position: absolute;
	bottom: 0;
	right: 30px;
	line-height: 0.5;
	font-size: 50px;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	color: #fff;
}
	
	
/* ------------------------------------------
  タイトル、項目の文字
--------------------------------------------- */	
.head-lv1 {
	font-size: 25px;
}
.head-lv1 span {
    font-size: 14px;
}

.head-lv2 {
    font-size: 18px;
    padding-bottom: 10px;
    margin-bottom: 30px;
}
.head-lv2 span {
	font-size: 14px;
}	
.head-lv2:after {
    width: 40px;
    height: 3px;
    margin-left: -20px;
}

.head-lv3 {
    font-size: 16px;
    padding-bottom: 8px;
}

	
/* ------------------------------------------
  ブロック、インナー
--------------------------------------------- */
.block {
    padding: 0 20px;
}

.inner {
    width: 100%;
    padding: 30px 0;
}

.inner_top_img  {
    width: 100%;
    padding: 5px 0;
}	
	
.block .inner:last-child {
    padding: 30px 0;
}

.block .inner + .inner {
    margin-top: -30px;
}
	

/* ------------------------------------------
  トップ：バナー
--------------------------------------------- */	
.top_banner {
	display: inline-flex;
    height: 200px;
}
.top_banner img {
	width: 100%;
	max-height: 200px;
}
.top_banner .teikyou {
	position: absolute;
	color: #333;
	right: 70px;
	top: 10px;
	font-size: 13px;
}

	
/* ------------------------------------------
  トップ：スライドショー：2022.01.20 停止
--------------------------------------------- */
.top-mv {
}
.top-mv img {
}
.top-lead {/*スライドショー下のキャッチ部分*/
    background: #191970;
    color: #fff;
    text-align: center;
    padding: 7px;
    font-size: 14px;
    letter-spacing: 2px;
	line-height: 1.2;
}
	

/* ------------------------------------------
  adobe readerの表示
--------------------------------------------- */
.adobe_table {
	display: none;
}
}


/* ========================================================
   for スマホ　～599px
===========================================================*/
@media screen and (max-width: 599px) {
body {
	padding-top: 150px;
}

a:hover {
	opacity: 1;
}

.pc-hide {
	display: block !important;
}
.pc-hide.btn {
	display: flex !important;
}
.pc-only {
    display: none !important;
}

.tb-display {
	display: none !important;
}
	
.tb-only {
	display: none !important;
}
	
.sp-hide {
    display: none !important;
}

.sp-only {
    display: block !important;
}

.link-more {
    padding-top: 30px;
}

#page-top img {
    width: 60px;
    height: 60px;
}

	
#page-bottom {
    display: block;
    position: fixed;
    bottom: 235px;
    right: 0;
    z-index: 100;
}	
#page-bottom img {
    width: 150px;
    height: auto;
}


.sp_mb20 {/*スマホの場合、下に20px分空ける*/
    margin-bottom: 20px;
}
	
.common-lead-text {
    padding-bottom: 30px;
}

.common-border-box {
    padding: 15px 20px;
}

.anchor {/*同一ページ内リンクのときズレを解消*/
	display: block;
    padding-top: 170px;
    margin-top: -170px;
}	


/* ------------------------------------------
  header
--------------------------------------------- */
/*ヘッダーの上部のライン*/
.header:before {
	content: none;
}	

/*左端（ロゴ）の部分*/
.header .logo {
	display: inline-flex;
	top: 5px;
	left: 5px;
	position: absolute;
	z-index: 999;
}
.header .logo img {
	width: 100px;
    height: auto;
}
.header .header-inner {
    display: block;
    height: 150px;
    min-width: 0;
    padding: 0;
}

/*ヘッダーのメニュー（スマホのみ）*/	
.gnav {
    border-bottom: none;
    -webkit-transition: all 0.3s 0s ease;
    transition: all 0.3s 0s ease;
    position: relative;
    z-index: -1;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    height: auto;
    min-width: 0;
	right: 0;
    background: #f6f6f6;
	-ms-overflow-style:none;/*スクロールバーは非表示*/
	margin-left: 0px;
}
.gnav > ul {
    display: block;
    margin-left: 0;
	margin-top: 20px;
    width: 100%;
}
.gnav > ul li {
    display: block;
    margin-left: 0;
    border-bottom: 1px solid #e2dfdf;
    font-size: 14px;
}
.gnav > ul li:hover:after {
    content: none;
}
.gnav ul li a {
    height: 52px !important;
	width: 100%;
    padding: 20px 30px;
    text-align: left;
    display: block;
    position: relative;
    border-left: none;
}
.gnav ul li a::after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-top: 2px solid #191970;
    border-right: 2px solid #191970;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 24px;
    right: 30px;
}
.gnav .megamenu {
    display: none;
}

.menu-open .gnav {
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, -20px, 0);
}

.top-menu-banner-title {
    position: relative;
    padding: 15px 30px;
    text-align: left;
    display: block;
}
.top-menu-banner li:last-child {
    border: none;
}

/*ハンバーガーメニュー*/
.header .menu-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: #191970;
    width: 60px;
    height: 60px;
    cursor: pointer;
    -webkit-transition: all 0.3s 0s ease;
    transition: all 0.3s 0s ease;
	z-index: 999;
}
.header .menu-btn span {
    position: absolute;
    right: 15px;
    width: 30px;
    height: 3px;
    background-color: #fff;
    display: inline-block;
    -webkit-transition: all 0.3s 0s ease;
    transition: all 0.3s 0s ease;
}
.header .menu-btn span:nth-of-type(1) {
    top: 19px;
}
.header .menu-btn span:nth-of-type(2) {
    top: 28px;
}
.header .menu-btn span:nth-of-type(3) {
    bottom: 20px;
}
.header .menu-btn.is-open span:nth-of-type(1) {
    -webkit-animation: open-menu-bar01 0.6s forwards;
    animation: open-menu-bar01 0.6s forwards;
}
.header .menu-btn.is-open span:nth-of-type(2) {
    opacity: 0;
}
.header .menu-btn.is-open span:nth-of-type(3) {
    -webkit-animation: open-menu-bar03 0.6s forwards;
    animation: open-menu-bar03 0.6s forwards;
}
.header .menu-btn.is-close span:nth-of-type(1) {
    -webkit-animation: close-menu-bar01 0.6s forwards;
    animation: close-menu-bar01 0.6s forwards;
}
.header .menu-btn.is-close span:nth-of-type(2) {
    -webkit-transition: all 0.3s 0s ease;
    transition: all 0.3s 0s ease;
    opacity: 1;
}
.header .menu-btn.is-close span:nth-of-type(3) {
    -webkit-animation: close-menu-bar02 0.6s forwards;
    animation: close-menu-bar02 0.6s forwards;
}

	
/* ------------------------------------------
  パンくずリスト
--------------------------------------------- */
.breadcrumb {
	width: 100%;
    padding: 0 20px;
}
.breadcrumb ul {
    width: 100%;
    height: 40px;
    padding: 0;
    font-size: 10px;
}

	
/* ------------------------------------------
  ボタン
--------------------------------------------- */
.btn {}
	
.btn-wrap {
    padding-top: 40px;
}

	
/* ------------------------------------------
  各ページのタイトル
--------------------------------------------- */
.page_title {
    height: 120px;
}
.page_title .head-lv1 {
	text-shadow: none;
	text-align: right;
	position: absolute;
	bottom: 0;
	right: 20px;
	line-height: 0.5;
	font-size: 30px;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	color: #fff;
}
	
	
/* ------------------------------------------
  各ページのサブタイトル
--------------------------------------------- */
.head_line {
	font-size: 18px;
    padding-bottom: 10px;
    margin-bottom: 30px;
}
.head_line:after {
    width: 40px;
    height: 3px;
    margin-left: -20px;
	bottom: 15px;
}

	
/* ------------------------------------------
  タイトル、項目の文字
--------------------------------------------- */	
.head-lv1 {
	font-size: 25px;
}
.head-lv1 span {
    font-size: 14px;
}

.head-lv2 {
    font-size: 18px;
    padding-bottom: 10px;
    margin-bottom: 30px;
}
.head-lv2 span {
	font-size: 14px;
}	
.head-lv2:after {
    width: 40px;
    height: 3px;
    margin-left: -20px;
}

.head-lv3 {
    font-size: 16px;
    padding-bottom: 8px;
}

	
/* ------------------------------------------
  ブロック、インナー
--------------------------------------------- */
.block {
    padding: 0 20px;
}

.inner {
    width: 100%;
    padding: 30px 0;
}
	
.inner_top_img  {
    width: 100%;
    padding: 5px 0;
}

.block .inner:last-child {
    padding: 30px 0;
}

.block .inner + .inner {
    margin-top: -30px;
}


/* ------------------------------------------
  トップ：バナー
--------------------------------------------- */
.top_banner {
	display: inline-flex;
    height: 150px;
}
.top_banner img {
	width: 100%;
	max-height: 150px;
}
.top_banner p {
	position: absolute;
	color: #fff;
	left: 20px;
	right: 20px;
	bottom: 30px;
	font-size: 22px;
	font-family: serif;
	line-height: 1;
}
.top_banner span {
	position: absolute;
	color: #fff;
	left: 20px;
	bottom: 10px;
	font-size: 15px;
	font-family: "Times New Roman", Times, "serif";
}	
.top_banner .teikyou {
	position: absolute;
	color: #333;
	right: 70px;
	top: 10px;
	font-size: 11px;
}


/* ------------------------------------------
  トップ：スライドショー：2022.01.20 停止
--------------------------------------------- */
.top-mv {
}
.top-mv img {
}
.top-lead {/*スライドショー下のキャッチ部分*/
    background: #191970;
    color: #fff;
    text-align: center;
    padding: 7px;
    font-size: 12px;
    letter-spacing: 2px;
	line-height: 1.2;
}

	
/* ------------------------------------------
  トップ：お知らせ
--------------------------------------------- */
/*お知らせ：全体*/
.top-news {
    padding: 0 20px;
}
.top-news .news-list {/*お知らせの幅*/}
.top-news .news-list li {/*お知らせの１項目分*/
    display: flex;
    flex-wrap: wrap;
    padding: 15px 0;
}
.top-news .news-list li:first-child {/*お知らせの先頭行*/
    padding-top: 0;
}
.top-news .news-list li .news-new {/*お知らせの最終行*/
    position: static;
    width: 100%;
    padding-bottom: 5px;
}

/* お知らせの「NEW」 */
.top-news .news-list li .news-new span {
    display: block;
    background: #f15757;
    width: 36px;
    height: 14px;
    color: #fff;
    font-size: 10px;
    line-height: 14px;
    text-align: center;
    border-radius: 4px;
}
.top-news .news-list li:first-child .news-new {
    top: 2px;
}
.top-news .news-list li .news-date {
    width: 100px;
}
.top-news .news-list li .news-content {
    width: calc(100% - 0px);
}
	
	
/* ------------------------------------------
  footer
--------------------------------------------- */
/*ページ下部*/
.footer {
    padding: 0;
}
	
.footer-left {
	width: 100px;
}
.footer-left .footer-logo {}
.footer-left .footer-logo img {
	width: 100%;
}


/*ページ下部の内側の設定*/
.footer-inner {
    width: 100%;
    margin: 0 auto;
    padding: 35px 30px;
    display: block;
    flex-wrap: wrap;
}

.footer-address {/*ページ下部のロゴと組織情報との間隔*/
    padding-top: 25px;
    line-height: 2;
}


.footer-right {/*ページ下部のメニューの上余白*/
    width: 100%;
    padding-top: 30px;
}

.footer-right > ul {
    display: block;
    margin: 0 -30px;
}

.footer-right > ul li {
    width: 100% !important;
    display: block;
    margin-left: 0;
    border-bottom: 1px solid #fff;
}

.footer-right > ul > li:first-child {
    border-top: 1px solid #fff;
}

.footer-right > ul li:hover:after {
    content: none;
}

.footer-right ul li > a {
    padding: 15px 30px;
    text-align: left;
    display: block;
}

.footer-right > ul > li > a::before {/*ページ下部のメニュー左の＞部分*/
    content: none;
}

.footer-right ul li > a::after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 24px;
    right: 30px;
}

.footer-right ul li a::before {
    content: none;
}

.footer-right ul li ul li:last-child {
    border: none;
}

.footer .mod-accordion:after,
.footer .mod-accordion:before {
    background: #333;
    right: 25px;
}

.footer .top-menu-banner li a {
    color: #333;
}

.footer .top-menu-banner li a::after {
    border-top: 2px solid #333;
    border-right: 2px solid #333;
}

.footer-copyright {/*ページ下部のコピーライト*/
    margin-top: 0;
    border: none;
}

	
/* ------------------------------------------
  お知らせ
--------------------------------------------- */
.news-box {
	padding: 20px 0;
}
.news-box .news-summary {
    padding-bottom: 10px;
}
.news-box .news-summary li {
    padding-right: 10px;
}
.news-box .head-lv3 {
    padding-bottom: 5px;
}
.news-box .head-lv3:before {
    width: 5px;
    height: 16px;
    top: 4px;
    left: 0;
}
.news-box .news-content p {
    padding-bottom: 10px;
}
	

/* ------------------------------------------
  リストスタイル
--------------------------------------------- */
.mod-list {
}
.mod-list dt,.mod-list dd {
}
.mod-list dt {
	width: 130px;
}
.mod-list dd {
    width: calc(100% - 130px);
}
.mod-list dd ul li {
    padding-right: 25px;
}

	
/* ------------------------------------------
  adobe readerの表示
--------------------------------------------- */
.adobe_table {
	display: none;
}

	
/* ------------------------------------------
  ドットの下線
--------------------------------------------- */
.head-dot {
	font-size: 16px;
    font-weight: 500;
    padding-bottom: 15px;
    margin-bottom: 30px;
}
    
.head-dot:after {
    width: 40px;
    height: 3px;
    bottom: 0;
    left: 50%;
    margin-left: -20px;
    background-size: 40px;
}	
	
	
/* ------------------------------------------
  改行
--------------------------------------------- */
.kaigyou:before {
	content: "\A" ;
	white-space: pre;
}
}
