/* コンテンツ共通 */
.px-24 {
    padding-right: 24px;
    padding-left: 24px;
}
.py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}
.pt-60 {
    padding-top: 60px;
}
.m-auto {
    margin: auto;
}
.mx-24 {
    margin-right: 24px;
    margin-left: 24px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-30 {
    margin-bottom: 30px;
}
.mb-40 {
    margin-bottom: 40px;
}
.mb-50 {
    margin-bottom: 50px;
}
.mb-60 {
    margin-bottom: 60px;
}
.my-60 {
    margin: 60px auto;
}
.my-80 {
    margin: 80px auto;
}
.my-100 {
    margin: 100px auto;
}
.text-c {
    text-align: center;
}
.text-r {
    text-align: right;
}
.font-800 {
    font-weight: 800;
}
/* フッター */
footer {
    background: #fbf9f4;
    padding-top: 30px;
    padding-bottom: 20px;
}
.footer_link1, .relatedSite, .footer_media, .footer_link2, .footer_smallTxt {
    max-width: 450px;
    margin-right: auto;
    margin-left: auto;
}
.footer_link1 {
    text-align: left;
    margin: 0 auto 15px;
}
.footer_link1 a {
    font-size: 15px;
    font-weight: 600;
    color: #bba136;
    letter-spacing: 1px;
    outline: none;
    margin-bottom: 12px;
}
.footer_link1 a:hover, .footer_link2 a:hover {
    color: #6a5535;
}
.footer_link2 {
    display: flex;
    justify-content: space-between;
}
.footer_link2 a {
    font-size: 12px;
    color: #937c5b;
    outline: none;
}
.footer_link2 li:nth-child(2) {
    margin: 0 5px;
}
.relatedSite {
    background-color: #e9e2ce;
    border-radius: 15px;
    padding: 15px 10px;
}
.relatedSite a {
    display: block;
    margin-bottom: 5px;
}
.relatedSite a:last-child {
    margin-bottom: 0;
    margin-top: 5px;
}
.relatedSite img {
    border-radius: 5px;
}
.relatedSite span {
    font-size: 17px;
    font-weight: 700;
    color: #6a5535;
    margin-bottom: 13px;
}
.footer_media {
    background-color: #fff;
    border: 2px solid #917c5d;
    border-radius: 15px;
}
.media_heading {
    text-align: left;
	cursor: pointer;
	transition-duration: 0.2s;
    padding: 10px 15px;
	position: relative;
}
.media_ttl {
    font-size: 16px;
    font-weight: 700;
    color: #6a5535;
	cursor: pointer;
}
.media_openBtn {
	width: 16px;
	height: 16px;
	transition-duration: 0.4s;
	position: absolute;
	top: 50%;
    bottom: 50%;
	right: 15px;
    margin: auto;
}
.media_openBtn span {
	display: block;
	width: 100%;
	height: 100%;
	cursor: pointer;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transform-origin: center center;
	transition-duration: 0.4s;
	position: relative;
}
.media_openBtn span::before, .media_openBtn span::after {
	content: '';
	background-color: #6a5535;
	border-radius: 10px;
	width: 16px;
	height: 3px;
	position: absolute;
	top: 6.5px;
	left: 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transform-origin: center center;
}
.media_openBtn span::before {
	width: 3px;
	height: 16px;
	top: 0;
	left: 6.5px;
}
.media_heading.open .media_openBtn {
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}
.media_heading.open .media_openBtn span::after {
    content: none;
}
.media_heading.open .media_openBtn span::before {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.footer_media_inner {
    display: none;
    text-align: left;
    padding: 10px 15px 15px;
}
.footer_media_inner p {
    display: block;
    font-size: 13px;
    line-height: 16px;
    padding-left: 8px;
    margin-bottom: 12px;
    position: relative;
}
.footer_media_inner p::before {
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    background-color: #6a5535;
    border-radius: 50%;
    position: absolute;
    top: calc(14.5px / 2);
    left: 0;
}
.footer_media_inner .multi::before {
    top: calc(20.5px / 2);
}
.footer_media_inner p a {
    display: inline;
    line-height: 16px;
    word-break: break-all;
    color: #6a5535;
}
.footer_media_inner p a:hover {
    color: #c39042;
}
.footer_media_inner .multi {
    line-height: 22px;
    margin-bottom: 8px;
}
.footer_media_inner .multi a {
    text-decoration: underline;
}
p.media_closeBtn {
    display: block;
    font-size: 12px;
    color: #fff;
    font-weight: 600;
	cursor: pointer;
    background-color: #9b9174;
    border-radius: 5px;
    padding: 10px 0;
    margin-top: 18px;
    margin-bottom: 0;
}
.footer_smallTxt * {
    color: #937c5b;
}
.footer_smallTxt p {
    display: block;
    font-size: 11px;
    pointer-events: none;
}
.footer_smallTxt p:not(:last-child) {
    margin-bottom: 5px;
}
.copyright {
    margin-top: 15px;
}

@media(min-width: 700px) {
    footer {
        padding-top: 50px;
    }
    .footer_link1 {
        display: flex;
        flex-wrap: wrap;
    }
    .footer_link1 li {
        width: 50%;
    }
}

@media(min-width: 1100px) {
    .footer_link1 {
        margin-bottom: 25px;
    }
    .relatedSite {
        max-width: 1200px;
        padding: 20px 30px 30px;
        margin-bottom: 30px;
    }
    .relatedSite_inner {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }
    .relatedSite_inner a {
        width: calc(100% / 3 - 6px);
        margin: 0;
    }
    .footer_media {
        max-width: 650px;
        margin-bottom: 30px;
    }
    .footer_media_inner p {
        padding-left: 12px;
    }
    .footer_media_inner p a {
        font-size: 14px;
    }
}