@charset "UTF-8";

/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td, small, button, time, figure, label {
    border: 0;
    font: inherit;
    font-size: 100%;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}

html {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

li, dd {
    list-style-type: none;
}

header, footer, nav, section, article, aside, figure, figcaption {
    display: block;
}

img {
    border: none;
    vertical-align: bottom;
    width: 100%;
}

a {
    cursor: pointer;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

input[type="text"],
input[type="tel"],
input[type="email"]{
    -webkit-appearance: none;
    border-radius: 0;
}

::placeholder {
    color: #c0c0c0;
}

select {
    -webkit-appearance: none;
    appearance: none;
}

body {
    font-family: "游ゴシック体",YuGothic,"游ゴシック","Yu Gothic",sans-serif;
    font-weight: 500;
    width: 100%;
}

p, div {
    font-weight: 500;
}

button:hover {
    opacity: .7;
}

/* モーダル */

.modal {
    display: none;
    position: fixed;
    z-index: 8887;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    transition: all 1s ease-in-out;
}
.modal-container .img {
    background: #f1f1f1;
    margin-bottom: 15px;
}
.modal-container p {
    margin-bottom: 10px;
}
.modal-container p:last-child {
    margin-bottom: 0;
}
.modal-content {
    background: #FFF;
    /* overflow-y: auto; */
    padding: 20px 25px;
    width: 90%;
    max-width: 700px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* max-height: 400px; */
    animation: show 0.6s linear 0s;
    filter: drop-shadow(0px 2px 6px #777);
}
.modal-top {
    display: inline-block;
    position: absolute;
    right: 5px;
    top: 5px;
}
.modal-close {
    color: #fff;
    text-decoration: none;
    font-size: 40px;
    line-height: 1;
    padding: 0 8px;
    font-weight: normal;
    text-align: right;
    position: relative;
    z-index: 1000;
}
.modal-close:hover, .modal-close:focus {
    text-decoration: none;
    cursor: pointer;
}

.modal-close-sp {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    font-weight: 700;
    border: 3px solid #fff;
    border-radius: 6px;
    padding: 10px 20px;
    width: 200px;
    text-align: center;
}

.modal-title {
    color: #FFF;
}
@keyframes show{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}


/*タブのスタイル*/
.point_tab-button,
.plan_tab-button {
    width: calc(50% - 20px);
    height: 60px;
    line-height: 60px;
    font-size: 20px;
    text-align: center;
    color: #000;
    /* border-bottom: 3px solid #1f71b5; */
    background-color: #b3b3b3;
    color: #fff;
    display: block;
    float: left;
    text-align: center;
    font-weight: bold;
    transition: all 0.2s ease;
    cursor: pointer;
}
.point_tab-button:hover,
.plan_tab-button:hover {
    opacity: 0.75;
}
/*ラジオボタンを全て消す*/
input[name="point_tab-button"],
input[name="plan_tab-button"] {
    display: none;
}
/*タブ切り替えの中身のスタイル*/
.point_tab-content,
.plan_tab-content {
    display: none;
    padding: 40px;
    clear: both;
    overflow: hidden;
    transition: .5s opacity;
    box-shadow: 0 0 3px rgba(0,0,0,.2);
}
/*選択されているタブを表示*/
#price01:checked ~ #price01,
#price02:checked ~ #price02,
#plan01:checked ~ #plan01,
#plan02:checked ~ #plan02 {
    display: block;
}
/*選択されているタブのスタイル*/
.point_tab-buttons input:checked + .point_tab-button,
.plan_tab-buttons input:checked + .plan_tab-button {
    background-color: #1f71b5;
    color: #fff;
}

/* catボタン */
.cta_button a {
    background-color: #f15a24;
    border-radius: 50px;
    color: #fff;
    /* padding: 5px 30px; */
    width: 100%;
    display: inline-block;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    margin: 30px auto 10px;
    font-weight: 700;
}

.cta_button a:hover {
    opacity: .7;
}

.cta_button p {
    font-size: 12px;
    text-align: center;
    font-weight: 700;
}

.color-white {
    color: #fff;
}


/* mainvisual */
.head_logo {
    width: 200px;
    margin: 0 80px;
    display: block;
}
.mainvisual {
    background: url(/images/lp_insurance/header-bg-pc.d16c70f.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.mainvisual_wrap {
    display: flex;
    padding-bottom: 20px;
}

.mainvisual_left {
    width: 50%;
    padding-left: 30px;
}

.mainvisual_left h1 {
    max-width: 490px;
    margin: auto;
}

.mainvisual_left-button {
    text-align: center;
}

.mainvisual_right {
    width: 50%;
    padding-left: 40px;
}

.mainvisual_right-text {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 2;
}

.mainvisual_right-text span {
    font-size: 15px;
}

.mainvisual_right-text span.mainvisual_underline {
    font-size: 34px;
    border-bottom: 4px solid #ff0;
}

.mainvisual_right-image {
    max-width: 240px;
    margin-left: 110px;
}

.mainvisual_right-note {
    text-align: right;
    margin-right: 30px;
}

.mainvisual_point {
    margin: 0 30px;
}
.mainvisual_point-item {
    
    background: #fff;
    color: #00008d;
    transform: skew(-8deg);
    -webkit-transform: skew(-8deg);
    -moz-transform: skew(-8deg);
    -ms-transform: skew(-8deg);
    -o-transform: skew(-8deg);
    margin-bottom: 20px;
    padding: 4px 10px;
}

.mainvisual_point-inner {
    display: flex;
    align-items: center;
}

.mainvisual_point-number {
    font-size: 40px;
    width: 8%;
    font-family: "Arial Narrow",Arial,sans-serif;
    font-style: italic;
    font-weight: 700;
}

.mainvisual_point-text {
    font-size: 14px;
    width: 80%;
    font-weight: 700;
}

.mainvisual_point-icon {
    width: 12%;
}

.suggest_wrap {
    margin: 50px 0;
    font-size: 14px;
    font-weight: 700;
}

.suggest_wrap .cta_button {
    margin-bottom: 20px;
    font-size: 16px;
}

.suggest_balloon {
    background-color: #c0ecff;
    text-align: center;
    padding: 30px 0;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.5;
    position: relative;
}

.suggest_balloon::after {
    position: absolute;
    content: '';
    bottom: -29px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 30px solid transparent;
    border-left: 30px solid transparent;
    border-top: 30px solid #c0ecff;
    border-bottom: 0;
}

.suggest_balloon p {
    line-height: 2;
    letter-spacing: 2px;
}

.suggest_balloon span {
    font-size: 22px;
    font-weight: 700;
}

.yellow_underline {
    border-bottom: 4px solid #ff0;
}

.suggest_text {
    text-align: center;
    letter-spacing: 2px;
}

.suggest_text span {
    font-size: 22px;
    font-weight: 700;
}

.point {
    background: #e6e6e6;
    padding-bottom: 30px;
}

.point_wrap {
    background: url(/images/lp_insurance/point-bg-pc.68d7837.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 30px 20px;
}

.point_wrap h2 {
    text-align: center;
    font-size: 45px;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 30px;
}

.point_wrap h2 span {
    font-size: 22px;
    letter-spacing: 1px;
    line-height: 2;
}

.point_lists {
    max-width: 900px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.point_list {
    border: 2px solid #fff;
    width: 30%;
    transition: .5s;
    color: #fff;
}

.point_list:hover {
    background-color: #fff;
    transform: translateY(-1rem);
    color: #00008d;
}

svg {
    fill: currentColor;
    width: 100%;
}

.point_lists-sp ul {
    list-style: none;
    padding: 0 20px;
}

.point_lists-sp ul a {
    display: flex;
    align-items: center;
    color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #fff;
    position: relative;
}

.point_lists-sp ul a::after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-top: 12px solid #fff;
    border-bottom: 0;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.point_lists-sp-number {
    font-size: 45px;
    width: 8%;
    font-family: "Arial Narrow",Arial,sans-serif;
    font-style: italic;
    font-weight: 700;
}

.point_lists-sp-text {
    font-size: 16px;
    width: 80%;
    font-weight: 700;
    line-height: 1.3;
}

.point_container-wrap {
    margin: 0 20px;
}

.point_container {
    max-width: 900px;
    margin: 50px auto;
    background: #fff;
    box-shadow: 0 0 10px 0 #a3a3a3;
    padding: 20px;
}

.point_item-title-wrap {
    display: flex;
    color: #00008d;
    align-items: center;
    margin-bottom: 30px;
}

.point_item-number-wrap {
    width: 25%;
    border-right: 3px solid #2e3192;
}

.point_item-number-top {
    text-align: center;
    margin-top: 10px;
    font-weight: 700;
    font-size: 20px;
    padding-left: 16px;
}

.point_item-number-bottom {
    font-size: 160px;
    text-align: center;
    font-family: "Arial Narrow",Arial,sans-serif;
    font-style: italic;
    font-weight: 700;
    line-height: 0.8;
}

.point_item-title {
    width: 75%;
    margin-left: 30px;
}

.point_item-title h3 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 5px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.point_item-title h3 span {
    font-size: 14px;
}

.point_item-title p {
    color: #333;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 1.5;
}

.point_item p span {
    font-size: 25px;
    color: #f15a24;
    font-weight: 700;
}

.point_item-inner {
    display: flex;
    align-items: center;
    margin: 20px 0;
    justify-content: center;
}

.point_item-image {
    max-width: 165px;
    margin-left: 70px;
}

.point_item-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 2;
    padding-left: 30px;
}

.point_item-text span {
    font-size: 20px;
    color: #f15a24;
}

.point_item-text span.span-normal {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.point_item-reverse {
    flex-direction: row-reverse;
}

.point_item-title2 p {
    font-size: 16px;
}

.point_item-title span.span-normal {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.point_item-wrap {
    display: flex;
    justify-content: space-between;
    margin: 0 10px 30px;
}

.point_item-box {
    background: #f2f2f2;
    width: 48%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 2px;
}

.modal_occupation {
    text-decoration: underline;
    color: #00008d;
    font-size: 15px;
    cursor: pointer;
    display: inline-block;
}

.modal_occupation img {
    width: 18px;
    margin-right: 5px;
    padding-bottom: 2px;
}

.modal_occupation-inner {
    background: #c0ecff;
    border-radius: 0;
    padding: 15px;
}

.modal_occupation-content th {
    background: #0071d9;
    color: #fff;
    padding: 5px 0;
    text-align: center;
}

.modal_occupation-content td {
    background: #fff;
    padding: 5px;
    line-height: 2;
    font-size: 14px;
}

.modal_occupation-content table:first-child {
    margin-bottom: 20px;
}

.point_tab-button-left {
    margin-right: 40px;
}

.point_tab-inner {
    background: #c0ecff;
}

.point_tab {
    margin: 0 10px;
}

.price {
    text-align: center;
}

.price h3 {
    font-size: 30px;
    color: #00008d;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.price_text {
    line-height: 1.5;
    margin-bottom: 20px;
}

.price_box-wrap {
    background: #fff;
    padding: 20px;
}

.price_box-title {
    font-size: 20px;
    color: #00008d;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.price_box-text {
    margin-bottom: 20px;
}

.price_table-title {
    font-size: 22px;
    font-weight: 700;
    margin: 20px 0;
}

.price_table {
    width: 100%;
}

.price_table th {
    width: 33%;
}

.price_table td {
    width: 33%;
}

.price_detail-button {
    margin-top: 30px;
}

.price_detail-button button {
    background: #00008d;
    color: #fff;
    font-weight: 700;
    border-radius: 40px;
    padding: 15px 30px;
    letter-spacing: 2px;
    cursor: pointer;
}

.modal-content-price {
    max-height: 90%;
    overflow-y: auto;
    padding: 0;
    border-radius: 0;
}

.point_note {
    line-height: 1.5;
    margin-top: 10px;
}

.point_note p {
    font-weight: 500 !important;
}

.plan {
    background: url(/images/lp_insurance/plan-bg-pc.8d3b9ed.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 10px;
}

.plan_wrap {
    max-width: 900px;
    margin: auto;
}

.plan_wrap h2 {
    text-align: center;
    color: #00008d;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.plan_wrap-text {
    color: #00008d;
    text-align: center;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 30px;
}

.plan_tab-button-left {
    margin-right: 40px;
}

.plan_tab {
    margin-bottom: 20px;
}

.plan_tab-inner {
    background: #fff;
}

.plan_image-2 {
    max-width: 530px;
    margin: 0 auto 50px;
}

.plan_wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.plan_item {
    width: 48%;
    display: flex;
    flex-direction: column;
}

.plan_item-2 {
    flex-direction: row;
    width: 100%;
}

.plan_item h4 {
    color: #f15a24;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.plan_item h4 img {
    width: 24px;
}

.plan_item p {
    line-height: 1.7;
    font-size: 14px;
    font-weight: 700;
    flex-grow: 1;
}

.plan_table {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
}

.plan_table th {
    background: #00008d;
    color: #fff;
    padding: 5px 0;
    font-weight: 700; 
    text-align: center;
}

.plan_table td {
    background: #e0f5ff;
    padding: 10px 0;
    line-height: 1.5;
    font-size: 12px;
    font-weight: 700;
}

.plan_table td.table-center {
    border-right: 1px solid #b3b3b3;
    border-left: 1px solid #b3b3b3;
}

.plan_table-number {
    font-size: 20px;
    font-weight: 700;
}

.plan_table td.plan_table-middle {
    background: #0071d9;
    color: #fff;
    padding: 5px 0;
    font-weight: 700;
    font-size: 16px;
}

.plan_note {
    margin-top: 5px;
}

.plan_box {
    background: #f2f2f2;
    margin-top: 30px;
    padding: 20px;
}

.plan_box-title {
    font-size: 20px;
    text-align: center;
    color: #2e3192;
    font-weight: 700;
    letter-spacing: 1px;
}

.plan_box-wrap {
    display: flex;
    align-items: center;
}

.plan_box-image {
    transform: scaleX(-1);
    width: 25%;
    margin-right: 30px;
}

.plan_box-text {
    width: 75%;
    font-size: 15px;
    letter-spacing: 2px;
    line-height: 1.5;
}

.plan_box-text p {
    font-weight: 700;
}

.plan_box-text ul {
    list-style: none;
    padding-left: 10px;
}

.plan_box-text ul li{
    padding-left: 30px;
}

.plan_box-text ul li:first-of-type::before {
    content: '（1）' !important;
    margin-left: -30px;
}

.plan_box-text ul li:nth-of-type(2)::before {
    content: '（2）' !important;
    margin-left: -30px;
}

.plan_limit {
    background: #fff;
    padding: 30px;
}

.plan_limit h4 {
    text-align: center;
    font-size: 23px;
    color: #00008d;
    font-weight: 700;
}

.plan_limit h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.limit_table {
    width: 100%;
    border-collapse: collapse;
}

.limit_table th,
.limit_table td {
    border: 1px solid #b3b3b3;
    text-align: center;
    vertical-align: middle;
    padding: 10px 0;
    font-weight: 700;
    line-height: 1.5;
}

.limit_table td {
    line-height: 1.3;
}

.limit_table th {
    background: #c0ecff;
    color: #00008d;
    border-bottom-color: transparent;
}

.limit_table-30 {
    width: 30%;
}

.limit_note {
    background: #f2f2f2;
    padding: 10px;
    margin: 50px 0;
    display: flex;
}

.limit_note img {
    width: 45px;
}

.limit_note p {
    line-height: 1.5;
    margin-left: 20px;
}

.limit_table2 {
    width: 100%;
    border-collapse: collapse;
}

.limit_table2 th,
.limit_table2 td {
    border: 1px solid #b3b3b3;
    padding: 10px 20px;
    font-weight: 700;
    vertical-align: middle;
}

.limit_table2 th {
    background: #c0ecff;
    color: #00008d;
    border-right-color: transparent;
    font-size: 18px;
    letter-spacing: 2px;
    text-align: center;
}

.limit_table2 td {
    font-size: 15px;
    line-height: 1.2;
}

.flow {
    background: #e0f5ff;
    padding: 50px 20px 20px;
}

.flow_wrap {
    max-width: 900px;
    margin: auto;
}

.flow_wrap h2 {
    font-size: 40px;
    color: #00008d;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.flow_wrap p {
    text-align: center;
    color: #00008d;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 700;
}

.flow_wrap h3 {
    font-size: 20px;
    color: #00008d;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.flow_slider {
    margin-bottom: 50px;
}

.swiper-container {
    padding-bottom: 40px !important;
    cursor: grab;
}

.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 1 !important;
    border: 1px solid  ;
}

.swiper-pagination-bullet-active {
    border: none;
    background: #808080 !important;
}

.flow_box {
    background: #fff;
}

.flow_box h4 {
    background: #00008d;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 2px;
}

.flow_box-wrap {
    display: flex;
    align-items: center;
    padding: 30px;
}

.flow_box-left {
    width: 55%;
}

.flow_box-right {
    width: 45%;
    padding-left: 40px;
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 3px;
    font-weight: 700;
}

.cnumber {
    text-align: right;
    width: 90%;
    padding-top: 30px;
}

.note {
    padding-top: 50px;
    background: #fff;
}

.note_wrap {
    margin: 0 30px;
}
.note_inner {
    max-width: 900px;
    margin: auto;
    background: #f2f2f2;
    padding: 30px;
}

.note_address {
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    margin: 10px 0;
    padding: 10px 0;
    line-height: 1.7;
}

.note_wrap p {
    line-height: 1.7;
}

.note_wrap ul {
    line-height: 1.7;
}

footer {
    background: #fff;
}

.bottom_logo {
    text-align: center;
    margin: 0 auto;
    padding: 20px 0;
    width: 200px;
    display: block;
}

.copyright {
    background: #00008d;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
}


@media (min-width:767px) {
    .visible-sp {
        display: none;
    }
}

@media screen and (max-width:992px) {
    .mainvisual {
        background-position: 100%;
    }
    .mainvisual_wrap {
        display: block;
    }
    .mainvisual_left {
        width: 100%;
        padding-left: 0;
        margin-bottom: 30px;
    }
    .mainvisual_right {
        width: 100%;
        padding-left: 0;
        text-align: center;
    }
    .mainvisual_right-image {
        margin: auto;
    }
    .mainvisual_right-image img {
        margin-left: 40px;
    }
}


@media screen and (max-width:767px) {
    .hidden-767 {
        display: none;
    }
    .cta_button a {
        max-width: 300px;
        height: 50px;
    }
    .head_logo {
        width: 120px;
        margin: 0 20px;
    }
    .mainvisual {
        background: url(/images/lp_insurance/header-bg-sp.5db2269.jpg);
        background-repeat: no-repeat;
        background-size: cover;
    }
    .mainvisual_left h1 {
        max-width: 292px;
    }
    .mainvisual_right {
        margin-bottom: 20px;
    }
    .mainvisual_right-text {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .mainvisual_right-text span.mainvisual_underline {
        font-size: 20px;
    }
    .mainvisual_right-note {
        text-align: center;
        margin-right: 0;
        font-size: 15px;
    }
    .suggest_wrap {
        margin: 30px 0 50px;
    }
    .suggest_balloon p {
        letter-spacing: 0;
        line-height: 1.5;
    }
    .suggest_text {
        line-height: 1.5;
    }
    .point_wrap {
        background: url(/images/lp_insurance/point-bg-sp.8ed.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        padding: 30px 0;
    }
    .point_wrap h2 span {
        font-size: 15px;
    }
    .point_wrap h2 {
        font-size: 30px;
        letter-spacing: 2px;
    }
    .point_container {
        padding: 20px 10px;
        margin: 20px auto;
    }
    .point_item-number-wrap {
        padding-right: 5px;
    }
    .point_item-number-top {
        font-size: 15px;
    }
    .point_item-number-bottom {
        font-size: 80px;
    }
    .point_item-title h3 {
        font-size: 21px;
        margin-bottom: 0;
        letter-spacing: 0;
    }
    .point_item p {
        font-weight: 700;
        line-height: 1.5;
    }
    .point_item p span {
        font-size: 20px;
    }
    .point_item-image {
        margin-left: 0;
        padding: 10px;
        max-width: 100%;
    }
    .point_item-text {
        padding-left: 0;
        line-height: 1.5;
    }
    .point_item-reverse {
        justify-content: space-between;
    }
    .point_item p span.span-normal {
        font-size: 15px;
        color: #333;
        font-weight: 500;
    }
    .point_item-title2-text {
        line-height: 1.5;
        margin-bottom: 20px;
    }
    .point_item-wrap {
        display: block;
        margin: 0 0 30px;
    }
    .point_item-box {
        width: 100%;
        margin-bottom: 20px;
        align-items: flex-start;
    }
    .modal_occupation-inner .modal-close-sp {
        bottom: -60px;
    }
    .point_tab {
        margin: 0;
    }
    .point_tab-button,
    .plan_tab-button {
        width: calc(50% - 40px);
        font-size: 15px;
        height: 45px;
        line-height: 45px;
    }
    .point_tab-button-left {
        margin-right: 80px;
    }
    .price h3 {
        font-size: 20px;
    }
    .price_box-title {
        font-size: 18px;
    }
    .point_tab-content, .plan_tab-content {
        padding: 40px 0 20px;
    }
    .price_box-text {
        line-height: 1.5;
    }
    .price_table-title {
        font-size: 18px;
    }
    .price_table-sp {
        margin-top: 20px;
    }
    .price_table-sp-title {
        color: #00008d;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 10px;
    }
    .price_detail-button {
        margin-top: 20px;
    }
    .price_detail-button button {
        width: 100%;
        max-width: 275px;
        padding: 12px 30px;
    }
    .modal-content-price {
        top: 47%;
    }
    .plan {
        background: url(/images/lp_insurance/plan-bg-sp.0df207c.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        padding: 50px 10px 20px;
    }
    .plan_wrap h2 {
        font-size: 25px;
    }
    .plan_wrap-text {
        text-align: left;
    }
    .plan_tab-button-left {
        margin-right: 80px;
    }
    .plan_tab-content {
        padding: 10px 10px 20px;
    }
    .plan_image {
        overflow: auto;
        width: 100%;
        margin-bottom: 10px;
    }
    .plan_image img {
        width: 800px;
    }
    .plan_image-2 {
        overflow: unset;
    }
    .plan_image-2 img {
        width: 100%;
    }
    .plan_wrapper {
        display: block;
    }
    .plan_item {
        width: 100%;
        margin-bottom: 20px;
    }
    .plan_item h4 img {
        width: 38px;
        margin-right: 10px;
        margin-top: -10px;
    }
    .plan_item h4 {
        display: flex;
        align-items: center;
    }
    .plan_item p {
        margin-bottom: 10px;
    }
    .plan_item-2 {
        display: block;
    }
    .plan_table td {
        padding: 5px 0;
        line-height: 1.3;
    }
    .plan_table-number {
        font-size: 25px;
    }
    .plan_box-title {
        text-align: left;
    }
    .plan_box-wrap {
        flex-direction: row-reverse;
        align-items: flex-start;
    }
    .plan_box-text {
        margin-top: 10px;
    }
    .plan_box-image {
        transform: scaleX(1);
        margin-right: 0;
        width: 30%;
    }
    .plan_box-text-sp {
        padding: 10px 0 10px 30px;
        font-weight: 700;
        line-height: 1.5;
    }
    ul.plan_box-tex-sp li{
        padding-left: 30px;
    }
    
    ul.plan_box-text-sp  li:first-of-type::before {
        content: '(1)' !important;
        margin-left: -30px;
    }
    
    ul.plan_box-text-sp  li:nth-of-type(2)::before {
        content: '(2)' !important;
        margin-left: -30px;
    }
    .plan_limit {
        padding: 15px;
    }
    .plan_limit h4 {
        margin-bottom: 20px;
        font-size: 20px;
    }
    .limit_table th.limit_table-sp-title {
        background: #0071d9;
        color: #fff;
        padding: 8px 0;
    }
    .limit_table th.limit_table-sp-left,
    .limit_table td.limit_table-sp-left {
        text-align: left;
        padding: 10px;
        line-height: 1.3;
    }
    .limit_table th,
    .limit_table td {
        font-size: 15px;
    }
    .limit_note {
        display: block;
        margin: 10px 0;
    }
    .limit_note img {
        width: 18%;
        float: left;
        margin: 5px 10px;
        max-width: 80px;
    }
    .limit_note p {
        font-weight: 700;
        margin-left: 0;
    }
    .limit_table2 th {
        font-size: 16px;
        width: 30%;
        padding: 0;
        letter-spacing: 0;
    }
    .flow_wrap h2 {
        font-size: 25px;
    }
    .flow_wrap p {
        text-align: left;
        padding: 0 10px;
    }
    .flow_slider {
        margin: 0 30px 50px;
    }
    .flow_box {
        margin: 0 10px;
        background: none;
    }
    .flow_box-sp {
        font-weight: 700;
        line-height: 1.7;
        font-size: 15px;
        margin-top: 10px;
    }
    .note {
        padding-top: 20px;
    }
    .note_inner {
        padding: 20px 10px;
    }
}

@media screen and (max-width: 450px) {
    .point_item-number-top {
        padding-left: 0;
    }
}


/* スクロールヒントアニメーション */
@keyframes horizontal {
    0% { transform:translateX( -10px); }
    100% { transform:translateX( 20px); }
}

.scroll-guide-pointer {
    animation: horizontal 1.5s linear infinite alternate;
}

.scroll-guide-arrow {
    width: 60px;
    margin: auto;
}

.scroll-guide-pointer {
    width: 40px;
    margin: auto;
}