/* 上のコンテンツ */
.slides {
	display: flex;
}

.slide_content {
	position: relative;
}

.summary {
	position: relative;
}

.summary_image {
	width:100%; 
	height: 350px; 
	object-fit: cover; 
}

.description {
	padding: 10px 15px;
    color: #fff;
    position: absolute;
    top: 30px;
    right: 40%;
    font-weight: bold;
    font-family: serif;
    background: rgb(177 177 177 / 20%);
	background: rgb(0 0 0 / 20%);
    width: auto;
    height: auto;
}

a.description_btn {
	position: relative;
	background: #dc4a4d;
	border: 1px solid #dc4a4d;
	border-radius: 30px;
	padding: 15px 70px 15px 50px;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}

a.description_btn:before {
	content: '';
	width: 8px;
	height: 8px;
	border: 0;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 25px;
	margin-top: -6px;
}

a.description_btn:hover {
	background-color:#a10000;
}

a.description_btn:hover:before {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

a.menu_btn {
	position: relative;
	background: #48b3e4;
	border: 1px solid #20d7f0;
	border-radius: 30px;
	padding: 15px 70px 15px 50px;
	color: #fff;
	font-weight: bold;
	letter-spacing: 0.1em;
	text-decoration: none;
}

a.menu_btn:before {
	content: '';
	width: 8px;
	height: 8px;
	border: 0;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 25px;
	margin-top: -6px;
}

a.menu_btn:hover {
	background-color:#42cad1;
}

a.menu_btn:hover:before {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

/* memo 下半分のコンテンツ */
.section {
	display: flex; 
	margin: 100px 0;
	position: relative;
}

.section h2 {
	margin: unset;
}

.section img {
	width: 100%;  
	object-fit: cover;
	box-shadow: 12px 12px 2px 1px rgb(0 0 0 / 30%);
}

.section_block {
	width: 50%;
}

.section_content {
	position: absolute;
    top: 25px;
	top: -30px;
    left: 40%;
	padding: 25px;
	background: linear-gradient(175deg, #b34400 , transparent 100%);
    z-index: 1;
	width: 50%;
}

.section_content_r {
	position: absolute;
    top: 25px;
	top: -30px;
    right: 40%;
	padding: 25px;
	background: linear-gradient(185deg, #8d1700 , transparent 100%);
    z-index: 1;
	width: 50%;
}

.section_title {
    color: #fffbef;
	font-weight: bold;
	text-align: center;
}

.section_description {
	line-height: 1.8;
	font-size: 1.3rem; 
	color: #fffbef; 
	font-family: serif; 
	font-weight: bold;
	margin: 10px 0;
}

.move_r {
	margin: 0 0 0 auto;
}

.section_button {
	margin: 50px 0 0 0;
	text-align: center;
}

/* memo 下半分のコンテンツここまで */
.news {
	padding: 10px;
}

.news_frame {
	padding: 10px;
	background-color: #fdfdfd;
}

/* お知らせ */
.news_title {
	font-weight: bold;
	text-align: center;
	color: #171e56;
	border-bottom: 1px solid #171e7a;
}

.news_title > h2 {
	margin: auto;
}

.news_body {
	padding: 15px;
    border-bottom: 1px dotted #000;
}

.news_content_date {
	padding: 0 10px 0 10px;
}

.news_content_body {
	padding: 20px 10px 0 10px;
}


/* トップページのスライダー */

@keyframes show{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

.slide {
	display: none;
}

.active {
	display: block;
	animation: show 1.5s;
	width: 100%;
}

.section_item {
	display: flex;
	justify-content: center;
	background: #e5e5e53d;
	margin: 70px 0;
	margin: 70px 20px;
	opacity: 0;
	box-shadow: 0px 10px 10px 5px rgb(135 135 135);
	border-radius: 10px;
	transform: translate(0, 100px);
	-webkit-transform: translate(0, 100px);
}

.section_item.effect {
	opacity: 1;
	transform: translate(0, 0);
	transition: all 1.5s ease；;
	-webkit-transform: translate(0, 0);
	-webkit-transition: all 2s ease;
}

.section_item > div {
	width: 50%;
}

.section_title2 > h2 {
	margin: unset;
}

.section_block2 {
	padding: 25px 50px;
	color: #8b4514;
	/*
	color: #f3f3f3;
	*/
	font-weight: bold;
}

.section_image > img {
	width: 100%;
	height: 300px;
	object-fit: contain;
}

.section_description2 {
	padding: 10px 0;
}
