@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@300;400;500;700;900&family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=DM+Sans&family=Poppins&display=swap'); */

/**
font-weight
Light 300
Regular 400
Medium 500
Bold 700
Black 900
**/

/**
font-family: 'M PLUS Rounded 1c', sans-serif;
font-family: 'Noto Sans JP', sans-serif;
**/

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    line-height: 1;
}

html {
    /* デフォルトのrem使用時の調整*/
    /* 1rem = 10px */
    font-size: 62.5%;
}

/*****Safariでinput・select要素のスタイルをリセット*****/
input:not([type="checkbox"]),
select {
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid #000;
    border-radius: 0px;
}

@media screen and (max-width: 1024px) {
    /* タブレット */
}

@media screen and (max-width: 599px) {

    /* スマホ */
    html {
        /* font-size: 58%; */
    }
	img{
		max-width: 100%;
		height: auto;
		width /***/:auto;
	}
}

.sp {
    display: none !important;
}

@media screen and (max-width: 599px) {
    .pc {
        display: none !important;
    }

    .sp {
        display: inherit !important;
    }
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6rem;
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

li {
	list-style: none;
}

@media screen and (max-width: 599px) {
    body {}
}

a,
a:hover,
a:visited {
    color: initial;
    transition: opacity 0.4s ease;
}

a:hover {
    opacity: 0.4;
}

/* 共通 */
.page-wrapper {
    width: 100%;
    max-width: 990px;
    margin: 0 auto;
}

.section {
    padding: 3rem 3rem;
    border-bottom: solid 1px #345c07;
}

.section:last-child {
    border-bottom: none;
}

.h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: #345c07;
    border-left: solid 0.6rem #345c07;
    padding: 0.1em 0 0.1em 0.5em;
    margin-bottom: 3rem;
}

.page-header {
    position: relative;
}

.page-header img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.page-header h1 {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    text-shadow: 2px 2px 6px #fff,
        -2px 2px 6px #fff,
        2px -2px 6px #fff,
        -2px -2px 6px #fff;
}

@media screen and (max-width: 599px) {
    .section {
        padding: 2rem 1rem;
    }

    .h2 {
        font-size: 1.5rem;
    }

    .page-header img {
        height: 121px;
    }

    .page-header h1 {
        top: 65%;
        font-size: 1.9rem;
    }
}

/* ヘッダー */
.header-wrapper {
    position: relative;
    max-width: 990px;
    margin: 0 auto;
}

header {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    position: absolute;
    width: 100%;
    height: 80px;
    top: 0;
    left: 0;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 80px;
    background-color: #345c07;
    mix-blend-mode: multiply;
    left: 0;
    top: 0;
}

header .h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

header .h1 a,
header .h1 a:hover,
header .h1 a:visited {
    color: #fff;
    text-decoration: none;
}

header .main-menu {
    list-style: none;
    display: flex;
}

header .main-menu li {
    border-right: solid 1px #fff;
}

header .main-menu li:last-child {
    border: none;
}

header .main-menu li a {
    display: block;
    padding: 0.2em 1em;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
    text-decoration: none;
}

header .main-menu li.current a {
    color: #dec96a;
}

/* ハンバーガーメニュー */
.hamburger {
    display: none;
}

@media screen and (max-width: 599px) {
    .overlay {
        mix-blend-mode: normal;
        height: 60px;
    }

    header {
        height: 60px;
        padding-left: 1.4rem;
        padding-right: 1.4rem;
    }

    .header-navigation {
        position: fixed;
        top: 60px;
        left: 120%;
        width: 80%;
        height: calc(100vh - 60px);
        overflow-x: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: #cfdac5;
        transition: all 0.4s ease-in-out;
        z-index: 9999;
    }

    .header-navigation.active {
        left: 20%;
        transition: all 0.4s ease-in-out;
    }

    .hamburger {
        display: block;
        width: 26px;
        height: 100%;
        background-color: transparent;
        border-color: transparent;
        z-index: 9999;
    }

    .hamburger span {
        width: 100%;
        height: 2px;
        background-color: #fff;
        position: relative;
        transition: ease .4s;
        display: block;
    }

    .hamburger span:nth-child(1) {
        top: 0;
    }

    .hamburger span:nth-child(2) {
        margin: 8px 0;
    }

    .hamburger span:nth-child(3) {
        top: 0;
    }

    header .main-menu {
        flex-direction: column;
        row-gap: 0.8em;
    }

    header .main-menu li {
        border: none;
    }

    header .main-menu li a {
        color: #323232;
        font-weight: 700;
        font-size: 1.8rem;
    }

    header .main-menu li.current a {
        color: #fff;
    }
}

/* フッター */
footer {
    width: 100%;
    max-width: 990px;
    margin: 3rem auto 0;
    position: relative;
}

footer .first-row {
    background-color: #cfdac5;
    color: #323232;
    padding: 3rem 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    font-size: 1.5rem;
}

footer .name {
    font-size: 2.3rem;
    font-weight: 700;
}

footer .copyright {
    background-color: #345c07;
    color: #fff;
    font-size: 1.3rem;
    text-align: center;
    padding: 1em;
}

footer .move-top {
    position: absolute;
    width: 4.5rem;
    height: 4.5rem;
    right: 3rem;
    top: -3rem;
    border-radius: 100vh;
    background-color: #345c07;
}

footer .move-top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width: 599px) {
    footer .name {
        font-size: 1.75rem;
    }

    footer .copyright {
        font-size: 1rem;
    }
}

/* index.html */
.list-wrapper {
    overflow-y: scroll;
    height: 17rem;
    padding: 0.5em 1em;
}

.list {
    list-style: none;
    display: flex;
    flex-direction: column;
    row-gap: 1em;
}

.list>li>div {
    line-height: 1.5;
}

.list>li>a {
    line-height: 1.4;
}

.link-list {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
}

.link-list>li {
    width: 100%;
    max-width: 21.6rem;
}

.link-list>li a {
    display: flex;
    text-decoration: none;
    background-color: #345c07;
    color: #fff;
    padding: 0.8em 0.5em;
    text-align: center;
    font-weight: 900;
    align-items: center;
    justify-content: space-between;
}

.link-list>li a>span {
    flex: 1;
    line-height: 1.3;
}

.link-list>li a::after {
    content: '\f138';
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    width: 1em;
}

.awards-list-wrapper {
    padding: 0.5em 1em;
}

@media screen and (max-width: 599px) {
    .link-list {
        flex-direction: column;
    }

    .link-list>li {
        max-width: unset;
    }

    .link-list>li a {
        font-size: 1.85rem;
    }
}

/*協会の概要*/
.message-wrapper {
	max-width: 990px;
    margin: 0 auto;
	border-bottom: 1px solid #345c07;
	margin-bottom: 25px;
}

.message-list {
    list-style: none;
    display: flex;
}

.message-word {
	padding: 0px 10px 60px;
	line-height: 3rem;
}

.message-photo {
	list-style: none;
}

.message-photo li {
	text-align: center;
	padding: 2px; 
	font-size: 1.2rem;
	line-height: 2rem;
}

.h4 {
    display: inline-block;
    background-color: #345c07;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    padding: 0.3em 1em;
    margin-bottom: 1em;
}

.activity {
	font-size: 2rem;
	padding-bottom: 30px;
}

.activity li {
	padding: 5px;
}

.message-chart {
	max-width: 990px;
    margin: 0 0 25px;
	text-align: center;
	border-bottom: 1px solid #345c07;
	padding-bottom: 70px;
}

.message-officer {
	max-width: 990px;
    margin: 0 0 25px;
	border-bottom: 1px solid #345c07;
	padding: 0 30px 50px;
}

.message-officer li {
	font-size: 2.4rem;
	line-height: 4rem;
	font-weight: 700;
}

.message-terms {
	max-width: 990px;
	height: 425px;
	overflow: auto;
    margin: 0 0 70px;
	padding: 25px;
	background-color: #f1f1f1;
}

.message-terms-word p {
	font-size: 1.6rem;
	line-height: 2.7rem;
	padding-bottom: 30px;
}
@media screen and (max-width: 599px) {
	.message-wrapper {
		width: 100%;
    	margin: 0 auto;
		border-bottom: 1px solid #345c07;
		margin-bottom: 25px;
	}
	.h4 {
        font-size: 1.4rem;
    }
    .message-list {
    	list-style: none;
		display: block;
   }
	.message-word {
		padding: 0px 10px 30px;
		line-height: 3rem;
	}
	.message-photo {
		list-style: none;
		width: 80%;
		margin: 0 auto;
		padding-bottom: 30px;
		text-align: center;
	}
	.message-photo li {
		text-align: center;
		padding: 2px;
		font-size: 1.6rem;
		line-height: 2rem;
	}
	.activity {
		font-size: 1.6rem;
		padding-bottom: 30px;
	}
	.activity li {
		padding: 5px;
	}
	.message-chart {
		width: 100%;
    	margin: 0 0 25px;
		text-align: center;
		border-bottom: 1px solid #345c07;
		padding-bottom: 70px;
	}
	.message-officer {
		width: 100%;
    	margin: 0 0 25px;
		border-bottom: 1px solid #345c07;
		padding: 0 30px 50px;
	}
	.message-officer li {
		font-size: 1.4rem;
		line-height: 3rem;
		font-weight: 700;
	}
	.message-terms {
		width: 100%;
		height: 425px;
		overflow: auto;
    	margin: 0 0 70px;
		padding: 25px;
		background-color: #f1f1f1;
	}
	.message-terms-word p {
		font-size: 1.6rem;
		line-height: 2.7rem;
		padding-bottom: 30px;
	}
}

/*賛助会員*/
.support-wrapper {
	max-width: 990px;
	font-size: 2.1rem;
	font-weight: 700;
    margin: 0 auto;
	margin-bottom: 80px;
}

.support-list {
    list-style: none;
    display: flex;
}

.support-list li {
    flex: 1;
}

.support-list h3 {
	width: 90%;
	margin-bottom: 20px;
	padding: 5px 0;
	text-align: center;
	border: 1px solid #000000;
}

.support-link li {
    padding: 10px 10px;
}

.support-link a {
    text-decoration: none;
}
@media screen and (max-width: 599px) {
	.support-wrapper {
		max-width: 100%;
		font-size: 1.6rem;
		font-weight: 700;
    	margin: 0 auto;
		margin-bottom: 40px;
	}
	.support-list {
    	list-style: none;
    	display: block;
	}
	.support-list h3 {
		width: 100%;
		margin-bottom: 20px;
		padding: 5px 0;
		text-align: center;
		border: 1px solid #000000;
	}
	.support-link {
		margin-bottom: 30px;
	}
	.support-link li {
    	padding: 5px 10px;
		font-size: 1.6rem;
	}
}
/*ログイン*/
.login-wrapper {
	max-width: 410px;
	font-size: 2rem;
    margin: 0 auto;
	margin-bottom: 100px;
}

.login-wrapper input {
	width: 100%;
	font-size: 2rem;
	line-height: 2rem;
	padding: 5px;
	border: 1px solid #555555;
}

.login-wrapper li {
	padding-bottom: 10px;
}

.login-wrapper .idpass {
	padding-bottom: 35px;
}

.login-wrapper .cookie{

}
.login-wrapper .cookie input {
    width: auto;
    margin-right: 0.5em;
}

.login-wrapper .button {
	width: 100%;
	height: 40px;
	font-size: 2rem;
	font-weight: 700;
	line-height: 40px;
	color: #FFFFFF;
	border: none;
	background-color: #345c07;
	cursor: pointer;
	cursor: hand;
}
/* 会員ページ 通信・資料 */
.member-title {
    max-width: 990px;
    margin: 0 auto;
    background-color: #345c07;
    color: #fff;
    font-size: 2.3rem;
    font-weight: 700;
    text-align: center;
    padding: 0.4em;
}

.button-wrapper {
    padding: 20px;
}

.button-list {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
}

.button-list>li {
    width: 100%;
    max-width: 290px;
    background-image: url(../images/button_back.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.button-list>li.current {
    background-image: url(../images/button_back_current.jpg);
}

.button-list>li a {
    display: flex;
    text-decoration: none;
    color: #fff;
    padding: 0.5em 1em;
    margin: 4px;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    align-items: center;
    justify-content: space-between;
    border: solid 1px #fff;
}

.button-list>li a>span {
    flex: 1;
    line-height: 1.3;
}

.button-list>li a::after {
    content: '\f138';
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    width: 1em;
}


.section.communication {
    border: none;
}

.h3 {
    display: inline-block;
    background-color: #4b261d;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    padding: 0.3em 1em;
    margin-bottom: 1.5em;
}

.pdf-slide-wrapper {
    margin-bottom: 3rem;
}

.pdf-slide {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
}

.pdf-slide .slick-prev {
    left: -50px;
    width: 4rem;
}

.pdf-slide .slick-next {
    right: -50px;
    width: 4rem;
}

.pdf-slide .slick-prev:before,
.pdf-slide .slick-next:before {
    color: #000;
    font-size: 4rem;
    font-weight: 300;
    transform: scale(0.5, 1);
}

.pdf-slide .slick-prev:before {
    content: '＜';
}

.pdf-slide .slick-next:before {
    content: '＞';
}

.book-stand {
    width: 100%;
}

.pdf-slide .slick-slide img {
    margin: 0 auto;
}

.pdf-link-list {
    list-style: none;
}

.pdf-link-list li {
    line-height: 1.5;
}

@media screen and (max-width: 599px) {
    .button-wrapper {
        padding: 1rem;
    }

    .button-list {
        flex-direction: column;
    }

    .button-list>li {
        max-width: unset;
    }

    .h3 {
        font-size: 1.4rem;
    }

    .book-stand.sp {
        /* width: unset; */
    }

    .pdf-slide .slick-prev {
        left: 0;
        z-index: +1;
    }

    .pdf-slide .slick-next {
        right: 0;
    }

    .pdf-slide-wrapper {
        margin-left: -1rem;
        margin-right: -1rem;
        margin-bottom: 1.5rem;
    }
}
/*歴代顧問・役員*/
.adviser-wrapper {
	max-width: 990px;
	font-size: 2rem;
	font-weight: 700;
    margin: 0 auto;
	margin-bottom: 50px;
}

.adviser-wrapper .table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.adviser-wrapper .table thead {
	text-align: center;
    background: #e3decc;
}

.adviser-wrapper .table th {
	width: 110px;
	text-align: center;
    border: 1px solid #231815;
    padding: 10px;
}

.adviser-wrapper .table td {
    border: 1px solid #231815;
    padding: 10px;
	line-height: 2.5rem;
}

.adviser-wrapper .table .borderno {
    border-bottom: none;
}

.adviser-wrapper h3 {
    font-size: 1.8rem;
	font-weight: 400;
	padding-top: 10px;
}
@media screen and (max-width: 599px) {
	.adviser-wrapper {
		max-width: 990px;
		font-size: 1.6rem;
		font-weight: 700;
    	margin: 0 auto;
		margin-bottom: 50px;
	}
	.adviser-wrapper .table th {
		width: 90px;
		text-align: center;
    	border: 1px solid #231815;
    	padding: 5px;
	}
	.adviser-wrapper .table td {
    	border: 1px solid #231815;
    	padding: 5px;
		line-height: 2rem;
	}
	.adviser-wrapper h3 {
    	font-size: 1.3rem;
		font-weight: 400;
		padding-top: 10px;
	}
}

/*フォトギャラリー*/
.photo-wrapper {
	max-width: 990px;
    margin: 0 auto;
	margin-bottom: 50px;
}

.photo-wrapper h4 {
	font-size: 2.7rem;
	padding: 20px 0px;
}

.photo-wrapper .photo-list {
    list-style: none;
    display: flex;
	flex-wrap: wrap;
	gap: 15px 15px;
}

.photo-wrapper .photo-thumb {
	overflow: hidden;
	width: 215px;
	height: 150px;
	position: relative;
}

.photo-wrapper .photo-thumb img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	display:block;
}

.list-item{
    opacity: 1;
}

.list-item.is-hidden {
	opacity: 0;
	height: 0;
	margin: 0;
    display: none;
}

.list-btn {
	margin-top: 20px;
	width: 120px;
	margin-left: auto;
	margin-right: auto;
}

.list-btn .is-btn-hidden{
	display: none;
}

.list-btn button {
	color:#000;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	line-height: 0px;
	width: 120px;
	height: 60px;
	padding-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
	background-image: url("../member/photogallery/images/seemore.png");
	background-repeat: no-repeat;
}

	
@media screen and (max-width: 599px) {
}