body{
    margin: 0px;
    font-family: 'M PLUS Rounded 1c', 'Hiragino Maru Gothic ProN', sans-serif;
    background-image: url("background.png"); 
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed; 
    background-position: center center;
}

.header{
    width: 100%;
    height: auto;
    background-color: #FC9DB8;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    margin: 0px;
}

.firstview{
    width: 100%;
    height: auto;
    padding-bottom: 15px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}
.title{
    width: 100%;
    height: auto;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    margin: 0px;
    padding-top: 150px;
    padding-bottom: 150px;
    position: relative;
    z-index: 2;
}
.info{
    background-color: #00000020;
    width: 680px;
    margin-left: auto;
    margin-right: auto;
    font-size: 12px;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}
.back_layer{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: #00000080;
    z-index: 0;
}
.dot_layer{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background-image: url(hero_bg_dot.png);
    opacity: 0.2;
    z-index: 1;
}

.contents{
    width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.introduction{
    background-color: #FFF0F5;
    padding: 30px;
    border-radius: 10px;
    margin-top: 80px;
    position: relative;
}

.icon{
    width: 60px;
    height: 60px;
    position: absolute;
    left: -30px;
    top: -30px;
}

.subtitle{
    color: #FF69B4;
    font-size: 24px;
    border-bottom: 2px solid #FFB6C1;
    padding-bottom: 10px;
    margin-top: 80px;
}

.subtitle2{
    color: #FC9DB8;
    font-size: 18px;
    padding-bottom: 10px;
    margin-top: 80px;
    text-align: center;
}


.kirby_profile {
	background-color: #FFF5FA;
	border-radius: 12px;
	padding: 20px;
	margin-top: 40px;
	box-shadow: 0 4px 10px rgba(255, 182, 193, 0.2);
}

.kirby_list {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 14px;
	line-height: 1.8;
}

.kirby_list li {
	border-bottom: 1px dashed #FFB6C1;
	padding: 5px 0;
}






.others{
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.others_viewport{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 20px 20px;
    overflow: hidden;
}

.others_buttom{
    width: 235px;
    height: 152px;
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    transition: left 0.3s ease-out;
}
.others_image{
    display: block;
    width: 100%;
    height: 100%;
}
.others_text{
    color: #000000;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.others_back_layer{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: #FFffff50;
    z-index: 0;
}
.others_buttom:hover .others_black_layer{
    opacity: 0;
}

.others_buttom:hover .others_image{
    transform: scale(1.2);
    transition: transform 0.5s ease-out;
}

.links_prev,
.links_next{
    width: 40px;
    height: 40px;
    display: block;
    background-color: #FFF;
    border: 0px;
    padding: 0;
}
.links_prev{
    position: absolute;
    left: -60px;
    top: 50px;
}
.links_next{
    position: absolute;
    right: -60px;
    top: 50px;
}
.links_prev.disable,
.links_next.disable{
    opacity: 0.2;
}