/* 基本スタイル */
body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #000;
    margin: 0;
    padding: 0px 0 0 0;
}

div {
    box-sizing: border-box;
}

/* アンカーリンク（ページ内ジャンプ）の位置調整 */
html {
    scroll-padding-top: 80px;
}

.container {
    width: 94%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 0;
}

.container-outer {
    width: 100%;
    padding: 80px 0;
}

.bg1 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


h2,
h3 {
    margin: 0 0 1rem 0;
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    color: #001e6f;
}

.cont-text {
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 700;
    text-align: center;
}

.col {
    color: #ffd000 !important;
}

.col2 {
    color: #9adfef !important;
}

.forpc {
    display: block;
    font-size: 100%;
}

.forsp {
    display: none;
}


.hl {
    background: linear-gradient(transparent 70%, #ffd000 70%);
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
    padding: 4px 0;
    position: fixed;
    /* 画面に固定 */
    top: 0;
    /* 一番上に配置 */
    left: 0;
    /* 左端から配置 */
    width: 100%;
    /* 横幅いっぱい */
    z-index: 1000;
    /* 他の要素より前面に表示 */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

header h1 {
    display: flex;

    align-items: center;
    padding: 0;
    margin: 0;
}

header h1 img {
    border: none;
    width: 160px;
}

/* Hero */
.hero {
    background: #000426;
    color: #fff;
    text-align: center;
    padding: 100px 0 90px 0;
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.hero h2 {
    color: #eee;
    font-size: 5.4rem;
    line-height: 1.1;
    font-weight: 900;
    margin: 8px 0 16px 0;
    letter-spacing: -4px;
}

.hero .sub-copy {
    color: #fff;
    font-size: 1.8rem;
    line-height: 1.1;
    font-weight: 900;
    margin: 0px 0;
}

.hero .description {
    color: #fff;
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 700;
    margin: 0px 0;
}

.hero .container-sub {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.hero .container-sub .container-sub-in1 {
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 700;
    border: #fff solid 1px;
    padding: 8px 12px;
}

.hero .container-sub .container-sub-in2 {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 500;
    padding: 8px 8px;
}


/* Pain Points */

.pains {
    margin: 0;
    padding: 4rem 0 1rem 0;
    background-color: #eee;
}

.pains h3 {
    color: #eee;
}

.pains .container {
    margin: 0 auto 2rem auto;
    background-color: #001e6f;
    padding: 40px 40px 60px 40px;
    border-radius: 30px;
    position: relative;
}

.pain-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 30px;
    border-radius: 30px;

}

.pain-grid-tri {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: -1;
}

.pain-grid-tri svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 250px;
}

.pain-grid-tri .shape-fill {
    fill: #001e6f;
}

.pain-item {
    width: 48%;
    text-align: center;
    background: #fff;
    font-size: 1.4rem;
    color: #3c526b;
    padding: 40px 40px 40px 0px;
    border-radius: 30px;
    position: relative;
}

.pain-item-p {
    position: absolute;
    width: 100px;
    height: auto;
    right: -7px;
    bottom: -2px;
}

.pain-item-p img {
    width: 100%;
}

.pain-ans {
    text-align: center;
    color: #001e6f;
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 900;
    padding: 20px 0 40px 0;
}


/* for */
.point-outer {
    position: relative;
    display: inline-block;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #e5efff;
    border-radius: 30px;
    padding: 40px;
    margin: 40px 0 60px 0;
}

.point-outer ::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 30px 23px 0 23px;
    border-color: #e5efff transparent transparent;
    translate: -50% 100%;
}

.point-for {
    font-weight: 700;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
    color: #001e6f;
    line-height: 1;
}

.for-point-list {

    margin: 0;
    padding: 0 40px;
}

.for-point-list li {
    list-style-type: none;
    /*点を非表示*/
    position: relative;
    /*基準位置*/
    padding-left: 36px;
    text-indent: 0;
    margin: 0 0 12px 0px;
    font-weight: 700;
    font-size: 1.2rem;
}

.for-point-list li:before {
    font-family: 'Material Icons';
    content: "arrow_forward";
    font-size: 1.6em;
    color: #001e6f;
    position: absolute;
    /*絶対配置*/
    left: 0;
    /*点の位置*/
    top: -7px;
}

/* Features */

.features {
    background-color: #fff;
    margin: 0px;
    position: relative;
    padding: 80px 0 0 0;
}

.features-dev {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.features-dev svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
    transform: rotateY(180deg);
}

.features-dev .shape-fill {
    fill: #eee;
}


.features h3 {
    font-size: 2.4rem;
}


.features .container-sub {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0;
}

.features .container-sub .container-sub-in1 {
    width: 28%;
    color: #001e6f;
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 700;
    border: #cacaca solid 1px;
    padding: 32px 12px;
    text-align: center;
    box-shadow: 0 7px 10px rgba(14, 23, 75, .2);
    border-radius: 30px;
}

.features .container-sub .container-sub-in1-img {
    width: 100%;
    padding: 20px 0;
    text-align: center;
}

.features .container-sub .container-sub-in1-img img {
    width: 80%;
}

.features .container-sub .container-sub-in1-sub {
    color: #000;
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 500;
    padding: 0;
}

.features .container-sub .container-sub-in2 {
    color: #bfd4f4;
    font-size: 4rem;
    line-height: 1;
    font-weight: 500;
    padding: 0;
}

.speechBubble-outer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.speechBubble {
    position: relative;
    display: inline-block;
    margin-top: 25px;
    padding: 24px 24px;
    border: 5px solid #001e6f;
    border-radius: 9999px;
    background-color: #ffffff;
    text-align: left;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
    color: #001e6f;
}

.speechBubble::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    border-style: solid;
    border-width: 0 20px 25px 20px;
    border-color: transparent transparent #001e6f;
    translate: -50% -100%;
}

.speechBubble::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    border-style: solid;
    border-width: 0 13.6px 17px 13.6px;
    border-color: transparent transparent #ffffff;
    translate: -50% -100%;
}

.prc {
    width: 100%;
    padding: 20px 0 0 0;
    text-align: center;
}

.prc img {
    width: 70%;
}

.sflo-outer {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 40px 0;
}

.sflo-inner1 {
    width: 45%;
    display: flex;
    border: 5px solid #001e6f;
    background-color: #fff;
    padding: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    box-shadow: 0 7px 10px rgba(14, 23, 75, .2);
}

.sflo-inner2 {
    display: flex;
    align-items: center;
}

.sflo-inner2 span {
    font-size: 4rem;
    color: #001e6f;
}

.sflo-inner1-1 {
    background-color: #001e6f;
    width: 100%;
    color: #fff;
    text-align: center;
    border-radius: 12px 12px 0 0;
    padding: 12px 0;
    font-weight: 700;
    font-size: 1.4rem;
}

.sflo-inner1-2 {
    width: 100%;
    text-align: center;
    padding: 20px 20px;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
}

.sflo-inner1-3 {
    width: 100%;
}

.sflo-inner1-3in {
    width: 100%;
    padding: 8px;
    text-align: center;
    font-weight: 500;
}

.cost-outer {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 60px 0 40px 0;
}

.cost-inner1 {
    width: 48%;
    display: flex;
    border: 1px solid #999;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: #cacaca solid 1px;
    box-shadow: 0 7px 10px rgba(14, 23, 75, .2);
    border-radius: 30px;
}

.cost-inner1-1 {
    width: 100%;
    color: #001e6f;
    text-align: center;
    padding: 0 0 12px 0;
    font-weight: 800;
    font-size: 1.8rem;
    line-height: 1;
}

.cost-inner1-1 span {
    font-size: 1rem;
    line-height: 1;
}

.cost-inner1-1-line {
    padding: 20px 0 0 0;
    border-top: #001e6f 2px solid;
    margin: 28px 0 0 0;
}

.cost-inner1-2 {
    width: 100%;
    text-align: center;
    padding: 12px 0px 20px 0px;
    font-weight: 700;
    font-size: 5rem;
    line-height: 1;
}

.cost-inner1-2 span {
    font-size: 1rem;
}

.cost-inner1-3 {
    width: 100%;
    text-align: center;
    padding: 0px;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
}

.recc {
    border: 5px solid #001e6f;
    position: relative;
}

.reccr {
    border: 5px solid #ff4800;
    position: relative;
    background-color: rgb(255, 243, 238);
}

.ribbon-outer {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: ;
}

.ribbon,
.ribbonr {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    padding: 0 60px;
    white-space: nowrap;
}

.ribbon {
    --r: .8em;
    padding-inline: calc(var(--r) + .3em);
    line-height: 2;
    clip-path: polygon(0 0, 100% 0, calc(100% - var(--r)) 50%, 100% 100%, 0 100%, var(--r) 50%);
    background: #001e6f;
    /* the main color */
    width: auto;
}

.ribbonr {
    --r: .8em;
    padding-inline: calc(var(--r) + .3em);
    line-height: 2;
    clip-path: polygon(0 0, 100% 0, calc(100% - var(--r)) 50%, 100% 100%, 0 100%, var(--r) 50%);
    background: #ff4800;
    /* the main color */
    width: auto;
}

.ribbon span,
.ribbonr span {
    font-size: 60%;
    font-weight: 500;
}

.cost-op {
    width: 100%;
    display: flex;
    padding: 40px;
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: #cacaca solid 1px;
    box-shadow: 0 7px 10px rgba(14, 23, 75, .2);
    border-radius: 30px;
}

.cost-op-inner1 {
    width: 100%;
    text-align: center;
    padding: 40px 0 0 0;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
}

.cost-op-inner2 {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.cost-op-inner2-in {
    width: 48%;
    padding: 0;
}

/*ポイント*/


.point-list {
    width: auto;
    margin: 0;
    padding: 0 40px;
}

.point-list li {
    list-style-type: none;
    /*点を非表示*/
    position: relative;
    /*基準位置*/
    padding-left: 36px;
    text-indent: 0;
    margin: 12px 0 0 0px;
    font-weight: 700;
    font-size: 1.2rem;
}

.point-list li:before {
    font-family: 'Material Icons';
    content: "check";
    font-size: 1.6em;
    color: #001e6f;
    position: absolute;
    /*絶対配置*/
    left: 0;
    /*点の位置*/
    top: -7px;
}

.arr li:before {
    content: "arrow_forward" !important;
}

.point-lp {
    padding: 0 !important;
}

.serv {
    width: 100%;
    background-color: #e5efff;
    border-radius: 30px;
    padding: 20px;
    margin: 20px 0;
}

.cor-tit {
    width: 100%;
    text-align: center;
    padding: 0 20px 20px 20px;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
}

.cor-tit-b {
    color: #001e6f;
}

/*FAQ*/
.switchbox {
    padding: 12px 20px 12px 20px;
    margin: 20px 0 20px 0;
    background-color: rgba(194, 215, 244, 0.3);
    backdrop-filter: blur(10px);
    width: 100%;
    position: relative;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: .3s ease-in-out;

    &:hover {
        border: 1px solid #001e6f;
    }
}

/*ラベル*/
.switchbox label {
    display: block;
    font-weight: bold;
    cursor: pointer;
}

/*チェックボックスを非表示にする*/
.switchbox input {
    display: none;
}

/*中身を非表示にしておく*/
.switchbox-show {
    height: 0;
    overflow-y: hidden;
    transition: 0.8s;
    /*ゆっくり表示させる*/
    opacity: 0;
}

/*クリックで中身を表示*/
.switchbox input:checked+label+div {
    height: auto;
    opacity: 1;
}

/*アイコン*/
.switchbox label::before {
    position: absolute;
    top: 12px;
    right: 12px;
    content: "\e5cc";
    font-family: "Material Icons";
    font-size: 26px;
    transform: rotate(90deg);
    color: #001e6f;
}

/*クリックでアイコン入れ替え*/
.switchbox input:checked+label::before {
    transform: rotate(-90deg);
}




dl.qa {
    overflow: hidden;
    margin: 0;
    padding: 4px 0;
    _zoom: 1;
}

dl.qa dd,
dl.qa dt {
    text-indent: -37px;
    padding: 0 15px 0px 45px;
}

dl.qa dt {
    margin: 0;
}

dl.qa dd:first-letter,
dl.qa dt:first-letter {
    font-size: 1.6em;
    font-weight: bold;
    margin-right: 10px;
    padding: 5px 0;
    line-height: 1.2em;
}

dl.qa dd {
    margin: 20px 0 -1px 0;
    padding-bottom: 15px;
    font-weight: 400;
    line-height: 1.6;
}

dl.qa dt:first-letter {
    color: #fb791d;
}

dl.qa dd:first-letter {
    color: #001e6f;
}



dl.qa dd li {
    text-indent: 0;
    padding: 0 0 0 0;
    margin: 0 0 0 20px;
}


.cont-inner1-1 {
    width: 100%;
    text-align: center;
    color: #001e6f;
    font-size: 1.4rem;
    font-weight: 700;
}

.cont-inner1-2 {
    width: 100%;
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
}

.cont-inner1-3 {
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    line-height: 3rem;
    font-weight: 700;
}

.cont-inner1-4 {
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.cont-cta {
    width: 100%;
    text-align: center;
}


/* Buttons */
.btn-large {
    display: inline-flex;
    align-items: center;
    background: #ff4800;
    border: 1px solid #ff4800;
    color: #fff;
    padding: 16px 32px 16px 36px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 500;
    border-radius: 50px;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-large:hover {
    background: #fff;
    color: #ff4800;
}

.btn-large span {
    font-size: 2.2rem;
    padding: 0 0 0 0.2rem;
}

.btn-small {
    display: inline-flex;
    align-items: center;
    background: #ff4800;
    border: 1px solid #ff4800;
    font-weight: 500;
    border-radius: 30px;
    color: #fff;
    padding: 8px 20px 8px 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
    margin: 0 0 0 8px;
}


.btn-small span {
    font-size: 14px;
    padding: 0;
}

.btn-small:hover {
    background: #fff;
    color: #ff4800;
}

.btn-small-b {
    display: inline-flex;
    align-items: center;
    background: #001e6f;
    border: 1px solid #001e6f;
    font-weight: 500;
    border-radius: 30px;
    color: #fff;
    padding: 8px 20px 8px 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
    margin: 0 0 0 8px;
}


.btn-small-b span {
    font-size: 14px;
    padding: 0;
}

.btn-small-b:hover {
    background: #fff;
    color: #001e6f;
}


.btn-large-b {
    display: inline-flex;
    align-items: center;
    background: #001e6f;
    border: 1px solid #001e6f;
    color: #fff;
    padding: 16px 32px 16px 36px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 500;
    border-radius: 50px;
    margin: 20px 0 40px 0;
    transition: 0.3s;
}

.btn-large-b:hover {
    background: #fff;
    color: #001e6f;
}

.btn-large-b span {
    font-size: 2.2rem;
    padding: 0 0 0 0.2rem;
}

/* CTA */
.cta {
    background: #004494;
    color: #fff;
    text-align: center;
}

.cta h3 {
    color: #fff;
}

.contact-info {
    margin: 20px 0;
    font-size: 1.1rem;
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 0.8rem;
    background: #001e6f;
    color: #ccc;
}

footer a {
    color: #ccc;
}

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

    .forsp {
        display: block;
    }


    header .container {
        width: 100%;
        padding: 8px 8px;
    }

    .container {
        padding: 40px 0;
    }

    .hero {
        padding: 60px 0 20px 0;
    }

    .hero h2 {
        font-size: 3.2rem;
        margin: 8px 0 16px 0;
    }

    .hero .container-sub .container-sub-in1 {
        font-size: 1.2rem;
        line-height: 1.2;
        padding: 8px 8px;
    }

    h2,
    h3 {
        font-size: 1.4rem;
    }

    .pains .container {
        padding: 40px 20px 60px 20px;

    }

    .pain-grid {
        flex-direction: column;
    }

    .pain-item {
        width: 100%;
        font-size: 1.1rem;
        padding: 40px 40px 40px 0px;
        margin: 20px 0;
    }

    .pain-item-p {
        width: 80px;
    }

    .pain-ans {
        font-size: 2.2rem;
        padding: 12px 0 16px 0;
    }

    .point-outer {
        padding: 40px 20px;
    }

    .for-point-list {
        margin: 0;
        padding: 0 0;
    }

    .for-point-list li {
        padding-left: 36px;
        font-size: 1.1rem;
    }

    .features .container-sub {
        flex-direction: column;
    }

    .features h3 {
        font-size: 1.6rem;
    }

    .features .container-sub .container-sub-in1 {
        width: 100%;
        font-size: 1.4rem;
        padding: 20px 12px;
    }

    .features .container-sub .container-sub-in1-img {
        padding: 00px 0;
    }

    .features .container-sub .container-sub-in1-img img {
        width: 50%;
    }

    .prc img {
        width: 100%;
    }

    .btn-small {
        padding: 8px 12px 8px 12px;
        font-size: 12px;
        margin: 0 0 0 4px;
    }

    .cost-outer {
        flex-direction: column;
        margin: 20px 0 20px 0;
    }

    .cost-inner1 {
        width: 100%;
        margin: 20px 0;
    }

    .cost-op {

        padding: 40px 20px;
        margin: 20px 0;

    }

    .cost-op-inner2 {
        flex-direction: column;
    }

    .cost-op-inner2-in {
        width: 100%;
        padding: 0;
    }

    .cost-op-inner1 {

        line-height: 1.6;
    }

    .cont-inner1-3 {
        font-size: 1.1rem;
    }
}