@charset "utf-8";
/**
 * kifuArea
 */
.kifuArea {
	border: 20px solid #fff;
	color: #fff;
	padding: 45px;
    text-align: center;
}
@media screen and (max-width:767px){
	.kifuArea {
		border-width: 10px;
		padding: 24px;
	}
}

/* text */
.kifuArea__lyText {
	font-size: 34px;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 20px;
}
.kifuArea__lyYen {
	font-size: 66px;
	font-weight: bold;
	line-height: 1;
}
.kifuArea__lyYen--time {
	display: block;
	font-size: 16px;
	font-weight: normal;
	margin-top: 20px;
}
@media screen and (max-width:767px){
	.kifuArea__lyText {
		font-size: 17px;
		font-size: 1.7rem;
		margin-bottom: 10px;
	}
	.kifuArea__lyYen {
		font-size: 33px;
		font-size: 3.3rem;
	}
	.kifuArea__lyYen--time {
		font-size: 12px;
		font-size: 1.2rem;
		margin-top: 10px;
	}
}

/**
 * donationLists
 */
.donationLists {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.donationLists__item {
	width: calc((100% - 30px) / 4);
}
.donationLists__link {
	display: block;
}
.donationLists--img {
	width: 100%;
}
@media screen and (max-width:767px){
	.donationLists {
		gap: 5px;
	}
	.donationLists__item {
		width: calc((100% - 10px) / 3);
	}
}

/**
 * donationOne
 */
.donationOne:not(:first-of-type) {
	border-top: 5px solid #fff;
	margin-top: 50px;
    padding-top: 50px;
}
@media screen and (max-width:767px){
	.donationOne:not(:first-of-type) {
		border-width: 3px;
		margin-top: 30px;
		padding-top: 30px;
	}
}

/* title */
.donationOne__title {
	border: 5px solid #fff;
	display: flex;
	padding: 14px;
}
.donationOne__title--imgWrap {
	display: block;
	flex: none;
	max-width: 190px;
}
.donationOne__title--img {
	width: 100%;
}
.donationOne__title--text {
	display: block;
	font-size: 20px;
	font-weight: bold;
	width: 100%;
	padding-top: 6px;
	padding-left: 20px;
}
@media screen and (max-width:767px){
	.donationOne__title {
		border-width: 3px;
		align-items: center;
		padding: 6px 10px;
	}
	.donationOne__title--imgWrap {
		max-width: 95px;
	}
	.donationOne__title--text {
		font-size: 12px;
		font-size: 1.2rem;
		line-height: 1.6;
		padding-top: 3px;
		padding-right: 10px;
		padding-left: 10px;
		text-align: center;
	}
}

/**
 * donationPhotoListsWrap
 */
.donationPhotoListsFullWrap {
    position: relative;
    width: calc(100% + 100px);
    margin-left: -50px;
    overflow: hidden;
}
.donationPhotoListsWrap {
	width: 800px;
	overflow: initial;
	position: relative;
}
.donationPhotoLists--img {
	width: 100%;
}
@media screen and (max-width:767px){
	.donationPhotoListsFullWrap {
		width: calc(100% + 40px);
		margin-left: -20px;
	}
	.donationPhotoListsWrap {
		width: calc(100% - 40px);
	}
}

/* cover */
.donationPhotoListsWrap:before,
.donationPhotoListsWrap:after {
	content: "";
	background-color: rgb(var(--color-orange));
	width: 50px;
	height: 100%;
	position: absolute;
	top: 0;
	z-index: 9;
}
.donationPhotoListsWrap:before {
	right: -50px;
}
.donationPhotoListsWrap:after {
	left: -50px;
}
@media screen and (max-width:767px){
	.donationPhotoListsWrap:before,
	.donationPhotoListsWrap:after {
		width: 20px;
	}
	.donationPhotoListsWrap:before {
		right: -20px;
	}
	.donationPhotoListsWrap:after {
		left: -20px;
	}
}

/**
 * donationPhotoLists__nav
 */
.donationPhotoLists__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
	width: 50px;
	height: 50px;
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 10;
}
.donationPhotoLists__nav:before {
	content: "";
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: 100%;
	display: block;
    width: 21px;
    height: 21px;
	transition: transform .3s ease-in-out, background-color .3s ease-in-out;
}
@media screen and (max-width:767px){
	.donationPhotoLists__nav {
		width: 40px;
		height: 40px;
	}
}

/* next,prev */
.donationPhotoLists__nav.is-next {
	right: -50px;
}
.donationPhotoLists__nav.is-next:before {
	background: url(../img/common/icon_arrow_r.png)
}
.donationPhotoLists__nav.is-prev {
	left: -50px;
}
.donationPhotoLists__nav.is-prev:before {
	background: url(../img/common/icon_arrow_l.png)
}
@media screen and (max-width:767px){
	.donationPhotoLists__nav.is-next {
		right: -20px;
	}
	.donationPhotoLists__nav.is-prev {
		left: -20px;
	}
}

/* hover */
.donationPhotoLists__nav:hover.is-next:before {
	transform: translateX(10px);
}
.donationPhotoLists__nav:hover.is-prev:before {
	transform: translateX(-10px);
}
@media screen and (max-width:767px){
	.donationPhotoLists__nav:hover.is-next:before {
		transform: translateX(0);
	}
	.donationPhotoLists__nav:hover.is-prev:before {
		transform: translateX(0);
	}
}

/**
 * donationOneLists__item
 */
.donationOneLists__item:not(:first-child) {
	margin-top: 20px;
}

/**
 * howto
 */
/* title */
.howtoCont__h2 {
	border: 5px solid #fff;
	padding: 8px 0;
    position: relative;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
	text-align: center;
    letter-spacing: .2em;
	transition: all .3s ease-in-out;
}
.howtoCont__h2:hover {
	background-color: #fff;
	color: rgb(var(--color-orange));
}
@media screen and (max-width:767px){
	.howtoCont__h2 {
		border-width: 3px;
		font-size: 14px;
		font-size: 1.4rem;
	}
}

/* icon */
.howtoCont__h2:before {
    content: "";
	background-color: #fff;
	-webkit-mask: url(../img/common/icon_arrow_b.png) no-repeat 0 0 / 100%;
    mask: url(../img/common/icon_arrow_b.png) no-repeat 0 0 / 100%;
    width: 21px;
    height: 21px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    z-index: 2;
    transition: all .3s ease-in-out;
}
.howtoCont__h2:hover:before {
	background-color: rgb(var(--color-orange));
}
.howtoCont__h2.is-active:before {
	transform: rotate(180deg);
}
@media screen and (max-width:767px){
	.howtoCont__h2:before {
		width: 14px;
    	height: 14px;
		right: 10px;
	}
}

/**
 * howtoCont__textWrap
 */
.howtoCont__textWrap {
	display: none;
	padding: 20px 0;
}

/* img */
.howtoCont__textWrap img {
	max-width: 100%;
}

/**
 * howtoCont
 */
.howtoCont:not(:first-of-type) {
	margin-top: 20px;
}
@media screen and (max-width:767px){
	.howtoCont:not(:first-of-type) {
		margin-top:10px;
	}
}
