@charset "UTF-8";

html {
    font-size: 62.5%;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}
body {
    font-family: 'Noto Sans JP', sans-serif;
    font-style: normal;
    color: #333;
    background-color: #fff;
    line-height: 1.5;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
}

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

article#contentWrap {
    background-color: #003592;
}

.inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4%;
}

@media screen and (max-width: 768px) {
    .pcbr {
        display: none;
    }
}

/* -------------------------------
header
---------------------------------- */
header {
    position: relative;
}

header .logo {
    position: absolute;
    top: 60px;
    left: -5%;
    max-width: 250px;
    line-height: 0;
}

header .logo a {
    display: block;
}

header .logo img {
    width: 100%;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    header .logo {
        max-width: 150px;
        top: 20px;
        left: 0;
    }
}

/* -------------------------------
mainvisual
---------------------------------- */
.mainvisual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding-top: 100px; /* headerのpositionのための調整 */
}

@media screen and (max-width: 768px) {
    .mainvisual {
        gap: 10px;
        padding-top: 80px;
    }
}

/* -------------------------------
point
---------------------------------- */
.point ul {
    display: flex;
    justify-content: space-between;
    gap: 2%;
    margin-top: 120px;
}

.point li {
    width: calc(100% / 3);
    padding: 10px 20px 10px 20px;
    background-color: #fff;
    border-radius: 20px;
    position: relative;
}

.point li:nth-of-type(1) {
    background-color: #fff;
    background-image: url('../img/bg-point1.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto;
    position: relative;
}

.point li:nth-of-type(1)::before {
    content: '';
    display: block;
    width: 180px;
    height: 180px;
    background: url(../img/point.png) no-repeat center/contain;
    position: absolute;
    top: -35%;
    left: -15%;
}

.point li:nth-of-type(2) {
    background-color: #fff;
    background-image: url('../img/bg-point2.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto;
}

.point li:nth-of-type(3) {
    background-color: #fff;
    background-image: url('../img/bg-point3.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto;
}

.point li p:nth-of-type(1) {
    position: absolute;
    top: -75px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    margin: 0 auto;
}

.point li p:nth-of-type(2) {
    background-color: rgba(162, 218, 247, 0.5);
    font-weight: 700;
    font-size: 2rem;
    padding: 30px 20px;
    border-radius: 20px;
    margin-top: 140px;
    text-shadow: 2px 2px 0 #fff, -2px 2px 0 #fff, 2px -2px 0 #fff,
        -2px -2px 0 #fff;
}

.point li p:nth-of-type(3) {
    text-align: right;
    font-weight: 500;
    font-size: 1.8rem;
    margin-top: 5px;
}

span.small {
    display: block;
    font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
    .point ul {
        flex-direction: column;
        gap: 100px;
    }

    .point li {
        width: 100%;
        padding: 10px 20px 10px 20px;
        max-width: 400px;
        margin: 0 auto;
    }

    .point li:nth-of-type(1)::before {
        content: '';
        display: block;
        width: 80px;
        height: 80px;
        background: url(../img/point.png) no-repeat center/contain;
        position: absolute;
        top: -20%;
        left: -2%;
    }

    .point li p:nth-of-type(1) {
        width: 70%;
    }

    .point li p:nth-of-type(2) {
        font-size: 1.8rem;
    }

    .point li p:nth-of-type(3) {
        font-size: 1.4rem;
    }
}

/* -------------------------------
quopay
---------------------------------- */
.quopay {
    margin-top: 60px;
    background-color: #fff100;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.quopay::after {
    content: '';
    display: block;
    width: 300px;
    height: 220px;
    background: url(../img/points.png) no-repeat center/contain;
    position: absolute;
    bottom: 20px;
    left: 0;
    z-index: 1;
}

.quopay .txt {
    position: relative;
    z-index: 10;
}

.quopay .txt p:nth-of-type(1) {
    position: relative;
    z-index: 2;
}

.quopay .txt p:nth-of-type(2) {
    width: 55%;
    font-size: 2.8rem;
    font-weight: 700;
    margin: 30px 0 0 30%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.quopay .img {
    position: relative;
    z-index: 2;
}

.quopay .img::before {
    content: '';
    display: block;
    width: 480px;
    height: 130px;
    background: url(../img/quocardpay.png) no-repeat center/contain;
    position: absolute;
    bottom: -10px;
    right: -10%;
    z-index: -1;
}

@media screen and (max-width: 1030px) {
    .quopay .img::before {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .quopay {
        flex-direction: column;
        margin-top: 40px;
        overflow-x: hidden;
    }

    .quopay .txt p:nth-of-type(1) {
        width: 100%;
    }

    .quopay .txt p:nth-of-type(2) {
        width: 100%;
        margin: 10px 0;
        text-align: left;
        font-size: 1.8rem;
    }

    .quopay .img {
        width: 50%;
        margin-left: auto;
    }

    .quopay .img::before {
        display: block;
        width: 320px;
        right: -5%;
    }
}

/* -------------------------------
entry
---------------------------------- */
.entry {
    background: url(../img/bg-entry.png) no-repeat center/cover;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    gap: 20px;
}

.entry .entry-box {
    width: calc(100% / 3);
    margin: 0 auto;
    text-align: center;
    flex: 1;
}

.entry .entry-box.item1 {
    text-align: left;
}

.entry .entry-box.item3 {
    text-align: right;
}

.entry-box div {
    margin-bottom: 5px;
}

.entry .entry-box img {
    width: 150px;
}

.entry .entry-box:nth-of-type(2) p img {
    margin-top: -50px;
    width: 100%;
}

.entry-box {
    font-size: 4rem;
    font-weight: 700;
}

a.googleLink {
    pointer-events: none;
    cursor: default;
}

@media screen and (max-width: 768px) {
    .entry {
        background: url(../img/bg-entry-sp.png) no-repeat center/cover;
        padding: 60px 4%;
        flex-direction: column;
        margin-top: 40px;
        gap: 20px;
    }

    .entry .entry-box {
        width: 100%;
    }

    .entry .item1 {
        order: 2;
    } /* 真ん中 */
    .entry .item2 {
        order: 1;
    } /* 一番上 */
    .entry .item3 {
        order: 3;
    }

    .entry .entry-box:nth-of-type(2) p img {
        width: 70%;
    }

    .entry-box div {
        margin-bottom: 0;
    }

    .entry .entry-box.item1 {
        text-align: center;
    }

    .entry .entry-box.item3 {
        text-align: center;
    }

    a.googleLink {
        pointer-events: auto;
        cursor: pointer;
        opacity: 1;
    }
}

/* -------------------------------
warning
---------------------------------- */
.warning {
    padding: 20px 2% 60px 2%;
    max-width: 1400px;
    margin: 0 auto;
}

.warning-wrap {
    background-color: #e60012;
    color: #fff;
    padding: 20px;
}

.warning-wrap p {
    font-size: 5rem;
    position: relative;
    padding-left: 80px;
    font-weight: 700;
}

.warning-wrap p span {
    color: #fff100;
}

.warning-wrap p::before {
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    background: url(../img/!.png) no-repeat center/contain;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.note {
    font-size: 2rem;
    color: #fff100;
    padding-left: 12%;
    font-weight: 600;
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    .warning {
        padding: 20px 4% 40px 4%;
    }
    .warning-wrap p {
        font-size: 1.8rem;
        padding-left: 40px;
    }
    .warning-wrap p::before {
        width: 30px;
        height: 30px;
    }

    .note {
        font-size: 1.6rem;
        padding-left: 0;
        margin-top: 10px;
    }
}

/* -------------------------------
contact
---------------------------------- */
.contact {
    padding: 0 0 60px;
    text-align: center;
    background-color: #003592;
}

.contact p a {
    display: inline-block;
    width: 50%;
    margin: 0 auto 0;
    padding: 1.5% 0 1.4%;
    color: #fff;
    text-align: center;
    font-family: 'NotoSansJP-Regular', YuGothic, 'Yu Gothic',
        'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', Meiryo,
        'ＭＳ Ｐゴシック', sans-serif;
    background-color: #36b39e;
    background-image: url(../img/arow_rbtn01.png);
    background-repeat: no-repeat;
    background-position: 80% 50%;
    border-radius: 4px;
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
}

.contact p a:hover {
    background-color: #36b6e9;
}

@media screen and (max-width: 768px) {
    .contact {
        padding: 0 4% 40px;
        text-align: center;
        background-color: #003592;
    }
    .contact p a {
        width: 100%;
        font-size: 2rem;
        background-position: 90% 50%;
    }
}
