/**
 *  UK
 *************************/
.uk-button-transparent {
    border: 1px solid white;
    color: white;
    background-color: rgba(255,255,255,.1);
    backdrop-filter: blur(10px) brightness(120%);
    -webkit-backdrop-filter: blur(10px) brightness(120%);
}
.uk-dark * {
    color: rgba(0,0,0,.7) !important;
}
.uk-dark a:hover {
    color: rgba(0,0,0,1) !important;
} 
/**
 *  Common Style
 *************************/
body {
    line-height: 1.7;
}
/* Button */
.button1 {
    border: 1px solid #1865a7;
    color: #1865a7;
    background-color: rgba(89, 161, 195, 0.2);
    backdrop-filter: blur(10px) brightness(120%);
    -webkit-backdrop-filter: blur(10px) brightness(120%);
}
.button2 {
    border: 1px solid #1865a7;
    color: #ffffff;
    background-color: rgba(24, 101, 167, 0.4);
    backdrop-filter: blur(10px) brightness(120%);
    -webkit-backdrop-filter: blur(10px) brightness(120%);
}
/**
 *  Index
 *************************/
.catchup-block {
    height: 600px;
    padding-top: 80px;
}
.self-estate-block {
    position: relative;
}
.self-estate-block::before {
    content: "";
    background: url(/img/about.svg);
    background-repeat: no-repeat;
    background-position: top left;
    width: 50%;
    height: 100px;
    position: absolute;
    top: 10px;
    left: 10px;
}
.self-estate-block::after {
    content: "";
    background: url(/img/self-estate.svg);
    background-repeat: no-repeat;
    background-position: bottom right;
    width: 50%;
    height: 100px;
    position: absolute;
    bottom: 10px;
    right: 10px;
}
.agreement {
    padding: 10px;
    border: 1px solid #aaa;
    height: 400px;
    overflow: auto;
}
.agreement b {
    display: block;
    margin-bottom: 0;
    margin-top: 15px;
}
.agreement ul {
    margin-bottom: 0;
    line-height: 1;
    margin-left: 20px;
}
.step-box {
    margin-bottom: 15px;
    clear: both;
    display: flex;
}
.icon-box {
    padding: 10px;
    margin-bottom: 15px;
}
.icon-box img {
    width: 100px;
    margin: auto;
}
.icon-box h3 {
    color: #0f4070;
}
.step-box .step,
.step-box h3 {
    font-style: italic;
    color: #1865a7;
}
.step-box h3 {
    margin-bottom: 0;
}
.step-box p {
    margin-top: 0;
}

/* Media Query
================================================ */

/* 大ディスプレイ */
@media screen 
	and (min-width: 1200px) {
	
}
/* 小ディスプレイ */
@media screen 
	and (max-width: 1024px) {
	
}
/* タブレット（Landscape） */
@media screen 
	and (min-width:769px) 
	and (max-width:1024px) {

}
/* タブレット（Portrait） */
@media screen 
	and (min-width:736px)
	and (max-width:768px) {
	
}
/* タブレット（Portrait） + スマートフォン */
@media screen 
	and (max-width:768px) {
	
}
/* スマートフォン */
@media screen 
	and (max-width:736px) {
    .uk-navbar-item,
	.uk-navbar-nav>li>a,
	.uk-navbar-toggle {
		min-height: 60px;
	}
    .catchup-block {
        height: 350px;
        padding-top: 80px;
    }
    .uk-section .section-title-box {
        border-right: none;
    }
    .uk-section .section-title-box h3 {
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid #ccc;
    }
    
    .self-estate-block::before {
        width: 90%;
    }
    .self-estate-block::after {
        width: 90%;
    }
    .margin-box > div {
        margin-bottom: 60px;
    }
    .margin-box > div:last-child {
        margin-bottom: 0;
    }
}
/* スマートフォン */
@media screen
	and (max-width:320px) {
	
}