@charset "UTF-8";
/*--------------------------------------------*/
/* 全体 */
.content {
    opacity: 0;
    pointer-events: none;
}
body.appear .content {
    animation-name: PageAnime-content;
    animation-duration: 0.1s;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;
    opacity: 0;
    pointer-events: auto;
}
.animation .content {
    opacity: 1;
    pointer-events: auto;
}
@keyframes PageAnime-content {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.fadeout .animation-bg {
    background: #fff6f0;
    content: "";
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    animation-name: PageAnime-fade;
    animation-duration: 0.1s;
    animation-delay: 0.3s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    pointer-events: none;
}
@keyframes PageAnime-fade {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        display: none;
    }
}
/*------------------------- header*/
header {
    width: 100%;
    min-height: 250px;
    text-align: center;
    position: relative;
    padding: 40px 0 0 0;
}
header #header_logo {
    width: 100%;
    max-width: 265px;
    margin: 0 auto 30px auto;
}
header #header_logo a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    font-size: 22px;
    line-height: 1.3;
    text-decoration: none;
    color: #0057b8;
    font-weight: bold;
}
header #header_logo a img {
    width: 100%;
    max-width: 410px;
    height: auto;
    margin: 0 0 20px 0;
}
@media print, screen and (min-width: 576px) {
    header #header_logo {
        max-width: 500px;
    }
    header #header_logo a {
        font-size: 26px;
    }
}
@media print, screen and (min-width: 768px) {
    header {}
    header #header_logo {
        float: none;
        margin: 0 auto;
        padding: 28px 0 20px;
    }
    header #header_logo a {
        font-size: 33px;
    }
}
/*---------------------------------- Content */
.title01 {
    margin: 0 auto;
    text-align: center;
    padding-bottom: 30px;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.35;
}
.title01 span {
    color: #03a9fa;
    font-size: 22px;
}
.title01 span.yen {
    font-size: 0.8em;
    color: #242424;
}
.title02 {
    margin: 0 auto;
    text-align: center;
    padding-bottom: 30px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.35;
}
.title02 span {
    color: #03a9fa;
    font-size: 18px;
}
@media print, screen and (min-width: 768px) {
    .title01 {
        font-size: 30px;
        padding-bottom: 40px;
    }
    .title01 span {
        font-size: 30px;
    }
    .title02 {
        font-size: 24px;
        padding-bottom: 30px;
    }
    .title02 span {
        font-size: 24px;
    }
}
/*---------------------------------- yen */
span.yen {
    font-size: 0.8em;
    color: #242424;
}
@media print, screen and (min-width: 768px) {
    span.yen {
        font-size: 0.7em;
    }
}
/*---------------------------------- bg */
.content_bg {
    padding: 40px 0;
}
@media print, screen and (min-width: 768px) {
    .content_bg {
        padding: 80px 0;
    }
}
/*------------------------------------- */
section {}
.choose_box {
    height: auto;
    width: 100%;
    border-radius: 6px;
    background: #fff;
    padding: 60px 30px 30px 30px;
}
/*=========================================================*/
.type_2 {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    height: 100%;
    min-height: 200px;
}
.type_2 li {
    width: 100%;
    margin-bottom: 20px;
    list-style: none;
    height: 200px;
}
.type_2 li a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 185px;
    color: #fff;
    padding: 20px 10px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 6px;
    transition: 0.3s;
}
.type_2 li a h3 {
    font-weight: 700;
    font-size: 1.8em;
}
.type_2 li a span {
    display: block;
    width: 100%;
}
.type_2 li a span.detail {
    background: #fff;
    padding: 10px 20px;
    margin: 0 20px;
    border-radius: 6px;
}
.type_2 li:first-of-type a {
    background: #03a9fa;
    border: 2px solid #03a9fa;
    border-bottom: 6px solid #0095dd;
}
.type_2 li:first-of-type a span.detail {
    background: #fff;
    color: #03a9fa;
    padding: 10px 20px;
    margin: 10px 20px 0;
    border-radius: 6px;
}
.type_2 li:first-of-type a:hover {
    background-color: #fff;
    color: #03a9fa;
    margin-top: 6px;
    border-bottom: 2px solid #03a9fa;
}
.type_2 li:first-of-type a:hover span.detail {
    background: #03a9fa;
    color: #fff;
}
/*=========================================================*/
.type_2 li:last-of-type a {
    background: #0057b8;
    border: 2px solid #0057b8;
    border-bottom: 6px solid #004593;
}
.type_2 li:last-of-type a span.detail {
    color: #0057b8;
}
.type_2 li:last-of-type a:hover {
    background-color: #fff;
    color: #0057b8;
    margin-top: 6px;
    border-bottom: 2px solid #0057b8;
}
.type_2 li:last-of-type a:hover span.detail {
    background: #0057b8;
    color: #fff;
}
.fit {
    width: 100%;
    margin: auto;
}
@media print, screen and (min-width: 576px) {
    .type_2 li:nth-child(2n) {
        margin-right: 0;
    }
}
@media print, screen and (min-width: 768px) {
    .type_2 {
        text-align: center;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        min-height: 110px;
    }
    .type_2 li {
        width: calc(100% / 2 - 10px);
        /*margin-right: 20px;
        margin-bottom: 20px;*/
        list-style: none;
    }
    .type_2 li a {
        font-size: 22px;
        height: 230px;
    }
    .type_2 li {
        height: 240px;
    }
}
/*=========================================================*/
.type_3 {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    height: 100%;
    min-height: 200px;
}
.type_3 li {
    width: 100%;
    margin-bottom: 20px;
    list-style: none;
    height: 200px;
}
.type_3 li a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 185px;
    color: #fff;
    padding: 20px 10px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 6px;
    transition: 0.3s;
}
.type_3 li a h3 {
    font-weight: 700;
    font-size: 1.8em;
}
.type_3 li a span {
    display: block;
    width: 100%;
}
.type_3 li a span.detail {
    background: #fff;
    padding: 10px 20px;
    margin: 0 20px;
    border-radius: 6px;
}
.type_3 li:first-of-type a {
    background: #03a9fa;
    border: 2px solid #03a9fa;
    border-bottom: 6px solid #0095dd;
}
.type_3 li:first-of-type a span.detail {
    background: #fff;
    color: #03a9fa;
    padding: 10px 20px;
    margin: 10px 20px 0;
    border-radius: 6px;
}
.type_3 li:first-of-type a:hover {
    background-color: #fff;
    color: #03a9fa;
    margin-top: 6px;
    border-bottom: 2px solid #03a9fa;
}
.type_3 li:first-of-type a:hover span.detail {
    background: #03a9fa;
    color: #fff;
}
/*=========================================================*/
.type_3 li:nth-of-type(2) a {
    background: #0057b8;
    border: 2px solid #0057b8;
    border-bottom: 6px solid #004593;
}
.type_3 li:nth-of-type(2) a span.detail {
    color: #0057b8;
}
.type_3 li:nth-of-type(2) a:hover {
    background-color: #fff;
    color: #0057b8;
    margin-top: 6px;
    border-bottom: 2px solid #0057b8;
}
.type_3 li:nth-of-type(2) a:hover span.detail {
    background: #0057b8;
    color: #fff;
}
/*=========================================================*/
.type_3 li:last-of-type a {
    background: #00c7a4;
    border: 2px solid #00c7a4;
    border-bottom: 6px solid #00a78a;
}
.type_3 li:last-of-type a span.detail {
    color: #00c7a4;
}
.type_3 li:last-of-type a:hover {
    background-color: #fff;
    color: #00c7a4;
    margin-top: 6px;
    border-bottom: 2px solid #00c7a4;
}
.type_3 li:last-of-type a:hover span.detail {
    background: #00c7a4;
    color: #fff;
}
.fit {
    width: 100%;
    margin: auto;
}
@media print, screen and (min-width: 576px) {
    .type_3 li:nth-child(2n) {
        margin-right: 0;
    }
}
@media print, screen and (min-width: 768px) {
    .type_3 {
        text-align: center;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        min-height: 110px;
    }
    .type_3 li {
        width: calc(100% / 3 - 10px);
        /*margin-right: 20px;
        margin-bottom: 20px;*/
        list-style: none;
    }
    .type_3 li a {
        font-size: 22px;
        height: 230px;
    }
    .type_3 li {
        height: 240px;
    }
}
@media print, screen and (min-width: 992px) {
    .choose_box {
        padding: 60px 80px 30px 80px;
    }
}
/*=========================================================*/
.step {
    display: flex;
    justify-content: center;
    list-style-type: none;
    padding: 0;
    width: 100%;
    max-width: 290px;
    margin: 0 auto;
}
.step li {
    display: flex;
    flex: 1 1;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    color: #969da3;
    font-size: .7em;
}
.step li.prev, .step li.current {
    color: #0597ff;
}
.step li::before {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-bottom: 6px;
    content: '';
    border: 2px solid #d6dde3;
    border-radius: 50%;
    background-color: #fff;
}
.step li.prev::before, .step li.current::before {
    border-color: #0597ff;
}
.step li:not(:last-child)::after {
    position: absolute;
    top: 6px;
    left: 50%;
    z-index: -1;
    width: 100%;
    height: 2px;
    background-color: #d6dde3;
    content: '';
}
.step li.current::before, .step li.prev::after {
    background-color: #0597ff;
}
@media print, screen and (min-width: 576px) {
    .step {
        max-width: 350px;
    }
    .step li {
        font-size: .8em;
    }
}
@media print, screen and (min-width: 768px) {
    .step {
        max-width: 600px;
    }
    .step li {
        font-size: 1em;
    }
    .step li::before {
        width: 20px;
        height: 20px;
    }
    .step li:not(:last-child)::after {
        top: 9px;
    }
}
/*------------------------------------- */
p.benefits {
    position: relative;
    padding: 20px;
    margin: 20px 0 50px;
    background: #ff5513;
    color: #fff;
    font-weight: bold;
    border-radius: 6px;
    font-size: 2.2em;
}
p.benefits::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 0 30px 30px;
    border-color: transparent transparent transparent #ff5513;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 22px;
    margin: auto;
    transition: all 0.3s;
    transform: rotate(90deg) translateX(190%);
}
p.benefits span.yen {
    color: #fff;
    font-weight: bold;
}
/*------------------------------------- */
.fuwafuwa {
    animation: fuwafuwa 2s ease-in-out infinite alternate;
    transition: 0.5s ease-in-out;
}
@keyframes fuwafuwa {
    0% {
        transform: translate(0, 0) rotate(-0deg);
    }
    50% {
        transform: translate(0, -12px) rotate(0deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}
/*---------------------------------- footer*/
footer {}
#footer_logo {
    display: block;
    margin: 50px auto 20px;
}
#footer_logo img {
    width: 180px;
    height: auto;
    display: block;
    margin: 0 auto;
}
/* copyright */
small {
    display: block;
    font-size: 14px;
    line-height: 1;
    text-align: center;
    padding-bottom: 53px;
}
@media (max-width:767px) {
    #footer_logo {
        margin: 30px auto 15px;
    }
    #footer_logo img {
        width: 160px;
    }
    small {
        font-size: 12px;
        padding-bottom: 35px;
    }
}
@media (max-width:479px) {
    #footer_logo {
        margin: 20px auto 5px;
    }
    #footer_logo img {
        width: 130px;
    }
    small {
        font-size: 10px;
        padding-bottom: 28px;
    }
}
/*-------------------------------------------------------------------- O24format*/
/*TextRight*/
.tx_right {
    text-align: right;
}
/*TextLeft*/
.tx_left {
    text-align: left;
}
/*TextCenter*/
.tx_cent {
    text-align: center;
}
/*bold*/
.tx_bold {
    font-style: normal;
    font-weight: bold;
}
/*TextRed*/
.tx_red {
    color: #C33;
}
/*---------------------------------- Float*/
/*FloatLeft*/
.float_left {
    float: left;
}
/*FloatRight*/
.float_right {
    float: right;
}
/*ClearBoth*/
.clearboth {
    clear: both;
}
/*OverflowHidden*/
.ov_hidden {
    overflow: hidden;
}
/*---------------------------------- Margin*/
/*MarginTop*/
.margin_t0 {
    margin-top: 0 !important;
}
.margin_t05 {
    margin-top: 5px;
}
.margin_t10 {
    margin-top: 10px;
}
.margin_t20 {
    margin-top: 20px;
}
.margin_t30 {
    margin-top: 30px;
}
.margin_t40 {
    margin-top: 40px;
}
.margin_t50 {
    margin-top: 50px;
}
/*MarginBottom*/
.margin_b0 {
    margin-bottom: 0 !important;
}
.margin_b05 {
    margin-bottom: 5px;
}
.margin_b10 {
    margin-bottom: 10px;
}
.margin_b20 {
    margin-bottom: 20px;
}
.margin_b30 {
    margin-bottom: 30px;
}
.margin_b40 {
    margin-bottom: 40px;
}
.margin_b50 {
    margin-bottom: 50px;
}
/*MarginRight*/
.margin_r0 {
    margin-right: 0 !important;
}
.margin_r05 {
    margin-right: 5px;
}
.margin_r10 {
    margin-right: 10px;
}
.margin_r15 {
    margin-right: 15px;
}
.margin_r20 {
    margin-right: 20px;
}
/*MarginLeft*/
.margin_l0 {
    margin-left: 0 !important;
}
.margin_l05 {
    margin-left: 50px;
}
.margin_l10 {
    margin-left: 10px;
}
.margin_l15 {
    margin-left: 15px;
}
.margin_l20 {
    margin-left: 20px;
}
/*---------------------------------- ClearFix*/
.clearfix {
    zoom: 1;
}
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}
/*---------------------------------- Hoverimg*/
a:hover img.hoverimg {
    opacity: 0.6;
    filter: alpha(opacity=60);
    -ms-filter: "alpha( opacity=60 )";
}
/*------------------------------------------------------------表示・非表示切り替え*/
.sp_none {
    display: none;
}
@media print, screen and (min-width:768px) {
    .pc_none {
        display: none;
    }
    .sp_none {
        display: inline-block;
    }
}
.local_phone_numbers {
    font-size: 0.6em;
    line-height: 1.5;
}