@charset "UTF-8";


/* header
-------------------*/
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 75px;
    padding: 0 20px;
}

.h-logo {
    width: 120px;
}

.h-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.drawer-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.h-tel {
    width: 100%;
}

.h-mail {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 50px;
    border-radius: 10px;
    background-color: #30a0cc;
    font-family: "KiwiMaru";
    font-size: 16px;
    line-height: 1;
    color: #fff;
}

.h-mail::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 15px;
    margin-top: 2px;
    margin-right: 10px;
    background: url(/images/common/mail.png) no-repeat center / contain;
}

.h-line {
    width: 35px;
    height: 35px;
}

.h-nav {
    width: 100%;
    margin-top: 15px;
}

.h-nav_list {
    display: flex;
    justify-content: flex-end;
    gap: 40px;
    font-family: "KiwiMaru";
    line-height: 1;
}

/* main-vis
-------------------*/
.main-vis {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: url(/images/key/mv_bg.png) no-repeat center / cover;
    position: relative;
}

.mv-main {
    margin-left: -40%;
    position: relative;
}

.mv-sub_01 {
    width: 40%;
    position: absolute;
    top: 15%;
    right: 3%;
    z-index: 1;
}

.mv-sub_02 {
    width: 50%;
    position: absolute;
    top: 40%;
    right: -15%;
}

.mv-sub_01 img,
.mv-sub_02 img {
    border-radius: 15px;
}

.mv-title {
    margin-top: -10%;
    margin-left: 10px;
    position: relative;
    z-index: 1;
    line-height: 1;
}

.mv-title::before {
    content: "";
    width: 20%;
    height: 90%;
    background: url(/images/key/title_illust.png) no-repeat bottom / contain;
    position: absolute;
    right: 25%;
    bottom: 39%;
    z-index: -1;
}

.mv-title .txt {
    display: inline-block;
    padding: 2% 3% 2% 4%;
    border-radius: 2.5vw;
    font-family: "KiwiMaru";
    font-size: 46px;
    font-size: max(20px, 5.333vw);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.04em;
    color: #fff;
    white-space: nowrap;
    position: relative;
}

.mv-title .txt:nth-of-type(1) {
    background: linear-gradient(160deg, #2E7FC8 0%, #3694CC 100%);
}

.mv-title .txt:nth-of-type(2) {
    margin-top: 2%;
    background: linear-gradient(160deg, #2E7FC8 0%, #67DBE5 100%);
}

.mv-title .txt .small {
    font-size: max(18px, 4.8vw);
}

.mv-title .txt::after {
    content: "";
    width: calc(100% - 6vw);
    height: 15%;
    background: url(/images/key/title_border.png) repeat left;
    position: absolute;
    left: 2.5vw;
    bottom: 18%;
    opacity: 0.5;
}

/* sub-vis
-------------------*/
.sub-vis {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 300px;
    position: relative;
}

.sv-title {
    padding: 5px 20px;
    border-radius: 2.5vw;
    background: linear-gradient(160deg, #3492D1 0%, #48B2D5 100%);
    position: absolute;
    z-index: 1;
}

.sv-title::before {
    content: "";
    width: 62px;
    height: 93px;
    background: url(/images/key/title_illust.png) no-repeat bottom / contain;
    position: absolute;
    top: -93px;
    left: 5px;
}

.sv-title .txt {
    font-family: "KiwiMaru";
    font-size: clamp(24px, 6.4vw, 30px);
    font-weight: 500;
    line-height: calc(66 / 46);
    letter-spacing: 0.04em;
    color: #fff;
    white-space: nowrap;
    position: relative;
}

.sv-title .txt::after {
    content: "";
    width: 105%;
    height: 25%;
    background: url(/images/key/title_border.png) repeat left;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10%;
    opacity: 0.5;
}

.sv-img {
    width: 100%;
    height: 100%;
}

.sv-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* top
-------------------*/
.top-about {
    overflow: hidden;
    padding-bottom: 80px;
}

.top-about_title {
    display: inline-block;
    margin-bottom: 40px;
    font-family: "KiwiMaru";
    font-weight: 500;
    letter-spacing: 0.04em;
    position: relative;
}

.top-about_title::after {
    content: "";
    width: 36px;
    height: 61px;
    background: url(/images/top/about_title_deco.png) no-repeat center / contain;
    position: absolute;
    top: 50px;
    right: -40px;

}

.top-about_title .en {
    margin-bottom: 5px;
    font-size: 18px;
    color: #30a0cc;
}

.top-about_title .ja {
    margin-bottom: 0px;
    font-size: 24px;
    line-height: 1.2;
}

.top-about_title .border {
    display: inline-block;
    position: relative;
}

.top-about_title .border::after {
    content: "";
    width: calc(100% - 0px);
    height: 12px;
    background: url(/images/top/title_border.png) repeat left;
    position: absolute;
    left: 0px;
    bottom: 3px;
    z-index: -1;
}

.top-about_title .ja-deco {
    display: inline-block;
    font-size: 30px;
    background: url(/images/common/text-bg.jpg) no-repeat top -70px left -70px;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    position: relative;
}

.top-about_wrap {
    position: relative;
}

.top-about_wrap:nth-of-type(1) .top-about_img::after {
    content: "";
    width: 150px;
    height: 150px;
    background: url(/images/top/about_illust01.png) no-repeat center / contain;
    position: absolute;
    right: -60px;
    bottom: -10px;
    z-index: 1;
}

.top-about_img {
    margin-bottom: 20px;
    position: relative;
}

.top-about_img img {
    border-radius: 15px;
}

.top-about_wrap:nth-of-type(2) .top-about_img::after {
    content: "";
    width: 170px;
    height: 120px;
    background: url(/images/top/about_illust02.png) no-repeat center / contain;
    position: absolute;
    bottom: -15px;
    right: -40px;
    z-index: 1;
}

.top-about_txt {
    margin-bottom: 40px;
}

.top-service {
    padding-bottom: 80px;
    background: url(/images/top/service_bg.jpg) no-repeat center / cover;
    overflow: hidden;
}

.top-service_title {
    margin-bottom: 40px;
    font-family: "KiwiMaru";
    font-weight: 500;
    letter-spacing: 0.04em;
    text-align: center;
}

.top-service_title .en {
    margin-bottom: 5px;
    font-size: 18px;
    color: #30a0cc;
    position: relative;
}

.top-service_title .ja {
    font-size: 28px;
    position: relative;
}

.top-service_title .en::before,
.top-service_title .en::after {
    content: "";
    display: inline-block;
    width: 25%;
    height: 8px;
    transform: translateY(-2px);
}

.top-service_title .en::before {
    margin-right: 30px;
    background: url(/images/about/feature_title_deco_l.png) no-repeat right / contain;
}

.top-service_title .en::after {
    margin-left: 30px;
    background: url(/images/about/feature_title_deco_l.png) no-repeat left / contain;
}

.top-service_list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 80px;
}

.top-service_item {
    width: 100%;
    position: relative;
}

.top-service_item_img {
    width: 100%;
    height: 100%;
    position: relative;
}

.top-service_item_img::before {
    content: "";
    width: 100%;
    height: 100%;
    border: 10px solid #30a0cc;
    border-radius: 15px;
    opacity: 0.15;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.top-service_item_img img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.top-service_item_txt {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    padding: 5px;
    border-radius: 10px;
    background-color: #30a0cc;
    font-family: "KiwiMaru";
    font-size: clamp(18px, 4.8vw, 24px);
    color: #fff;
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
}

.top-voice {
    background-color: #30a0cc;
}

.top-voice_title {
    margin-bottom: 40px;
    font-family: "KiwiMaru";
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #fff;
    text-align: center;
}

.top-voice_title .en {
    /* display: flex;
    justify-content: space-between;
    align-items: center; */
    margin-bottom: 5px;
    font-size: 18px;
    position: relative;
}

.top-voice_title .ja {
    font-size: 28px;
    position: relative;
}

.top-voice_title .en::before,
.top-voice_title .en::after {
    content: "";
    display: inline-block;
    width: 30%;
    height: 8px;
    transform: translateY(-2px);
}

.top-voice_title .en::before {
    margin-right: 30px;
    background: url(/images/top/voice_title_deco.png) no-repeat right / contain;
}

.top-voice_title .en::after {
    margin-left: 30px;
    background: url(/images/top/voice_title_deco.png) no-repeat left / contain;
}

.top-voice_empty {
    color: #fff;
}

.top-voice_list {
    margin-bottom: 50px;
}

.top-faq {
    padding-bottom: 100px;
    /* background: url(/images/top/faq_bg.jpg) no-repeat center / cover; */
}

.top-faq_head {
    display: flex;
    align-items: center;
    width: 100%;
    height: 120px;
    padding-left: 20px;
    margin-bottom: 35px;
    border-radius: 20px;
    background: url(/images/top/faq_bg.png) no-repeat center right -100px / cover;
    background-color: #30a0cc;
}

.top-faq_title {
    font-family: "KiwiMaru";
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #fff;
}

.top-faq_title .en {
    margin-bottom: 5px;
    font-size: 18px;
    letter-spacing: 0.2em;
}

.top-faq_title .ja {
    font-size: 24px;
}

.top-faq_list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.top-faq_item {
    width: 100%;
    min-height: 150px;
    padding: 30px 20px;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 1px 1px 10px #e2edee;
}

.top-faq_item_title {
    padding-left: 50px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.5;
    position: relative;
}

.top-faq_item_title::before,
.top-faq_item_txt::before {
    width: 35px;
    height: 35px;
    padding: 6px 9px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    position: absolute;
    top: -5px;
    left: 0;
}

.top-faq_item_title::before {
    content: "Q";
    background-color: #30a0cc;
    font-family: "KiwiMaru";
    color: #fff;
}

.top-faq_item_txt {
    margin-top: 20px;
    padding-left: 50px;
    font-size: 16px;
    font-weight: 400;
    line-height: calc(30 / 16);
    position: relative;
}

.top-faq_item_txt::before {
    content: "A";
    background-color: #fdf2ea;
    font-family: "KiwiMaru";
    color: #ee8433;
}

.top-news {
    padding: 60px 0;
    background-color: #30a0cc;
}

.top-news_wrapper {
    position: relative;
}

.top-news_title {
    margin-bottom: 25px;
    font-family: "KiwiMaru";
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #fff;
}

.top-news_title .en {
    margin-bottom: 5px;
    font-size: 18px;
}

.top-news_title .ja {
    font-size: 28px;
    position: relative;
}

.top-news_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 45px;
    margin: 50px auto 0;
    border-radius: 27.5px;
    background-color: #fff;
    letter-spacing: 0.08em;
    color: #30a0cc;
    position: relative;
}

.top-news_btn::after {
    content: "";
    width: 17px;
    height: 17px;
    background: url(/images/common/cmn-btn_arw--blue.png) no-repeat center / contain;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.top-news_content {
    color: #fff;
}

.top-news_empty {
    color: #fff;
}

/* about
-------------------*/
.concept_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.concept_img img {
    border-radius: 15px;
}

.feature {
    padding-bottom: 100px;
}

.feature_title .en {
    position: relative;
}

.feature_title .en::before,
.feature_title .en::after {
    content: "";
    display: inline-block;
    width: 25%;
    height: 8px;
    transform: translateY(-2px);
}

.feature_title .en::before {
    margin-right: 30px;
    background: url(/images/about/feature_title_deco_l.png) no-repeat right / contain;
}

.feature_title .en::after {
    margin-left: 30px;
    background: url(/images/about/feature_title_deco_l.png) no-repeat left / contain;
}

.feature_title .ja {
    font-size: 24px;
    line-height: 1.3;
    position: relative;
}

.feature_item {
    position: relative;
    counter-increment: number;
}

.feature_item:not(:last-child) {
    margin-bottom: 50px;
}

.feature_item_title {
    margin-bottom: 25px;
    font-family: "KiwiMaru";
    font-weight: 500;
    letter-spacing: 0.04em;
}

.feature_item_title::before {
    content: counter(number, decimal-leading-zero)".";
    display: block;
    margin-bottom: 5px;
    font-size: 20px;
    color: #4eaad1;
}

.feature_item_title .txt {
    font-size: 20px;
}

.feature_item_title .border {
    display: inline-block;
    position: relative;
}

.feature_item_title .border::after {
    content: "";
    width: calc(100% - 10px);
    height: 10px;
    background: url(/images/about/title_border.png) repeat left;
    position: absolute;
    left: 7px;
    bottom: 2px;
    z-index: -1;
}

.feature_item_title .txt-deco {
    display: inline-block;
    font-size: 26px;
    background: url(/images/common/text-bg.jpg) no-repeat top -30px left -30px / cover;
    background-size: 120%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    position: relative;
}

.feature_item_img {
    margin-bottom: 20px;
    position: relative;
}

.feature_item_img img {
    border-radius: 15px;
}

.feature_item_txt {
    line-height: 1.8;
}

.area {
    background-color: #30a0cc;
}

.area_wrapper {
    position: relative;
}

.area_title {
    margin-bottom: 25px;
    font-family: "KiwiMaru";
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #fff;
}

.area_title .en {
    margin-bottom: 5px;
    font-size: 18px;
}

.area_title .ja {
    font-size: 28px;
}

.area_txt {
    margin-bottom: 30px;
    color: #fff;
}

.area_img {
    width: 280px;
    margin: 0 auto;
    position: relative;
}

.info {
    padding-bottom: 0;
}

.info_map {
    margin-top: 80px;
}

.info_map_title {
    margin-bottom: 15px;
    font-family: "KiwiMaru";
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-align: center;
}

.info_map_title::before {
    content: "";
    display: inline-block;
    width: 13px;
    height: 21px;
    margin-right: 5px;
    background: url(/images/about/pin.png) no-repeat center / contain;
    transform: translateY(3px);
}

.info_map_ifrem {
    width: 100%;
    height: 300px;
}

.info_map_ifrem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info_map_ifrem iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* service
-------------------*/
.service_title .ja-deco {
    font-size: 24px;
}

.service_item:not(:last-child) {
    margin-bottom: 60px;
}

.service_item_title {
    width: 100%;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #30a0cc;
    font-family: "KiwiMaru";
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.4;
    text-align: center;
    color: #fff;
}

.service_item_img {
    width: 100%;
    height: 32vw;
    min-height: 120px;
    margin-top: 10px;
    border-radius: 5px;
}

.service_item_img img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

.service_txt {
    margin-top: 15px;
}

.service_menu_list {
    margin-top: 40px;
}

.service_menu_item {
    padding: 25px 20px;
    border: 10px solid #eaf5fa;
    border-radius: 15px;
    background-color: #fff;
}

.service_menu_item:not(:last-child) {
    margin-bottom: 30px;
}

.service_menu_item_head {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #d9d9d9;
}

.service_menu_item_title {
    width: 85%;
    font-family: "KiwiMaru";
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.4;
}

.service_menu_item_fee {
    flex: 1;
    font-family: "KiwiMaru";
    font-size: 14px;
    line-height: 1.4;
    color: #30a0cc;
    text-align: right;
}

.service_menu_item_txt {
    margin-top: 15px;
}


/* voice
-------------------*/
.voice {
    padding-bottom: 100px;
}

.voice_item {
    width: 100%;
    padding: 20px;
    border: 10px solid #eaf5fa;
    border-radius: 15px;
    background-color: #fff;
}

.voice_item:not(:last-child) {
    margin-bottom: 50px;
}

.top-voice_list .voice_item:not(:last-child) {
    margin-bottom: 30px;
}

.voice_item_head {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.voice_item_icon {
    width: 65px;
}

.voice_item_wrap {
    flex: 1;
    margin-left: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #d9d9d9;
}

.voice_tag_list {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    margin-bottom: 5px;
}

.voice_tag_list_item {
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #30a0cc;
    font-family: "KiwiMaru";
    font-size: 14px;
    line-height: 1;
    color: #fff;
}

.voice_item_title {
    font-family: "KiwiMaru";
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

.voice_img {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
    margin-top: 20px;
    margin-bottom: 50px;
    position: relative;
}

.voice_img::after {
    content: "";
    width: 25%;
    height: 80px;
    background: url(/images/voice/arrow.png) no-repeat center / contain;
    position: absolute;
    top: 35%;
    right: -3%;
    transform: rotate(-55deg) scale(-1, 1);
}

.voive_before {
    width: 80%;
    height: 40vw;
    min-height: 150px;
    position: relative;
}

.voive_before::after {
    content: "Before";
    display: block;
    width: 100%;
    height: 25px;
    margin-top: 5px;
    border-radius: 5px;
    background-color: #bfbfbf;
    font-family: "KiwiMaru";
    font-size: 14px;
    line-height: 25px;
    color: #fff;
    text-align: center;
}

.voive_before img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.voive_after {
    width: 100%;
    height: 50.666vw;
    min-height: 190px;
    position: relative;
}

.voive_after::after {
    content: "After";
    display: block;
    width: 100%;
    height: 25px;
    margin-top: 5px;
    border-radius: 5px;
    background-color: #ee8433;
    font-family: "KiwiMaru";
    font-size: 14px;
    line-height: 25px;
    color: #fff;
    text-align: center;
}

.voive_after img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
}

/* faq
-------------------*/
.faq {
    padding-bottom: 100px;
}

.faq_item {
    /* width: 100%; */
    min-height: 150px;
    padding: 30px 20px;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 1px 1px 10px #e2edee;
}

.faq_item:not(:last-child) {
    margin-bottom: 30px;
}

.faq_item_title {
    padding-left: 50px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.4;
    position: relative;
}

.faq_item_title::before,
.faq_item_txt::before {
    width: 35px;
    height: 35px;
    padding: 6px 9px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    position: absolute;
    top: -5px;
    left: 0;
}

.faq_item_title::before {
    content: "Q";
    background-color: #30a0cc;
    font-family: "KiwiMaru";
    color: #fff;
}

.faq_item_txt {
    margin-top: 20px;
    padding-left: 50px;
    font-size: 16px;
    font-weight: 400;
    position: relative;
}

.faq_item_txt::before {
    content: "A";
    background-color: #fdf2ea;
    font-family: "KiwiMaru";
    color: #ee8433;
}



/* inc-contact
-------------------*/
.inc-contact {
    width: 100%;
    padding: 50px 0;
    background: url(/images/inc-contact/bg.jpg) no-repeat center / cover;
}

.inc-contact_box {
    width: 100%;
    margin: 0 auto;
    padding: 10px 10px 30px;
    border: 10px solid #eaf5fa;
    background-color: #fff;
    border-radius: 15px;
}

.inc-contact_title {
    width: 100%;
    padding: 12px 0;
    border-radius: 5px;
    background-color: #30a0cc;
    font-family: "KiwiMaru";
    color: #fff;
    text-align: center;
}

.inc-contact_title .en {
    font-size: 18px;
    letter-spacing: 0em;
}

.inc-contact_title .ja {
    font-size: 22px;
    letter-spacing: 0.06em;
}

.inc-contact_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.inc-contact_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 55px;
    border: 1px solid #d9d9d9;
    border-radius: 35px;
    background-color: #fff;
    font-weight: 700;
    letter-spacing: 0.08em;
}

/* footer
-------------------*/
.footer {
    border-top: 1px solid #d9d9d9;
    text-align: center;
}

.f-logo {
    display: inline-block;
    width: 140px;
    margin-top: 60px;
}

.f-nav {
    margin-top: 50px;
}

.f-nav_item {
    position: relative;
}

.f-nav-sub {
    margin-top: 25px;
}

.f-nav-sub_item {
    position: relative;
    font-size: 12px;
}

.copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    margin-top: 50px;
    background-color: #30a0cc;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0em;
    color: #fff;
}


/*# sourceMappingURL=style_sp.css.map */