@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

/* ========================================================================
    reset
======================================================================== */

/* CSS Document */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
	line-height: 1;
	font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
ol, ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}
a {
    margin:0;
    padding:0;
    vertical-align:baseline;
    text-decoration: none;
    color: inherit;
}
b {
	font-weight: bold;
}
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

img {
    vertical-align: bottom;
    line-height: 1.0;
}

button {
    line-height: 1.0;
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

/* ========================================================================
    style
======================================================================== */

/* ====================================
共通
==================================== */

html {
    font-size: 62.5%;
}

body {
    width: 100%;
    min-width: 320px;
    font-family: 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Arial', 'Yu Gothic', 'Meiryo', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    background: #fff;
    color: #000;
    -webkit-text-size-adjust: 100%;
    position: relative;
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

a {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:hover {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    opacity: 0.7;
}

*:focus {
	outline: none;
}

img {
    width: auto;
    max-width: 100%;
    height: auto;
    border-style: none;
    vertical-align: bottom;
}

p {
    word-break: break-all;
    line-height: 1.4;
}

.pc { display: block; }
.sp { display: none; }

@media screen and (max-width: 767px){
    .pc { display: none; }
    .sp { display: block; }
}

.bold { font-weight: bold; }
.black { font-weight: 900; }

.al_c { text-align: center !important; }
.al_r { text-align: right !important; }
.al_l { text-align: left !important; }

.indent_1 { padding-left: 1em; text-indent: -1em; }
span.indent_1 { display: inline-block; }

.inner {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 40px;
}

.bg_01 { background-color: #00b4de; }
.bg_02 { background-color: #33c3e5; }

@media screen and (max-width: 767px) {
    .inner {
        padding: 0 20px;
    }
}

/* ====================================
header
==================================== */

.header_inner {
    max-width: 790px;
    margin: 0 auto;
    padding: 20px 0;
}
.header .logo_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}
.header .logo {
    line-height: 1;
}
.header .logo1 {
    width: 34%;
    padding-right: 2%;
}
.header .logo2 {
    width: 21%;
    padding-left: 4.5%;
    position: relative;
}
.header .logo2::before {
    content: '';
    width: 4px;
    height: 100%;
    background-color: #000;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
    .header_inner {
        padding: 10px 0;
    }
    .header .logo2::before {
        width: 2px;
    }
}

/* ====================================
footer
==================================== */

.footer {
    padding: 40px 0;
    text-align: center;
}

.footer small {
    font-size: 2.2rem;
    color: #333;
}

@media screen and (max-width: 767px) {
    .footer {
        padding: 20px 0;
    }
    .footer small {
        font-size: 3.2vw;
    }
}

/* ====================================
mv_area
==================================== */

.mv_area {
    padding-top: 10px;
}

@media screen and (max-width: 767px) {
    .mv_area {
        padding-top: 5px;
    }
}

/* ====================================
catch
==================================== */

.catch_area {
    margin-top: -10px;
}
.catch {
    padding: 50px 0;
    position: relative;
}
.catch::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 35px 50px 0 50px;
    border-color: #33c3e5 transparent transparent transparent;
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.catch_txt {
    background-color: #fff;
    padding: 20px 40px;
    border-radius: 24px;
    position: relative;
}
.catch_txt::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 35px 50px 0 50px;
    border-color: #fff transparent transparent transparent;
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.catch_arrow {
    height: 60px;
    position: relative;
}
.catch_arrow::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 35px 50px 0 50px;
    border-color: #00b4de transparent transparent transparent;
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
    .catch_area {
        margin-top: -1.33vw;
    }
    .catch {
        padding: 6.6vw 0;
    }
    .catch::after {
        border-width: 4.8vw 6.66vw 0 6.66vw;
        bottom: -4.8vw;
    }
    .catch_txt {
        padding: 2.66vw 5.33vw;
        border-radius: 3.2vw;
    }
    .catch_txt::after {
        border-width: 4.8vw 6.66vw 0 6.66vw;
        bottom: -4.8vw;
    }
    .catch_arrow {
        height: 8vw;
    }
    .catch_arrow::after {
        border-width: 4.8vw 6.66vw 0 6.66vw;
        bottom: -4.8vw;
    }
}

/* ====================================
btn_area
==================================== */

.btn_area {
    padding: 65px 0 55px;
}
.btn_wrap {
    display: flex;
    align-items: center;
}
.btn_wrap a {
    display: block;
}
.ios {
    width: 43.8%;
    margin-right: 15px;
}
.android {
    width: 54.33%;
}
.btn_txt {
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 0.2em;
}

@media screen and (max-width: 767px) {
    .btn_area {
        padding: 8.53vw 0 7.46vw;
    }
    .ios {
        margin-right: 10px;
    }
    .btn_txt {
        font-size: 3.73vw;
    }
}

/* ====================================
message
==================================== */

.message {
    padding-top: 90px;
}
.message_txt {
    width: 79.4%;
    margin: 0 auto 80px;
    text-align: center;
}
.message_img {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 5px;
}

@media screen and (max-width: 767px) {
    .message {
        padding-top: 12vw;
    }
    .message_txt {
        margin: 0 auto 10.6vw;
    }

}



