@charset "utf-8";
/* CSS Document */
/*==========================
共通
==========================*/
/* サイト用 */
.fs-l-main {
	margin: 5% auto 5.0em auto !important;
}
.rte ul, .rte ol {
	padding-bottom: 15%;
}


/* common */
 html {
    font-size: 62.5%;
}

body {
	font-style: normal;
    line-height: 2.0;
    font-size: 14px;
}

.spBr {
	display: none;
}

.linkBtn {
	font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
	color: #fff;
	background-color: #842631;
	padding: 2% 0;
	width: 40%;
	margin: 0 auto;
	text-align: center;
	transition: 0.4s;
	margin-top: 2%;
}

.linkBtn:hover {
	opacity: 0.7;
}

.linkBtn a:visited {
	color: #fff!important;
}


.sp_block {
	display: none;
}
.sp_none {
	display: block;
}


/*==========================
共通
==========================*/

.mainVisual {
	margin-bottom: 5%;
}

.mainVisual__pc {
	display: block;
}

.mainVisual__sp {
	display: none;
}

.contitle_container {
	width: 80%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 7%;
}

.contitle_item01 {
	width: 60%;
}

.contitle_item02 {
	width: 40%;
}

.item02-title {
	font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-weight: 800;
	text-align: center;
	margin-bottom: 6%;
	font-size: 16px;
}

.item02-txt {
	width: 90%;
	margin: 0 auto;
	
}

.contitle_container {
	margin-bottom: 8%;
}

/*==========================
left_btn container
==========================*/
.mainBox__ostros {
	margin-bottom: 10%;
}
.ostros_container {
	display: flex;
	gap: 2%;
}

.ostoros_item01 {
	width: 40%;
}

.ostoros_item01 img {
	margin-bottom: 3%;
}
.shosaiBox {
	font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
	text-align: center;
}


.ostros_item02 {
	width: 60%;
}

/* 右側用のcontainer */
.ostros_item02-container {
	display: flex;
	flex-wrap: wrap;
	gap: 1%;
}
.ostros_item02-item {
	width: 48%;
	margin-bottom: 1%;
}

/*==========================
right_btn container
==========================*/
.ostros_container2 {
	display: flex;
}


/*==========================
subImg
==========================*/
.subImg {
	width: 50%;
	margin: 0 auto 10%;
}



/*==========================
fadeIn
==========================*/
.fadeIn {
    opacity: 0;
    transition: all 1.2s ease;
}

/* fadeIn */
.fadeIn {
    transform: translate(0, 50px);
}

.fadeIn.animated {
    transform: translate(0, 0);
    opacity: 1;
}


.load-fade {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
}
.load-fade.is-show {
  opacity: 1;
  visibility: visible;
}

/*===================================================
			戻るボタン　CSS
===================================================*/

html {
    scroll-behavior: smooth;
}
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 15px;
    bottom: 130px;
    background: #fff;
    border: solid 2px #842631;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 2px solid #842631;
    border-right: 2px solid #842631;
    transform: translateY(20%) rotate(-45deg);
}


