@charset "UTF-8";

/*TOPロゴ*/

.main-ttl-wrap {
margin-bottom: 2em;
padding: 1em 0;
background: #5AB59B;

}

.main-ttl {
background: initial;
margin: 30px 0 20px;
padding: 0;
}

.logo-wrap img {
width: 400px;
vertical-align: top;
max-width: 100%;
}

@media screen and (max-width: 739px) {
.logo-wrap img {
width: 300px;
vertical-align: top;
max-width: 100%;
}

.main-ttl {
margin: 20px 0 10px;
padding: 0;
}
}

/* 色変更 */
.main-sec-ttl:after {
background: #5AB59B;
}
.form-btn {
background: #5AB59B;
}

@media screen and (max-width: 650px) {
/* ロゴ追加 */
.logo-wrap {
margin: 0 0 20px;
}

.subpage-logo-wrap {
margin: 20px 0 ;
}
}

/*窓口選択*/
.window-list {
display: flex;
justify-content: space-between;
align-items: stretch;
}

.window-list li {
display: flex;
width: 32%;
}

.window-list .newline {
display: inline-block;
}

.window-list li a {
width: 100%;
font-size: 20px;
padding: 20px;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
text-decoration: none;
color: #fff;
font-weight: 600;
border-radius: 8px;
}

.transaction-btn a {
position: relative;
top: 0;
padding: 26px 0;
background-color: #f0ac00;
box-shadow: 0 4px #a78300;
transition: .2s ease-in-out;
}

.employee-btn a {
position: relative;
top: 0;
padding: 26px 0;
background-color: #25d080;
box-shadow: 0 4px #00a050;
transition: .2s ease-in-out;
}

.board-member-btn a {
position: relative;
top: 0;
padding: 26px 0;
background-color: #2589d0;
box-shadow: 0 4px #0059a0;
transition: .2s ease-in-out;
}

.transaction-btn a:hover {
top: 4px;
box-shadow: 0 0 #a78300;
}

.employee-btn a:hover {
top: 4px;
box-shadow: 0 0 #00a050;

}

.board-member-btn a:hover {
top: 4px;
box-shadow: 0 0 #0059a0;
}

.board-member-text {
width: 32%;
margin-top: 10px;
margin-left: auto;
display: flex;
text-align: left;
}

.board-member-text span {
flex-shrink: 0;
}

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

/*窓口選択*/
.window-list {
display: flex;
justify-content: space-between;
flex-direction: column;
}

.window-list li {
width: 100%;
}

.window-list li:not(:last-child) {
margin-bottom: 20px;
}

.window-list li a {
font-size: 20px;
}


.employee-btn a:hover {
top: 0;
box-shadow: 0 4px #00a050;
}

.board-member-btn a:hover {
top: 0;
box-shadow: 0 4px #0059a0;
}

.transaction-btn a:hover {
top: 0;
box-shadow: 0 4px #a78300;
}

.board-member-text {
width: 100%;
margin-top: 10px;
margin-left: 0;
display: flex;
}
}

@media screen and (max-width: 650px) {
.window-list {
margin-top: 20px;
}

.window-list li a {
padding: 15px;
font-size: 18px;
}
}

/*アコーディオン追加*/
.board-member-table-btn {
position: relative;
font-size: 20px;
cursor: pointer;
padding: 15px 20px;
margin-top: 30px;
background-color: #5AB59B;
color: #efeeea;
font-size: 20px;
font-weight: bold;
text-align: center;
}

.board-member-table-btn::before{
content: "";
position: absolute;
top: 50%;
right: 25px;
width: 10px;
height: 2px;
transform: rotate(90deg);
background: #efeeea;
transition: all .3s ease-in-out;
}

.board-member-table-btn::after{
content: "";
position: absolute;
top: 50%;
right: 25px;
width: 10px;
height: 2px;
background: #efeeea;
transition: all .2s ease-in-out;
}

/* オープンした時 */
.board-member-table-btn.is-open::before{
transform: rotate(135deg);
}

.board-member-table-btn.is-open::after{
transform: rotate(45deg);
}

.board-member-table-wrapper {
	padding: 0 20px;
}

/*テーブル追加*/
.board-member-table {
width: 100%;
margin-top: 30px;
text-align: center;
border-collapse: collapse;
border-spacing: 0;
}

.board-member-table th {
padding: 10px;
font-size: 18px;
text-align: center;
background: #c5c8ca;
border: solid 1px #c5c8ca;
}

.board-member-table td {
padding: 10px;
border: solid 1px #c5c8ca;
text-align: left;
}

.board-member-table td a:hover {
text-decoration: underline;
}

@media screen and (max-width: 1079px) {
.board-member-table td a:hover {
text-decoration: none;
}
}

@media screen and (max-width: 650px) {
.board-member-table-btn {
font-size: 18px;
}
.board-member-table-wrapper {
padding: 0 10px;
}

}