@charset "utf-8";


/* ==================================================
PC
================================================== */
/* ========== トップページ ========== */
/* 非表示 */
#footstep_wrap {
	display: none !important;
}

#mymainback_bg {
	width: 100%;
}

#mymainback {
	padding-bottom: 0;
}
.sp_br{
	display: none;
}
/* キービジュアル */
#kv {
	width: 100%;
	padding: 0 20px;
}
a:visited{
	color: #000;
}

.kv_inner {
	position: relative;
	width: min(100%, 1546px);
	aspect-ratio: 1546/619;
	margin: 0 auto;
}
.kv_inner .kv_main {
	position: relative;
	z-index: 1;
}
.kv_inner [class*=kv_] {
	position: absolute;
	height: auto;
	z-index: 0;
}
.kv_inner .kv_01 {
	width: min(6.177%, 95.5px);
	left: 15.46%;
	top: 25.68%;
	animation: floating 2.4s ease-in-out infinite alternate-reverse;
}
.kv_inner .kv_02 {
	width: min(3.299%, 51px);
	left: 72.45%;
	top: 5.82%;
	animation: floating 2.4s .8s ease-in-out infinite alternate-reverse;
}
.kv_inner .kv_03 {
	width: min(3.655%, 56.5px);
	left: 90.06%;
	top: 44.59%;
	animation: floating 2.4s 1.6s ease-in-out infinite alternate-reverse;
}
.kv_inner .kv_04 {
	width: min(74.353%, 1149.5px);
	left: 13.71%;
	top: 0;
	animation: floating-s 2.4s ease-in-out infinite alternate-reverse;
}

@-webkit-keyframes floating {
	0% {
		-webkit-transform: translateY(-5%);
		        transform: translateY(-5%);
	}
	100% {
		-webkit-transform: translateY(5%);
		        transform: translateY(5%);
	}
}

@keyframes floating {
	0% {
		-webkit-transform: translateY(-5%);
		        transform: translateY(-5%);
	}
	100% {
		-webkit-transform: translateY(5%);
		        transform: translateY(5%);
	}
}
@-webkit-keyframes floating-s {
	0% {
		-webkit-transform: translateY(.5%);
		        transform: translateY(.5%);
	}
	100% {
		-webkit-transform: translateY(-.5%);
		        transform: translateY(-.5%);
	}
}
@keyframes floating-s {
	0% {
		-webkit-transform: translateY(.5%);
		        transform: translateY(.5%);
	}
	100% {
		-webkit-transform: translateY(-.5%);
		        transform: translateY(-.5%);
	}
}
/* 情報からさがす */
#kosodate_search {
	width: min(100%, 960px);
	margin: 60px auto 0;
}
#kosodate_search h2 {
	margin-bottom: 30px;
	font-size: 3.6rem;
	text-align: center;
}
#kosodate_search ul {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 50px;
	list-style: none;
	margin-bottom: 100px;
	text-align: center;
}
#kosodate_search li {
	font-size: 2.4rem;
}
#kosodate_search img {
	display: block;
	margin-bottom: 10px;
}
#kosodate_search a:link {
	color: var(--text-color);
	text-decoration: none;
}
@media (any-hover: hover) {
	#kosodate_search a:hover {
		text-decoration: underline;
	}
}

/*お知らせ*/
.info {
	position: relative;
	width: 100%;
	padding: 220px 40px 200px;
	background: url("/img/kosodate/bg_info_top.png") no-repeat 50% 0;
	background-size: 1794px auto;
	overflow: hidden;
}
.info:before, .info:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	z-index: -1;
}
.info:before {
	top: 20px;
	left: -10%;
	width: 120%;
	height: 200px;
	background-color: #cde8f5;
	border-radius: 60% 60% 0 0;
}
.info:after {
	top: 220px;
	left: 0;
	width: 100%;
	height: calc(100% - 220px);
	min-height: 260px;
	background: #cde8f5 url("/img/kosodate/bg_info_bottom.png") repeat-x left 50% bottom -110px;
	background-size: 2003px auto;
}

.info_inner {
	position: relative;
	width: min(100%, 1120px);
	margin: 0 auto;
	padding: 100px 80px 200px;
	z-index: 0;
}
.info_inner:before, .info_inner:after {
	content: "";
	display: block;
	position: absolute;
}
.info_inner:before {
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #fce8e6;
	border: 1px solid var(--site-color-text);
	border-radius: 10px;
	z-index: -2;
}
.info_inner:after {
	left: 25px;
	top: 25px;
	width: calc(100% - 50px);
	height: calc(100% - 50px);
	background-color: #faf9f6;
	border: 1px solid var(--site-color-text);
	border-radius: 8px;
	z-index: -1;
}
.info_inner h2 {
	margin-bottom: 60px;
	font-size: 3.6rem;
	text-align: center;
}
.info_inner ul {
	display: -webkit-flex;
	display:         flex;
	-webkit-flex-direction: column;
	        flex-direction: column;
	gap: 20px;
}
.info_inner ul li {
	display: -webkit-flex;
	display:         flex;
	-webkit-align-items: center;
	        align-items: center;
	gap: 20px;
	padding: 0 20px 20px 26px;
	background: url("/img/kosodate/bg_info_list.png") no-repeat 0 calc(50% - 10px);
	background-size: 16px auto;
	border-bottom: 1px solid var(--site-color-text);
}
.info_inner ul .article_date {
	-webkit-flex-shrink: 0;
	        flex-shrink: 0;
}
.info_inner .link_box {
	list-style: none;
	display: -webkit-flex;
	display:         flex;
	-webkit-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-justify-content: center;
	        justify-content: center;
	gap: 20px;
	width: 100%;
	margin-top: 40px;
}
.info_inner .link_box .link_rss {
	display: none;
}
.info_inner .link_box a {
	display: block;
	position: relative;
	min-width: 200px;
	width: -webkit-fit-content;
	width:    -moz-fit-content;
	width:         fit-content;
	padding: 10px 42px 10px 20px;
	background-color: var(--site-color-tertiary);
	border: 1px solid;
	border-radius: 8px;
	color: var(--site-color-text);
	font-size: 1.8rem;
	text-align: center;
	line-height: 1.25;
}
.info_inner .link_box a:before {
	content: "";
	position: absolute;
	right: 10px;
	top: 50%;
	width: 22px;
	height: 22px;
	margin-top: -11px;
	background: url("/img/kosodate/icon_arrow.svg") no-repeat 0 0;
	background-size: 22px 22px;
}
.info_inner .link_box a:link {
	text-decoration: none;
}
@media (any-hover: hover) {
	.info_inner .link_box a:hover, .info_inner .link_box a:focus {
		text-decoration: underline;
	}
}

.info_illust_01 {
	position: absolute;
	right: 80px;
	top: -30px;
	width: 241px;
	animation: floating 2.4s ease-in-out infinite alternate-reverse;
}

.info_illust_02 {
	position: absolute;
	left: -60px;
	top: 45%;
	width: 97px;
	animation: floating 2.4s -1.2s ease-in-out infinite alternate-reverse;
}

.info_illust_03 {
	position: absolute;
	left: 50px;
	bottom: 22px;
	width: 140px;
}

.info_illust_04 {
	position: absolute;
	right: 50px;
	bottom: 22px;
	width: 165px;
}

/* バナー広告 */
#footer_banner {
	clear: both;
	width: 1080px;
	width: var(--content-width, 1080px);
	margin: 0 auto 60px;
}

#footer_banner ul.banner_list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: -webkit-flex;
	display:         flex;
	-webkit-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-justify-content: flex-start;
	        justify-content: flex-start;
	-webkit-align-items: flex-start;
	        align-items: flex-start;
	gap: 20px;
}

#footer_banner ul.banner_list li {
	width: 200px;
}

#footer_banner ul.banner_list li img {
	width: 100%;
	height: auto;
	vertical-align: top;
}

.banner_text {
	display: block;
	padding: 10px;
	text-align: left;
}

.banner_text span {
	display: block;
}

.banner_text span:nth-child(2n) {
	font-size: 1.5rem;
	font-size: var(--fontsize-main-small, 1.5rem);
}

#kosodate_banner{
	padding: 50px 20px;
    background: linear-gradient(180deg, #FAF4EA 0%, #FAF4EA 40%, #FCE8E6 40%, #FCE8E6 100%);
}
#kosodate_banner h2{
	margin-bottom: 60px;
    font-size: 3.6rem;
    text-align: center;
}
/*swiper関連*/
.swiper{
	width: 70%;
	max-width: 900px;
}

.swiper-backface-hidden .swiper-slide{
	padding: 0 20px;
}
.swiper-backface-hidden .swiper-slide a{
	text-decoration: none;
}
.pg_class_slide_div_center{
	flex-direction: column-reverse;
}

#kosodate_ichioshi_banner{
	position: relative;
}
.tpl_site_14 #main{
	padding: 0;
}
#main_kosodate_top .swiper .swiper-caption{
	position: static;
	color: #000;
	background: #fff;
	padding: 20px 24px;
	border-radius: 0 0 20px 20px;
	white-space: normal;
	text-align: left;

}
#main_kosodate_top .swiper .swiper-wrapper{
	-webkit-align-items: flex-start;
	        align-items: flex-start;
}
#main_kosodate_top .swiper .kosodate_banner_ttl{
	font-size: 2.0rem;
	font-weight: bold;
	display: block;
	line-height: 1;
}

.swiper-slide img{
	width: 100%;
	border-radius: 20px 20px 0 0;
}

#main_kosodate_top button.swiper-button-start, 
#main_kosodate_top button.swiper-button-stop,
#main_kosodate_top button.swiper-button-prev,
#main_kosodate_top button.swiper-button-next{
	background: #cb4b51;
	box-shadow: none;
	webkit-box-shadow: none;

}
#main_kosodate_top button.swiper-button-prev,
#main_kosodate_top button.swiper-button-next{
	width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    top: 40%;
    border: none;
    font-size: 0;
    z-index: 99;
}
/*#main_kosodate_top button.swiper-button-prev{
	left: -60px;
}
#main_kosodate_top button.swiper-button-next{
	right: -60px;
}*/
/*#main_kosodate_top button.swiper-button-prev::before, 
#main_kosodate_top button.swiper-button-next::before{
	content: '';
    width: 14px;
    height: 14px;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    margin-block: auto;
}
#main_kosodate_top button.swiper-button-prev::before{
	right: 16px;
    transform: rotate(-135deg);
}
#main_kosodate_top button.swiper-button-next::before{
    right: 20px;
    transform: rotate(45deg);
}*/
#main_kosodate_top button.swiper-button-start, 
#main_kosodate_top button.swiper-button-stop{
	border-radius: 50%;
    border: none;
    font-size: 0;
    width: 34px;
    height: 34px;
    padding: 0;
    top: auto;
    bottom: 0;
    z-index: 99;
}
#main_kosodate_top button.swiper-button-stop span,
#main_kosodate_top button.swiper-button-start span {
	display: flex;
    align-items: center;
    justify-content: center;
}
#main_kosodate_top button.swiper-button-stop span::before{
	content: '';
    width: 10px;
    height: 14px;
    display: block;
    border-left: 3px solid #fff;
    border-right: 3px solid #fff;
}
#main_kosodate_top button.swiper-button-start span::before{
	content: '';
    background: #ffffff;
    height: calc(tan(60deg) * 15px / 2);
    width: 12px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    margin-right: -2px;
}
#main_kosodate_top .swiper-pagination-bullet{
	width: 20px;
	height: 20px;
}
#main_kosodate_top .swiper-pagination-bullet-active{
	background: #cb4b51;
}
#main_kosodate_top .swiper-pagination {
	margin-top: 40px;
}
#main_kosodate_top button.swiper-button-prev::after,
#main_kosodate_top button.swiper-button-next::after{
	content: '';
    width: 0;
    height: 0;
    border-style: solid;    
    top: 20px;
    bottom: 0;
    margin: auto;
    background: transparent;
    clip-path: none;
}
#main_kosodate_top button.swiper-button-prev::after{
	border-width: 10px 15px 10px 0;
    border-color: transparent #fff transparent transparent;
    position: absolute;
    left: 15px;
}
#main_kosodate_top button.swiper-button-next::after{
	border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    left: 18px;
}
/* ========== 背景色変更 ========== */
/* 共通 */
/* 黒 */
.color_black #kv *, .color_black #news * {
	background-color: transparent !important;
}
.color_black .info_inner:after {
	background-color: #000 !important;
}

/* 青 */
.color_blue #kv *, .color_blue #news * {
	background-color: transparent !important;
}
.color_blue .info_inner:after {
	background-color: #00f !important;
}

.color_black #main_kosodate_top .swiper-pagination-bullet,
.color_blue #main_kosodate_top .swiper-pagination-bullet{
	background: #fff !important;
}

/* ==================================================
PC ここまで
================================================== */
/* ==================================================
スマートフォン
================================================== */
@media screen and (max-width: 1080px) {
	/* ========== トップページ ========== */
	#mymainback {
		margin: 0;
	}
	/* 情報からさがす */
	#kosodate_search {
		margin-top: 40px;
		padding: 0 30px;
	}
	#kosodate_search h2 {
		margin-bottom: 20px;
		font-size: 3rem;
	}
	#kosodate_search ul {
		grid-template-columns: repeat(4, 1fr);
		gap: 40px;
		margin-bottom: 80px;
	}
	#kosodate_search li {
		font-size: 2.2rem;
	}
	/* バナー広告 */
	#footer_banner {
		width: auto;
		margin: 0 15px 40px;
		margin: 0 var(--mymainback-margin-side, 15px) 40px;
	}
	#footer_banner ul.banner_list {
		-webkit-justify-content: center;
		        justify-content: center;
		gap: 10px;
	}
	#footer_banner ul.banner_list li {
		width: calc(50% - 5px);
		max-width: 200px;
	}
	.banner_text span:nth-child(2n) {
		font-size: 1.3rem;
		font-size: var(--fontsize-main-small, 1.3rem);
	}
	/*お知らせ*/
	.info {
		padding: 110px 20px 100px;
		background-image: url("/img/kosodate/bg_info_top_sp.png");
		background-size: 100% auto;
	}
	.info:after {
		aspect-ratio: 767/142;
		background-position: left 50% bottom -20px;
		background-size: 800px auto;
	}
	.info_inner {
		padding: 100px 30px 150px;
	}
	.info_inner:after {
		left: 15px;
		top: 15px;
		width: calc(100% - 30px);
		height: calc(100% - 30px);
	}
	.info_inner h2,
	#kosodate_banner h2 {
		margin-bottom: 30px;
		font-size: 3rem;
	}
	.info_inner ul {
		gap: 10px;
	}
	.info_inner ul li {
		position: relative;
		-webkit-flex-direction: column;
		        flex-direction: column;
		-webkit-align-items: flex-start;
		        align-items: flex-start;
		gap: 10px;
		padding: 0 10px 10px 36px;
		background-position: 0 calc(50% - 8px);
	}
	.info_illust_01 {
		right: -5px;
		top: -5px;
		width: min(34.87%, 136px);
	}
	.info_illust_02 {
		left: 5px;
		top: 5px;
		width: min(14.1%, 55px);
	}
	.info_illust_03 {
		left: 20px;
		bottom: 13px;
		width: min(29.2%, 114px);
	}
	.info_illust_04 {
		right: 20px;
		bottom: 13px;
		width: min(26.9%, 105px);
	}
}
@media screen and (max-width: 767px) {
	/* キービジュアル */
	#kv {
		padding: 0 15px;
	}
	.kv_inner {
		aspect-ratio: 1534/2054;
	}
	.kv_inner .kv_01 {
		width: min(10.081%, 76px);
		left: 0;
		top: 72%;
	}
	.kv_inner .kv_02 {
		width: min(5.859%, 45px);
		left: 87.19%;
		top: 24.29%;
	}
	.kv_inner .kv_03 {
		width: min(7.629%, 58px);
		left: 80.38%;
		top: 66.89%;
	}
	.kv_inner .kv_04 {
		width: min(98.64%, 758.5px);
		left: 2.01%;
		top: 18.78%;
	}
	#kosodate_search {
		max-width: 480px;
	}
	#kosodate_search ul {
		grid-template-columns: repeat(2, 1fr);
	}
	.slide_wrap{
		width: 100%;
	}
	#main_kosodate_top button.slide_control_prev {
    	left: -10px;
	}
	#main_kosodate_top button.slide_control_next {
    	right: -10px;
	}
}
@media screen and (max-width: 600px) {
	.swiper {
    	width: 100%;
	}
	#kosodate_banner{
		padding: 50px 10px 30px;
	}
	#kosodate_banner{
		background: linear-gradient(180deg, #FAF4EA 0%, #FAF4EA 54%, #FCE8E6 54%, #FCE8E6 100%);
	}
	.sp_br{
		display: block;
	}
}
/* ==================================================
スマートフォン ここまで
================================================== */