@charset "utf-8";

/*
========================================
    基本設定
=========================================
 */

html{
	font-size: 100%;
}

body {
    font-family: 'Rounded Mplus 1c', sans-serif;
	color: black;
}

img{
	max-width: 100%;
	height: auto;
}

h1{
	font-size: 52px;
	font-family: 'Rounded Mplus 1c', sans-serif;
	font-weight: 600;
	text-align:center; 
	line-height: 0;
}

h2{
	font-family: 'Rounded Mplus 1c', sans-serif;
	font-size: 40px;	
	font-weight: 700;
	text-align: center;
	padding-top: 40px;
	letter-spacing: 2px;
}

h3{
	font-family: 'Rounded Mplus 1c', sans-serif;
	font-size: 30px;	
	font-weight: 400;
	text-align: center;
	padding-top: 30px;
	padding-bottom: 50px;
}

p{
	font-size: 16px;	
	font-family: 'Rounded Mplus 1c', sans-serif;
	line-height: 2.2;
	font-weight: 400;
	margin-bottom: 16px;
}

a {
    color: #434343;
    text-decoration: none;
}

a:hover {
    color: #f6ac4d;
}

@media (max-width: 750px) {
	p{
		font-size: 14px;
		line-height: 1.4;
	}
}


/*
========================================
    header / hero
=========================================
*/

#secondary-header{
}

#secondary-header ul{
    display: flex;
    justify-content: flex-end;
}

.header-nav {
    background-color: #fff; /* ナビゲーションバーの背景色 */
    color: black;
    display: flex; /* フレックスコンテナとして設定 */
    justify-content: flex-end; /* 右端に寄せる */
    padding: 8px 0; /* パディングで少しスペースを作る */
}

.header-nav li{
	margin: 10px 10px;
}


@media (max-width: 768px) {

}


/*
 ========================================
    title
=========================================
*/

#title_donation{
	background-color: #F6E871;
	padding-bottom: 2%;
}

#title_donation h3{
	letter-spacing: 0.1em;
}

#title_donation p{
	text-align: center;
}

#title_donation img{
	width: 25%;
}

@media (max-width: 750px) {
	#title_donation h3{
	letter-spacing: 0em;
}
	#title_donation img{
    	display: block;
		width: 60%;
		margin: 0 auto;
		padding-bottom: 3%;
	}
}

/*
 ========================================
    donation list
=========================================
*/
.donation-lead{
	text-align: center;
}

.container{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap:10px;
}

.item{
}

.item::after {
    content: "　様";
  }

.box_donation .heading-lead{
	margin: 25px 0 15px;
	padding: 10px;
	border: solid 2px #111;
	text-align: center;
	display: inline-block;
}

.kana-column{
	padding: 20px 0 5px;
	margin-bottom: 5px;
}

@media (max-width: 750px) {
	.donation-lead{
		text-align: left;
	}
	.box_donation .heading-lead{
		margin: 25px 0 15px;
		padding: 10px;
		border: solid 2px #111;
		text-align: center;
		display: block;
	}
	.container{
		grid-template-columns: 1fr 1fr;
	}
	.container-corp{
	grid-template-columns: 1fr;
	}
}

/*
========================================
basicinfo
=========================================
*/
#sec_basicinfo{
color: white;
background-color: #3d3914;
padding-top: 30px;
padding-bottom: 20px;
}

#sec_basicinfo p{
line-height: 1.4;
margin-bottom: 10px;
}

#sec_basicinfo .heading-lead{
margin-bottom: 20px;
padding-top: 0;
padding-bottom: 0;
text-align: left;
}

@media (max-width: 750px) {
#sec_basicinfo p{
	margin-bottom: 6px;
}
}

/* ========================================
    footer
========================================= */


.box_link a{
	margin-left: 40px
}

@media (max-width: 750px) {
	.box_link{
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	.box_link a{
		margin-left: 15px;
	}
}

footer {
	color: white;
	text-align: center;
	background-color: #25230c;
}

footer p{
	line-height: 1.4;
	margin-bottom: 4px;
}


