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

html{
	font-size: 100%;
}

body {
	color: black;
	text-align: center;
}

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

h1{
	font-size: 52px;
	font-weight: 600;
	text-align:center; 
	line-height: 0;
}

h2{
	font-size: 40px;	
	font-weight: 700;
	display: inline-block; 
	padding: 60px 35px 20px 35px;
	margin: 0 auto;
	border-bottom: 1px solid #000;
}

h3{
	font-size: 24px;	
	font-weight: 400;
	padding-top: 20px;
	padding-bottom: 50px;
}

p{
	font-weight: 400;
	margin-bottom: 16px;
}


@media (max-width: 768px) {
	
	p{
		line-height: 1.6;
		margin-bottom: 8px;
	}
}

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

#sec_header{
	width:auto;
	background-image: url("../images/snsfeed_bg.jpg")
}

.con_header {
    display: flex;
    justify-content: center;
    width: 100%;
}

.box_hover {
    position: relative;
    overflow: hidden;
}

.box_hover img {
    transition: opacity 0.3s ease; /* 透明度の変化を滑らかに */
}

.box_hover .hover_text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0); /* 初期状態では透明 */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    visibility: hidden; /* 最初は非表示 */
}

.hover_border {
    border: 1px solid white;
    padding: 5px 40px;
}

.box_hover:hover img {
    opacity: 0.7; /* ホバー時に画像を透過 */
}

.box_hover:hover .hover_text {
    background-color: rgba(0, 0, 0, 0.7); /* ホバー時に黒背景 */
    visibility: visible; /* ホバー時にテキストを表示 */
    opacity: 1;
}

/*
 ========================================
    lead/award
=========================================
*/
.header_logo {
    width: 30%;
	margin-top: -16%;
	z-index: 100!important;
    position: relative;
}

@media (max-width: 992px) {
    .header_logo {
		width: 25%;
		margin-top: -13%;
	}
}

@media (max-width: 768px) {
    .header_logo {
        width: 30%;
    }
}

#sec_lead p {
	padding-top: 5%;
	padding-bottom: 5%;
    }

/*
 ========================================
    sozurisoba
=========================================
*/
.sec_sozurisoba{
	background-image: url("../images/sozurisoba_bg.jpg");
	background-size: cover;
	background-position: center; 
	padding-top: 50px;
	padding-bottom: 50px;
}
@media (max-width: 768px) {
	.sec_sozurisoba{
		padding-top: 20px;
		padding-bottom: 20px;
	}
}

/*
 ========================================
    feed_sns
=========================================
*/

#sec_snsfeed{
	background-image: url("../images/snsfeed_bg.jpg");
	padding-top: 80px;
	padding-bottom: 105px;
}

@media (max-width: 768px) {

}