.l-pages {
    background-image: url(../img/common/img-pages-bg.png);
}

.l-pages main {
    margin-top: 78px;
}

@media only screen and (max-width:768px) {
    .l-pages main {
        margin-top: 56px;
    }
}

.l-pages .l-contents {
    max-width: 1020px;
    width: 100%;
    padding: 35px 40px;
    margin: 24px auto 80px;
    background: #ffffff;
    border-radius: 24px;
}

@media only screen and (max-width:768px) {
    .l-pages .l-contents {
        padding: 16px;
        margin: 16px;
    }
}

.l-contents-items {
    margin-bottom: 24px;
}

.l-contents-items:last-child {
    margin-bottom: 24px;
}

/* --------------------------------
c-breadcrumb
----------------------------------- */
.c-breadcrumb {
    display: block;
    max-width: 1020px;
    width: 100%;
    margin:16px auto 0;
}

.c-breadcrumb a {
    text-decoration: underline;
    color: #1764AA;
}

/* --------------------------------
c-green-note
----------------------------------- */

.c-green-note {
    background: #F9FDF3;
    padding: 20px;
    letter-spacing: 2.5px;
    border-radius: 12px;
}

.c-green-note p {
    font-size: 16px;
    margin-bottom: 20px;
}

@media only screen and (max-width:768px) {
    .c-green-note p {
        font-size: 14px;
    }
    
}

.c-green-note p:last-child {
    margin-bottom: 0px;
}

.c-green-note .list-head {
    margin-bottom: 10px;
}

.c-green-note li {
    position: relative;
    list-style-type: none;
    padding-left: 16px;
}

@media only screen and (max-width:768px) {
    .c-green-note li {
        margin-bottom: 12px;
    }
}

/* --------------------------------
c-green-sort
----------------------------------- */

.c-green-sort {
    padding: 24px;
    letter-spacing: 2.5px;
    background: #F4FAF9;
    border-radius: 12px;
}

.sort-title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}
@media only screen and (max-width:768px) {
    .sort-title {
        font-size: 20px;
        margin-bottom: 16px;
    }
}

.sort-tab {
    display: grid;
    grid-template-columns: repeat(auto-fit, 50%);
    max-width: 630px;
    width: 100%;
    margin: auto;
    margin-bottom: 12px;
}
@media only screen and (max-width:768px) {
    .sort-tab {
        border: 1px solid #0168B7;
        border-radius: 4px;
    }
}

.sort-tab li {
    grid-column: 1 / 6;
    letter-spacing: 1.5px;
    padding: 10px 16px;
    border: 1px solid #0168B7;
    background: #fff;
}

.sort-tab li.active {
    color: #fff;
    background: #0168B7;
}

.sort-tab li:first-child {
    border-radius: 4px 0 0 4px;
}

.sort-tab li:last-child {
    border: 1px solid #0168B7;
    border-radius: 0 4px 4px 0;
}

@media only screen and (max-width:768px) {
    .sort-tab li {
        grid-column: auto;
        border:1px solid #0168B7;
    }
    .sort-tab li:first-child {
        border-radius: 4px 0 0 0;
    }
    .sort-tab li:nth-child(2) {
        border-radius: 0 4px 0 0;
    }
    .sort-tab li:nth-child(even) {
    }
    .sort-tab li:last-child,
    .sort-tab li:nth-last-child(2) {
    }
    .sort-tab li:nth-last-child(2) {
        border-radius: 0 0 0 4px;
    }
    .sort-tab li:last-child {
        border-radius: 0 0 4px 0;
    }
}

.sort-contents__wrap {
    display: none;
}

.sort-contents__wrap.active {
    display: block;
}

.sort-contents .items {
    display: flex;
    flex-wrap: wrap;
}

.sort-contents .items a {
    display: flex;
    justify-content: space-between;
    min-width: 125px;
    color: #0168B7;
    border-bottom: 1px solid #0168B7;
    padding: 4px 8px;
    margin-right: 21px;
    margin-bottom: 8px;
}

@media only screen and (max-width:768px) {
    .sort-contents .items a {
        width: calc((100% - 8px) / 2);
        margin-right: 8px;
        margin-bottom: 8px;
    }

    .sort-contents .items a:nth-child(even) {
        margin-right: 0px;
    }
}

.sort-contents .items a:hover {
    background: rgba(0,184,77,0.1);
}

.sort-contents .items .arrow {
    position: relative;
    margin-left: 4px;
    width: 1em;
}

.sort-contents .items .arrow:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    top: 6px;
    right: 0;
    left: 0;
    margin: 0 auto;
    border-right:1px solid #0168B7;
    border-bottom:1px solid #0168B7;
    transform: rotate(45deg);
}

/* --------------------------------
c-search
----------------------------------- */

.c-search {
    position: relative;
    width: 100%;
    height: 152px;
    border-radius: 24px;
}

@media only screen and (max-width:768px) {
    .c-search {
        height: 200px;
    }
}

.c-search__wrap {
    position: absolute;
    width: 100%;
    background: #F4FAF9;
    border-radius: 24px;
    padding: 24px;
}

.c-search.fixed .c-search__wrap {
    position: fixed;
    top: 75px;
    left: 0;
    border-radius: 0px;
}

@media only screen and (max-width:768px) {
    .c-search.fixed .c-search__wrap {
        position: fixed;
        top: 56px;
        z-index: 99;
    }
}

.c-search p {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.c-search-form {
    display: flex;
    justify-content: center;
}

@media only screen and (max-width:768px) {
    .c-search-form {
        flex-wrap: wrap;
    }
}

.c-search-input {
    width: 314px;
    border-radius: 4px;
    border: 1px solid #cccccc;
    background: #ffffff;
    padding: 13px 10px;
    margin-right: 8px;
}

.c-search-submit {
    border-radius: 8px;
    color: #fff;
    background: #0168B7;
    padding: 13px 10px;
    margin-right: 16px;
}

@media only screen and (max-width:768px) {
    .c-search-input {
        border-radius: 4px;
        width: calc(100% - 8px - 46px);
        font-size: 12px !important;
        margin-right: 8px;
    }
    
    .c-search-submit {
        border-radius: 4px;
        width: 46px;
        font-size: 12px;
        margin-right: 0px;
    }
}

.c-search-prev,
.c-search-next {
    border-radius: 8px;
    color: #fff;
    background: #1764AA;
    padding: 13px 24px;
}

@media only screen and (max-width:768px) {
    .c-search-prev,
    .c-search-next {
        border-radius: 4px;
        font-size: 12px;
        padding: 9px 19px;
        margin-top: 16px;
    }
}

.c-search-next {
    margin-right: 8px;
}


/* --------------------------------
c-table
----------------------------------- */

.c-table-list {
    display: none;
}

.c-table-list.active{
    display: block;
}

.c-table {

    padding-top: 100px;
    margin-top: -100px;

/*
    padding-top: 80px;
    margin-top: -80px;
*/

}

@media only screen and (max-width:768px) {
    .c-table {
        width: 100%;
    }
}

.c-table h3 {
    font-size: 20px;
    font-weight: bold;
    border-bottom: 1px solid #000000;
    padding: 24px 0 8px;
    margin-bottom: 16px;
}

@media only screen and (max-width:768px) {
    .c-table h3 {
        position: relative;
        margin-bottom: 40px;
    }

    .c-table h3:after {
        content: "※横スクロールしてご確認ください";
        position: absolute;
        font-size: 12px;
        font-weight: bold;
        left: 0;
        bottom: -30px;
    }
}

.c-table .table-wrap {
    overflow-x: scroll;
}

.c-table table{
    width: 940px;
	border-spacing: 0;
	border-collapse: separate;
    overflow-x: hidden;
}
.c-table table th,
.c-table table td {
	border-top: 1px solid #0168B7;
    font-size: 14px;
}
.c-table table th,
.c-table table td {
	border-left: 1px solid #ffffff;
}
.c-table table th:first-child {
	border-left: 1px solid #0168B7;
}
.c-table table th.two-row:first-child {
	border-left: 1px solid #ffffff;
}
.c-table table th.two-row:nth-child(2) {
	border-left: 1px solid #0168B7;
}
.c-table table td{
	border-left: 1px solid #0168B7;
}
.c-table table th{
	padding: 20px 16px;
    font-weight: normal;
	background: #0168B7;
	color: #FFFFFF;
}
.c-table table th.two-row {
	padding: 10px;
}
.c-table table td{
	padding: 10px;
	background: #ffffff;
}
.c-table table th:last-child,table td:last-child{
	border-right: 1px solid #0168B7;
}
.c-table table tr:last-child th,table tr:last-child td{
	border-bottom: 1px solid #0168B7;
}

@media only screen and (max-width:768px) {
	.c-table table tr:last-child th,table tr:last-child td{
		border-bottom: 1px solid #0168B7;
	}
}

/* about */

#about {
	
}

@media only screen and (max-width:768px) {
	#about {
		padding:16px 0;
	}
}

#about picture{
	width:auto;
}
#about .line01{
	font-size:20px;
}
#about .line02{
	font-size:24px;
	color:#D02621;
}
#about .list{
	margin:20px auto 0;
	display:flex;
	align-items:center;
	flex-flow: column;
	gap:20px 0;
}

#about .gimu{
	margin-bottom:1em;
}
#about .gimu a{
	font-size:18px;
	margin-bottom:1em;
	color:#00f;
}

/* kai */
#kai {
	
}

#kai .line01{
	font-size:20px;
	text-align: center;
	margin-bottom:1em;
}

#kai p.intro{
	font-size:16px;
	line-height:1.6;
	margin-bottom:1em;
}

#kai a{
	color:#0168B7;
	text-decoration: underline;
}

#kai .greeting {
	background:#1764AA;
	background-color: rgba(138, 210, 18, 0.05);
	padding:1em;
	margin-bottom:1.5em;
}

/* koukai */
#koukai {
}
#koukai .line01{
	font-size:24px;
	text-align: center;
	margin-bottom:1em;
}
#koukai h2{
	font-size:20px;
	margin-bottom:0.75em;
}
#koukai .koukai-list{
	margin:0 0 25px 0;
	padding:0;
	list-style:none;
    display: flex;
	flex-wrap: wrap;
	gap: 22px;
}
#koukai .koukai-list li{
	margin:0;
	padding:0;
	list-style:none;
	font-size:16px;
	color:#fff;
}
#koukai .koukai-list li a{
	box-sizing: border-box;
	margin:0;
	padding:0.5em 2.5em 0.5em 0.8em;
	background: #1764AA;
	width:100%;
	max-width:450px;
	height:64px;
	position: relative;
	color:#fff;
	display:flex;
	align-items: center;
}
#koukai .koukai-list li a:after{
	position:absolute;
	content: url("../img/kai/pdf.png");
	right:10px;
	bottom:15px;
}

@media only screen and (max-width:768px) {
	#koukai .koukai-list li a{
		max-width:450px;
		height:64px;
	}
}

/* consultation */

#consultation h1{
	font-size:24px;
	text-align: center;
	margin-bottom:1em;
}
@media only screen and (max-width:768px) {
	#consultation h1{
		font-size:20px;
	}
}

#consultation table{
	margin:1.5em auto 40px;
	width:100%;
	max-width: 940px;
	border-spacing: 0;
	border-collapse: separate;
	overflow-x: hidden;
}
#consultation table th,
#consultation table td {
	border: 1px solid #0168B7;
	font-size: 16px;
}
#consultation table th,
#consultation table td {
	border: 1px solid #0168B7;
}
#consultation table th:first-child {
	border: 1px solid #0168B7;
	text-align: center;
}
#consultation table tr td.area  {
	text-align: center;
}
#consultation table td{
	border-left: 1px solid #0168B7;
}
#consultation table th{
	padding: 20px 18px;
    font-weight: normal;
	background: #0168B7;
	color: #FFFFFF;
}
#consultation table td{
	padding: 18px;
	background: #ffffff;
}
#consultation table th:last-child,table td:last-child{
	border-right: 1px solid #0168B7;
}
#consultation table tr:last-child th,table tr:last-child td{
	border-bottom: 1px solid #0168B7;
}

	
/* soudan */

#soudan .soudan-list{
	margin:20px auto 0;
	display:flex;
	align-items:center;
	flex-flow: column;
	gap:20px 0;
}

#soudan h1{
	font-size:24px;
	text-align: center;
	margin-bottom:1em;
}
@media only screen and (max-width:768px) {
	#soudan h1{
		font-size:20px;
	}
}

#member-list .date {
    text-align:right;
	padding:1em;
}

/* members */

#members {
	
}

#members .line01{
	font-size:24px;
	text-align: center;
}

#members h2{
	font-size:20px;
	margin-bottom:0.75em;
}

#members iframe{
	width:100%;
	border-width:0;
	margin:24px auto;
}

.main-contents nav{
	margin-top:100px;
}

nav .members-menu {
	margin:0 0 25px 0;
	padding:0;
	list-style:none;
    display: flex;
	flex-wrap: wrap;
	gap: 22px;
}
nav .members-menu  li{
	margin:0;
	padding:0;
	list-style:none;
	font-size:16px;
	color:#fff;
}
nav .members-menu  li a{
	box-sizing: border-box;
	margin:0;
	padding:0.5em 2.5em 0.5em 0.8em;
	background: #1764AA;
	width:100%;
	max-width:450px;
	height:64px;
	position: relative;
	color:#fff;
	display:flex;
	align-items: center;
}
nav .members-menu li a:after{
	position:absolute;
	content: url("../img/kai/pdf.png");
	right:10px;
	bottom:15px;
}

@media only screen and (max-width:768px) {
	nav .members-menu li a{
		max-width:450px;
		height:64px;
	}
}

/* news */

#news .line01{
	font-size:24px;
	text-align: center;
}

#news h2{
	font-size:20px;
	text-align: left;
	margin:0.5em 0;
}

#news .news-list{
	margin:0 0 25px 0;
	padding:0;
	list-style:none;
    display: flex;
	flex-wrap: wrap;
	gap: 22px;
}
#news .news-list li{
	margin:0;
	padding:0;
	list-style:none;
	font-size:16px;
	color:#fff;
}
#news .news-list li a{
	box-sizing: border-box;
	margin:0;
	padding:0.5em 2.5em 0.5em 0.8em;
	background: #1764AA;
	width:100%;
	max-width:450px;
	height:64px;
	position: relative;
	color:#fff;
	display:flex;
	align-items: center;
}
#news .news-list li a:after{
	position:absolute;
	content: url("../img/kai/zip.png");
	right:10px;
	bottom:15px;
}

.about-sec {
	width:100%;
	max-width:940px;
	margin:0 auto 24px;
	padding:0;
	background:#F9FDF3;
	border-radius:12px;
	display:flex;
	gap:0 24px;
	overflow: hidden;
}
.about-sec .intro {
	margin:5px 16px 0 0;
}
.about-sec .intro dt {
	font-size:20px;
	font-weight:bold;
	margin:15px 0 14px 0;
}
.about-sec .intro dt span {
	padding:3px 1em;
	font-size:12px;
	color:#0168B7;
	border:#0168B7 1px solid;
	border-radius: 12px;
}
.about-sec .intro dd {
	font-size:16px;
	line-height:1.4;
}

@media only screen and (max-width:1080px) {
	.about-sec {
		width:96%;
		margin:0 auto 24px;
		padding:0;
		background:#F9FDF3;
		border-radius:12px;
		display:flex;
		flex-flow: column;
		gap:12px 0;
		overflow: hidden;
	}
	.about-sec img{
		width:100%;
		height:auto;
	}
	.about-sec .intro {
		padding:0 1em 2em 1em;
	}
}
@media only screen and (min-width:1080px) {

	.about-sec img{
		width:100%;
		min-width:237px;
		height:auto;
	}
}

li.sns{
	margin:0;
	padding:12px;
	line-height:0;
	font-size:0;
	background:#fff !important;
	display:flex;
	justify-content:center;
	gap:12px;
/*
	display:none;
*/
}
li.sns img{
	width:100%;
	max-width:60px;
	height:auto;
}


@media only screen and (min-width:960px) {
	li.sns{
		display:none !important;

	}
}

#privacy {
	width:100%;
	max-width:960px;
	margin:40px auto;
}

#privacy h1{
	font-size:28px;
	line-height:2em;
	margin:0 0 1em;
}

#privacy p {
	font-size:18px;
	line-height:1.6;
}

.policy_intro {
	margin-bottom:2em;
}

p.policy_sign {
    margin-top: 15px;
    text-indent: 0;
    line-height: 180%;
    width: 23em;
    float: right;
}

ol.policy_list {
	width:100%;
	max-width:900px;
    list-style: decimal outside none;
    margin: 0 auto 1em;
    padding: 0 0 0 3em;
	font-size:18px;
	line-height:1.6;
}

h1.movie {
  line-height: 1.4;
  padding:0.25em;
  margin:0.8em 1em;
  font-size:22px;
	font-weight:bold;
	text-align: left;
}

.movie-flex {
	width:850px;
	margin:0 auto;
	display:flex;
	flex-wrap:wrap;
	justify-content:flex-start;
	gap:12px;
}

.movieBox{
	width: 260px;
	height:auto;
	box-sizing:border-box;
	border:1px solid #D7DBDC;
	background:#FAFAFA;
	padding:5px;
	position:relative;
	margin:0 0 25px 0;
	vertical-align:top;
}
.movieBox span{
	position:absolute;
	top:0;
	right:30px;
}
.movieBox span img{
	width:100%;
}
.movieBox span{
	width:84px;
}
.movieBox dt{
	color:#1E2C5A;
	font-size:16px;
	font-weight:bold;
	margin-bottom:5px;
}
.movieBox dd{
	margin-bottom:20px;
	width:100%;
	position:relative;
}
.movieBox dd img{
	width:100%;
}
.movieBox dd i{
	position:absolute;
	top:38%;
	left:40%;
	font-size:50px;
	color:rgba(0,0,0,0.8);
}
.movieBox dd i:hover{
	color:red !important;
}

p.point {
	margin-top:0.75em;
}
p.point a{
	color:#00e;
}
p.point a:hover{
	text-decoration: underline;
}
