@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* clearfix */
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}
/* flex */
.flex, .flex-a, .flex-b, .flex-c {
    display: flex;
    flex-wrap: wrap;
}
.flex-a {
    justify-content: space-around;
}
.flex-b {
    justify-content: space-between;
}
.flex-c {
    justify-content: center;
}
/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.en {
    font-weight: 400;
    font-family: 'Varela Round', sans-serif;
}
.blue {
    color: #2CA4E4;
}
@media all and (min-width: 897px) {
    .content {
        max-width: 1208px;
        margin: 0 auto;
        position: relative;
    }
}
@media all and (max-width: 896px) {
    .content {
        margin: 0 20px;
    }
}
/*------------------------------------------------------------
	fadein
------------------------------------------------------------*/
.fadein {
    opacity: 0.1;
    transform: translate(0, 100px);
    transition: all 1500ms;
}
.fadein.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}
/*------------------------------------------------------------
	headline01
------------------------------------------------------------*/
.headline01 {
    margin-bottom: 26px;
}
.headline01 .ttl-sub {
    padding: 5px 0 0 71px;
    min-height: 106px;
    display: inline-flex;
    align-items: center;
    color: #2CA4E4;
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.1em;
    background: url(../../images/common/icon01.svg) no-repeat left top;
    box-sizing: border-box;
}
.headline01 .en {
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
    .headline01 {
        margin-bottom: 32px;
    }
    .headline01 .ttl-sub {
        padding: 0 0 0 42px;
        min-height: 65px;
        font-size: 2.4rem;
        background-size: 64px auto;
    }
    .headline01 .en {
        padding-top: 3px;
        font-size: 2.4rem;
    }
}
@media all and (max-width: 359px) {
    .headline01 .ttl-sub {
        font-size: 2.2rem;
        letter-spacing: 0.05em;
    }
}
/*------------------------------------------------------------
	com-btn
------------------------------------------------------------*/
.com-btn a {
    padding: 10px;
    color: #fff;
    font-size: 2.4rem;
    letter-spacing: 0.1em;
    width: 332px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 82px;
    background: #2CA4E4;
    box-shadow: 0px 10px 0px 0px #DAEEF9;
    box-sizing: border-box;
}
.com-btn a .txt {
    display: inline-block;
    padding-right: 30px;
    background: url(../../images/common/arrow02.svg) no-repeat right center;
}
@media all and (min-width: 897px) {
    .com-btn a:hover {
        background-color: #2889BB;
    }
}
@media all and (max-width: 896px) {
    .com-btn a {
        margin: 0 auto;
        width: 100%;
        height: 60px;
        max-width: 200px;
        font-size: 1.8rem;
        box-shadow: 0px 6px 0px 0px #DAEEF9;
    }
    .com-btn a .txt {
        padding-right: 18px;
        background-size: 15px auto;
    }
}