@charset "UTF-8";

html {
    height: 100%;
}

body {
    height: 100%;
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #F5F5F5;
}

li {
    list-style: none;
}

a {
    color: #1B1B1C;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: bottom;
    object-fit: cover;
}

/*========================================
                header
========================================*/
header {
    width: 100%;
    padding: 1% 2%;
    position: relative;
    z-index: 10;
}

/*--- ロゴ ---*/
h1 img {
    width: 30%;
}

@media (max-width:767px) {
    h1 img {
        width: 50%;
    }
}

/*=========================================
                main
=========================================*/

/*========== section fv ==========*/
/*--- ファーストビュー ---*/
.fv {
    width: 100%;
    height: 100vh;
    padding-inline: 1%;
    margin-top: -117px;
    position: relative;
}

/* 背景グラデーション */
.gradation {
    background: rgb(245, 245, 245);
    background: linear-gradient(175deg, rgba(245, 245, 245, 1) 0%, rgba(118, 176, 242, 0.9781162464985994) 50%, rgba(85, 136, 194, 1) 100%);
}

/*--- メインヴィジュアル ---*/
/* PCサイズ */
.pc {
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    /* 左辺を斜めにする */
    width: 1000px;
    height: 85vh;
    position: absolute;
    bottom: 0;
    right: 0;
}

/* PCサイズの時は非表示 */
.sp {
    display: none;
}

@media (max-width:1000px) {
    .pc {
        width: 80%;
    }
}

@media (max-width:767px) {

    /* SPサイズの時は非表示 */
    .pc {
        display: none;
    }

    .sp {
        display: block;
        width: 80%;
        height: 82%;
        clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
        position: absolute;
        top: 18%;
        right: 0;
    }
}

/*---キャッチコピー ---*/
.catchphrase {
    height: 70%;
    position: relative;
}

.catchphrase img {
    max-width: 719px;
    width: 60%;
    position: absolute;
    top: 32%;
    left: 1%;
}


@media (max-width:1000px) {
    .catchphrase img {
        top: 36%;
    }
}

@media (max-width:767px) {
    .catchphrase img {
        width: 80%;
        top: 42%;
    }
}

/*--- SNSアイコン ---*/
.sns-icon {
    width: 80%;
    padding-left: 2%;
    display: flex;
    /* 横並びにする  */
    justify-content: space-between;
    position: absolute;
    top: 75%;
    left: 0;
}

@media (max-width:1000px) {
    .sns-icon {
        width: 100%;
        padding-inline: 2%;
        top: 72%;
    }
}

/* アイコン後ろの白丸 */
.circle {
    max-width: 150px;
    max-height: 150px;
    background-color: #F5F5F5;
    box-shadow: 7px 7px 4px 0px rgba(27, 27, 28, 0.5);
    border-radius: 50%;
    padding: 2%;
}

@media (max-width:1000px) {
    .circle {
        width: 18%;
        height: 18%;
    }
}

.circle img {
    width: 140px;
}

/*--- お問い合わせボタン ---*/
.contact {
    position: fixed;
    /* 右下固定 */
    top: 72%;
    right: 2%;
}

@media (max-width:1000px) {

    /* レスポンシブ時は右上に横長で設置 */
    .contact {
        top: 0.5%;
        right: 1%;
    }
}

.contact a {
    display: block;
    width: 150px;
    height: 150px;
    color: #1B1B1C;
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    line-height: 150px;
    background-color: #EDF344;
    border-radius: 50%;
}

@media (max-width:1000px) {

    /* レスポンシブ時は右上に横長で設置 */
    .contact a {
        width: 97px;
        height: 50px;
        line-height: 50px;
        font-size: 0.8rem;
        border-radius: 0;
    }
}

.contact a:hover {
    background-color: #f5e44f;
    transform: scale(1.1, 1.1);
    transition: all 0.5s;
}

/* 指のカーソル */
.cursor {
    width: 80px;
    position: absolute;
    bottom: -5%;
    right: 0;
}

@media (max-width:1000px) {
    .cursor {
        width: 30px;
        bottom: -17%;
        right: -2%;
    }
}

/*========= section concept ==========*/
/*--- コンテイナー ---*/
.container {
    max-width: 950px;
    width: calc(100% - 365px);
    margin: 0 auto;
    padding-block: 73px;
}

@media (max-width:1000px) {
    .container {
        max-width: auto;
        width: calc(100% - 220px);
    }
}

/*--- サービスタイトル ---*/
h2 {
    margin-bottom: 50px;
}

/* サービス内の青い四角を横並びにする */
.service-inner {
    display: flex;
    justify-content: space-between;
}

@media (max-width:767px) {
    .service-inner {
        flex-direction: column;
    }
}

/* サービス内の青い四角 */
.service-inner li {
    width: 30%;
    padding: 2% 2% 4% 2%;
    background-color: #76B0F2;
    text-align: center;
}

@media (max-width:767px) {
    .service-inner li {
        width: 100%;
        padding: 4%;
        margin-bottom: 5%;
    }
}

/* サービス内タイトル */
h3 {
    background-color: #F8FCFF;
    padding: 2% 4%;
    margin-block: 26px;
}

h3 img {
    margin: 0 auto;
}

h3 .pc-2 {
    padding-block: 3%;
}

h3 .sp-2 {
    display: none;
    /* PCのときは非表示 */
}

@media (max-width:767px) {
    h3 .pc-2 {
        display: none;
        /* SPのときは非表示 */
    }

    h3 .sp-2 {
        display: block;
        /* pcの時は表示 */
        padding-block: 5%;
    }
}

/* 白い四角の高さをそろえるための余白 */
.adjust {
    padding-block: 11%;
}

@media (max-width:767px) {
    .adjust {
        padding-block: 6%;
    }
}

/* コンセプト内説明文 */
.concept-inner p {
    font-size: 1.05vw;
}

@media (max-width:767px) {
    .concept-inner p {
        font-size: 2.2vw;
    }
}

/*========== section result ==========*/
#result {
    width: 100%;
    background-color: #76B0F2;
}

/* Resultタイトル */
#result h2 {
    text-align: center;
}

/* result-innerを横並びにする */
.result-wrapper {
    display: flex;
    justify-content: space-between;
    padding-inline: 2%;
}

@media (max-width:767px) {
    .result-wrapper {
        flex-direction: column;
    }
}

/* result内容 */
.result-inner {
    width: 45%;
    background-color: #F8FCFF;
    box-shadow: 7px 7px 4px 0px rgba(27, 27, 28, 0.5);
    padding: 5%;
    text-align: center;
}

@media (max-width:767px) {
    .result-inner {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* result内容タイトル */
.result-inner p {
    font-size: 2vw;
    font-weight: bold;
    letter-spacing: 2%;
    margin-bottom: 20px;
}

@media (max-width:767px) {
    .result-inner p {
        font-size: 3.5vw;
        margin-top: 15px;
    }
}

/* 運用前、運用後 */
.operation {
    font-size: clamp(16px, 1.3vw, 20px);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-block: 2%;
}

@media (max-width:767px) {
    .operation {
        font-size: 3vw;
    }
}

/* 運用横の棒 */
.operation::before,
.operation::after {
    content: "";
    width: 3rem;
    border-top: 3px solid #76B0F2;
}

/* フォロワー */
.follower {
    font-size: clamp(16px, 1.3vw, 20px);
    margin-bottom: 10%;
}

@media (max-width:767px) {
    .follower {
        font-size: 3.1vw;
    }
}

/*========== section price ==========*/
#price h2 {
    text-align: center;
}

/* 料金表横並び */
.price-1,
.price-2,
.price-3,
.price-4 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6%;
}

@media (max-width:767px) {

    .price-1,
    .price-2,
    .price-3,
    .price-4 {
        flex-direction: column;
    }
}

/* 料金表の枠 */
#price dl {
    border: 3px solid #76B0F2;
    background-color: #F8FCFF;
}

@media (max-width:767px) {
    #price dl {
        margin-bottom: 3%;
    }
}

/* 料金表の大きさ */
.trial,
.agency,
.authentic,
.price-4-inner {
    width: 49%;
}

.simple {
    width: 33%;
}

@media (max-width:767px) {

    .trial,
    .simple,
    .agency,
    .authentic,
    .price-4-inner {
        width: 100%;
    }
}

/*--- プラン ---*/
.plan {
    height: 98px;
    line-height: 98px;
    /* price-titleの文字を上下中央にする */
    background-color: #76B0F2;
    font-size: 1.8vw;
    font-weight: bold;
    text-align: center;
}

@media (max-width:1000px) {
    .plan {
        font-size: 2.2vw;
    }
}

@media (max-width:767px) {
    .plan {
        font-size: 3.2vw;
    }
}

.double-line {
    line-height: 48px;
    /* price-titleの文字を上下中央にする */
}

/*--- 値段 ---*/
.price-tag {
    text-align: center;
    margin: 3%;
}

.sp-3 {
    display: none;
    /* pcの時は非表示 */
}

@media (max-width:767px) {
    .price-tag img {
        width: 100%;
    }

    .pc-3 {
        display: none;
        /* spの時は非表示 */
    }

    .sp-3 {
        display: block;
        /* spの時は表示 */
    }
}

/*--- プラン内容 ---*/
.text {
    padding: 3% 8%;
}

@media (max-width:1000px) {
    .text {
        padding-block: 2%;
    }
}

/* 黒い四角のプランタイトル */
#price p {
    height: 64px;
    font-size: 1.6vw;
    line-height: 64px;
    letter-spacing: 3%;
    text-align: center;
    color: #F5F5F5;
    background-color: #1B1B1C;
    margin-bottom: 10px;
}

#price span {
    font-size: 1.2vw;
    padding-left: 3%;
}

@media (max-width:1000px) {
    #price p {
        font-size: 2vw;
    }

    #price span {
        font-size: 1.4vw;
    }
}

@media (max-width:767px) {
    #price p {
        font-size: 2.3vw;
    }

    #price span {
        font-size: 1.6vw;
    }
}

.youtube {
    margin-bottom: 10px;
}

/*========================================
                footer
========================================*/
footer {
    background-color: #76B0F2;
}

footer .container {
    max-width: 605px;
    padding-top: 5%;
    padding-bottom: 2%;
}

h4 {
    text-align: center;
}

.footer-inner {
    display: flex;
    justify-content: center;
    margin-block: 3%;
}

.qr {
    width: 40%;
    margin-left: 5%;
}

@media (max-width:767px) {
    .qr {
        margin-left: 0;
        margin-right: 2%;
    }
}

.company {
    width: 60%;
    letter-spacing: 3%;
    display: flex;
    flex-wrap: wrap;
}

@media (max-width:767px) {
    .company {
        font-size: 2.2vw;
    }
}

.company dt {
    width: 20%;
}

.company dd {
    width: 80%;
}

.bottom {
    display: flex;
    justify-content: center;
    margin-top: 8%;
}

.bottom p {
    font-size: 0.688rem;
    padding-inline: 2%;
}

/*====================================
            contact.html
====================================*/
/*--- お問い合わせヘッダー ---*/
.contact-page {
    width: 100%;
    height: 74px;
    display: flex;
    justify-content: space-between;
}

/*  お問い合わせ h1 */
.contact-header {
    width: 40%;
}

/*  お問い合わせ ロゴ */
.contact-header img {
    width: 75%;
}

/* メニュー横並び */
.navi {
    width: 50%;
    display: flex;
    justify-content: space-between;
    padding-top: 1%;
}

@media (max-width:1000px) {
    .navi {
        padding-top: 25px;
    }
}

.navi li {
    width: 25%;
    height: 18px;
    text-align: center;
    padding-inline: 2%;
    border-right: 1px solid #1B1B1C;
}

@media (max-width:1000px) {
    .navi li {
        font-size: 1.8vw;
    }
}

.navi li:last-of-type {
    border-right: none;
}

.contact-wrapper {
    max-width: 1000px;
    width: 100%;
    padding: 3% 6%;
    margin: 0 auto;
}

/* ※の色 */
.asterisk {
    color: #DC0505;
    padding-left: 1%;
}

/* [お問い合わせ]を中央にする */
.contact-title {
    text-align: center;
}

/* 必須です。部分 */
.contact-wrapper p {
    margin-bottom: 1%;
    font-size: 1.125rem;
}

/* 入力箇所 横並び */
.contact-inner dl {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 1.25rem;
}

@media (max-width:1000px) {
    .contact-inner dl {
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
    }
}

/* 入力名 */
.contact-inner dt {
    width: 30%;
    padding: 1%;
    margin-bottom: 2%;
}

@media (max-width:1000px) {
    .contact-inner dt {
        width: 100%;
        margin-bottom: 0.5%;
    }
}

/* 入力欄 */
.contact-inner dd {
    width: 70%;
    margin-bottom: 2%;
}

@media (max-width:1000px) {
    .contact-inner dd {
        width: 100%;
    }
}

/* 入力欄 装飾 */
.square,
.wide-square,.wpcf7-text,.wpcf7-textarea {
    width: 100%;
    font-weight: normal;
    background-color: #F8FCFF;
    border: 1px solid #1B1B1C;
    padding: 1%;
}

.wide-square {
    height: 10rem;
}

input[type="text"],
input[type="email"],
textarea {
    font-weight: normal;
}

/* チェックボックス要素 */
.contact-inner ul {
    display: flex;
}

.wpcf7-form-control {
    display: flex;
    justify-content: space-between;
    padding: 1.3% 2% 1%;
}

.small,.wpcf7-list-item first,wpcf7-list-item last {
    width: 20%;
}

.large,.wpcf7-list-item-label {
    width: 30%;
}

.form-checkbox-item label {
    margin-top: 3%;
    margin-left: 5%;
    
}

/* チェックボックス */
.checkbox {
    display: block;   
    width: 16px;
    height: 16px;
    appearance: none;
    background: #F8FCFF;
    border: solid 2px #1B1B1C;
    border-radius: 4px;
    margin-top: 13px;
}

/* 送信ボタン */
.submit-btn {
    text-align: center;
}

.submit-btn input {
    width: 200px;
    background-color: #76B0F2;
    color: #1B1B1C;
    padding: 15px 0;
    margin: 0 auto;
}

.submit-btn input:hover {
    background: #5588C2;
    color: #F8FCFF;
}

/* cf7 style */
.wpcf7-list-item {
    margin: 0;
}

.wpcf7-list-item:not(:first-child) {
    margin-left: 16px;
}

.wpcf7-list-item-label {
    color: #1B1B1C;
    margin-left: 8px;
}

input[type="checkbox"] {
    appearance: checkbox;
}