@charset "utf-8";

/****************************************

    /* CSS Reset

*****************************************/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    font-size: 100%;
    vertical-align: baseline;
    border: 0;
    outline: 0;
    background: transparent;
    margin: 0;
    padding: 0;
}

body {
    line-height: 1;
}

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

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: "";
    content: none;
}

a {
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    margin: 0;
    padding: 0;
}

ins {
    color: #000;
    text-decoration: none;
    background-color: #ff9;
}

mark {
    color: #000;
    font-style: italic;
    font-weight: bold;
    background-color: #ff9;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

input, select, textarea, img, th, td {
    vertical-align: middle;
}

ul, dl, ol {
    list-style: none;
}

/****************************************

    /* 共通設定

*****************************************/

* {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-appearance: none;
            appearance: none;
}

body {
    font-family: 'Noto Sans Japanese', Meiryo, sans-serif;
    font-size: 18px;
    color: #333;
    font-weight: 500;
    line-height: 2;
    background: #fff;
    -webkit-text-size-adjust: 100%;
}

@media screen and (max-width: 800px) {

body {
    font-size: 14px;
}

}

h1, h2, h3, h4, h5, h6, th {
    font-weight: 500;
}

a {
    color: #333;
    text-decoration: underline;
    transition-duration: .3s;
}

a:hover {
    text-decoration: none;
    transition-duration: .3s;
}

a:hover img {
    -moz-opacity: .5;
    opacity: .5;
    transition-duration: .3s;
}

img, video, object {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    border: none;
    transition-duration: .3s;
}

table {
    table-layout:fixed;
}

table th,
table td {
    vertical-align: middle;
}

/* ■ Wrap
----------------------------- */

.wrap {
    width: 1000px;
    margin: 0 auto;
    position: relative;
}

.wrap:after {
    content: "";
    display: block;
    clear: both;
}

@media screen and (max-width: 800px) {

.wrap {
    width: 100%;
}

}

/****************************************

    /*

*****************************************/

section {
    padding: 60px 0;
    position: relative;
}

@media screen and (max-width: 800px) {

section {
    padding: 30px 0;
    position: relative;
}

}

/****************************************

    /*

*****************************************/

h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.6;
    text-align: center;
}

h2 strong {
    color: #25a;
    font-weight: 800;
    font-size: 46px;
}

.underLine {
    background:linear-gradient(transparent 70%, #ff5 70%,#ff5 92%,transparent 92%);
}

@media screen and (max-width: 800px) {

h2 {
    font-size: 16px;
}

h2 strong {
    font-size: 24px;
}

}

/****************************************

    /*

*****************************************/

.cta {
    text-align: center;
    background: url(images/cta-bg.png) no-repeat center center;
}

.cta .box {
    border: 8px solid #25a;
    background: #fff;
    padding: 40px;
    position: relative;
    border-radius: 20px;
    box-shadow: 10px 10px 10px rgba(35,85,170,.2);
    transition: .5s;
    -webkit-transition: .5s;
    transform: scale(.94);
}

.cta .box:hover {
    transform: scale(1);
    box-shadow: 20px 20px 10px rgba(35,85,170,.2);
}

.cta .tips span {
    display: inline-block;
    color: #25a;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #25a;
    background: #eff6fc;
    margin: 0 .5em;
    padding: 0 1em;
    border-radius: 5px;
}

.cta .tips span:before {
    font-family: FontAwesome;
    content: "\f00c";
    margin: 0 .5em 0 0;
}

.cta h2 {
    margin: 20px 0;
}

.cta h3 {
    display: inline-block;
    font-weight: 600;
    background: #eff6fc;
    padding: 0 2em;
}

.cta h3 span {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    background: #e43;
    margin: 0 .5em 0 0;
    padding: 0 .5em;
    border-radius: 20px;
    position: relative;
    top: -3px;
}

.cta h3 strong {
    font-size: 24px;
    padding: 0 .1em;
}

.cta h3 strong {
    color: #e43;
    font-size: 24px;
    font-weight: 800;
}

.cta ul {
    display: flex;
    margin: 20px 0 0;
}

.cta ul li {
    flex: 1;
    padding: 0 40px;
}

.cta ul li {
    flex: 1;
    padding: 0 40px;
}


.cta ul li .tel {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.4;
}

.cta ul li .tel img {
    width: 60px;
    margin: 0 10px 0 0;
    vertical-align: middle;
    position: relative;
    top: -5px;
}

.cta ul li .note {
    font-size: 14px;
}

.cta ul li:nth-child(2) {
    display: none;
}

.cta ul li:nth-child(3) a {
    display: block;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    background-color: #f80;
    border: 2px solid #3b4;
    background: linear-gradient(#00B900, #080);
    padding: .75em;
    border-radius: 10px;
    box-shadow: 0 8px 0 #00B900;
    position: relative;
    top: 0;
}

.cta ul li:nth-child(3) a:hover {
    box-shadow: 0 0 0 #c50;
    position: relative;
    top: 8px;
}

.cta .badge {
    width: 120px;
    height: 120px;
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    background: #e43;
    border-radius: 50%;
    padding: 20px 0 0;
    position: absolute;
    top: -20px;
    left: -20px;
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
}

@media screen and (max-width: 800px) {

.cta .box {
    border: 4px solid #25a;
    margin: 0 10px;
    padding: 10px;
    border-radius: 10px;
}

.cta .tips {
    text-align: center;
}

.cta .tips span {
    display: inline-block;
    color: #25a;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #25a;
    background: #eff6fc;
    margin: 2px .5em;
    padding: 0 1em;
    border-radius: 5px;
}

.cta h2 {
    margin: 10px 0;
}

.cta h3 {
    padding: 0 1em;
}

.cta h3 span {
    font-size: 13px;
}

.cta h3 strong {
    font-size: 18px;
}

.cta h3 strong {
    font-size: 18px;
}

.cta ul {
    flex-direction: column;
    margin: 10px 0 0;
}

.cta ul li {
    flex: 1;
    padding: 0 10px 10px;
}

.cta ul li .tel {
    font-size: 30px;
}

.cta ul li .tel img {
    width: 32px;
    margin: 0 10px 0 0;
}

.cta ul li:nth-child(1) {
    display: none;
}

.cta ul li:nth-child(2) {
    display: block;
    margin: 0 0 10px;
}

.cta ul li:nth-child(2) a {
    display: block;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    background-color: #2a3;
    border: 2px solid #fa0;
    background: linear-gradient(#f80, #e60);
    padding: .75em;
    border-radius: 10px;
    box-shadow: 0 8px 0 #c50;
    position: relative;
    top: 0;
}

.cta ul li:nth-child(2) a:hover {
    box-shadow: 0 0 0 #c50;
    position: relative;
    top: 8px;
}

.cta ul li:nth-child(2) strong {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
}

.cta ul li:nth-child(2) img {
    width: 32px;
    margin: 0 10px 0 0;
    vertical-align: middle;
    position: relative;
    top: -5px;
}

.cta ul li:nth-child(2) span {
    display: block;
}

.cta ul li:nth-child(3) a {
    font-size: 18px;
}

.cta .badge {
    width: 60px;
    height: 60px;
    font-size: 16px;
    padding: 10px 0 0;
}



}

/****************************************

    /*

*****************************************/

header {
    color: #fff;
    background: #25a;
    padding: 5px 0;
    overflow: hidden;
}

header h1 {
    width: 50%;
    padding: 10px 0;
    float: left;
}

header ul {
    display: flex;
    width: 50%;
    float: right;
}

header ul li {
    flex: 1;
    padding: 5px 5px 0;
}

header .tel {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.4;
}

header .tel img {
    width: 42px;
    margin: 0 10px 0 0;
    vertical-align: middle;
    position: relative;
    top: -5px;
}

header .note {
    font-size: 11px;
}

header ul li:last-child a {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    background-color: #f80;
    border: 2px solid #3b4;
    background: linear-gradient(#00B900, #080);
    padding: .25em .75em;
    border-radius: 10px;
    box-shadow: 0 8px 0 #00B900;
    position: relative;
    top: 0;
}

header ul li:last-child a:hover {
    box-shadow: 0 0 0 #c50;
    position: relative;
    top: 8px;
}

@media screen and (max-width: 800px) {

header h1 {
    width: 100%;
    text-align: center;
    padding: 5px 0;
    float: none;
}

header h1 img {
    width: 180px;
}


header ul {
    display: none;
}

}

/****************************************

    /*

*****************************************/

#mainVisual {
    background: url(images/mainvisual-bg.jpg);
    background-size: cover;
    padding: 0;
}

#mainVisual .sp {
    display: none;
}

@media screen and (max-width: 800px) {

#mainVisual .pc {
    display: none;
}

#mainVisual .sp {
    display: block;
}

}

/****************************************

    /*

*****************************************/

#trouble {
    background: #eff6fc;
    background-image: radial-gradient(#fafafa 20%, transparent 0), radial-gradient(#fafafa 20%, transparent 0);
    background-position: 0 0, 10px 10px;
    background-size: 20px 20px;
}

#trouble ul {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    margin: 40px 0 0;
}

#trouble ul li {
    width: 33.33%;
    font-weight: 600;
    text-align: center;
    background: url(images/trouble-li-bg.svg) no-repeat center center;
    padding: 20px;
    position: relative;
}

#trouble ul li::before {
    color: #fff;
    font-size: 60px;
    font-weight: 600;
    position: absolute;
    top: 10px;
    right: 30px;
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
}

#trouble ul li:nth-child(odd)::before {
    content: "悩";
}

#trouble ul li:nth-child(even)::before {
    content: "困";
}

#trouble ul li img {
    display: block;
    width: 160px;
    margin: 0 auto;
}

#trouble ul li p {
    color: #fff;
    line-height: 1.8;
    background: #25a;
    padding: .55em;
    position: relative;
    top: -10px;
    border-radius: 10px;
}

#trouble ul li p::after {
    content: "";
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-bottom: 15px solid #25a;
    margin: 0 0 0 -10px;
    position: absolute;
    top: -25px;
    left: 50%;
}

@media screen and (max-width: 800px) {

#trouble ul {
    margin: 20px 0 0;
}

#trouble ul li {
    width: 80%;
    margin: 10px;
    padding: 20px;
}

}

/****************************************

    /*

*****************************************/

#solution {

}

#solution .tips {
    text-align: center;
}

#solution .tips span {
    color: #fff;
    background: #25a;
    padding: .25em 2em;
}

#solution .description {
    text-align: center;
    border-top: 3px double #ccc;
    border-bottom: 3px double #ccc;
    margin: 20px 0;
    padding: 20px 0;
}

#solution ul {
    display: flex;
    flex-flow: wrap;
}

#solution ul li {
    width: 31.33%;
    border: 5px solid #25a;
    background: #fff;
    margin: 20px 1%;
}

#solution ul li h3 {
    color: #fff;
    text-align: center;
    border-bottom: 5px solid #25a;
    background: #25a;
}

#solution ul li img {
    display: block;
    width: 94%;
    margin: 20px auto;
}

#solution ul li p {
    font-size: 90%;
    margin: 20px;
}

@media screen and (max-width: 800px) {

#solution {
    margin: 0 10px;
}

#solution .tips span {
    display: block;
    padding: .25em 0;
}

#solution .description {
    margin: 10px 0;
    padding: 10px 0;
}

#solution ul li {
    width: 96%;
    margin: 10px auto;
}

#solution ul li img {
    margin: 10px auto;
}

#solution ul li p {
    font-size: 100%;
    margin: 10px;
}

}

/****************************************

    /*

*****************************************/

#plan {
    background: #eff6fc;
    background-image: linear-gradient( transparent 95%, #fafafa 5%),
                      linear-gradient( 90deg, transparent 95%, #fafafa 5%);
    background-size: 12px 12px;
}

#plan .tips {
    text-align: center;
    margin: -90px 0 1em;
}

#plan .tips span {
    display: inline-block;
    width: 120px;
    height: 120px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    background: #25a;
    margin: 0 20px;
    padding: 30px 0;
    vertical-align: top;
    border-radius: 50%;
}

#plan .description {
    text-align: center;
}

#plan .box {
    width: 88%;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.8;
    background-color: #333;
    background: linear-gradient(#333, #111);
    margin: 50px auto 20px;
    padding: 12px;
    border-radius: 10px;
    position: relative;
}

#plan .box .clip {
    position: absolute;
    top: -13px;
    left: 50%;
    margin: 0 0 0 -110px;
}

#plan .box .image {
    width: 240px;
    position: absolute;
    top: -80px;
    right: -40px;
}

#plan .inner {
    background: #fff;
    padding: 30px;
    border-radius: 2px;
}

#plan .box h3 {
    font-weight: 800;
    text-align: center;
}

#plan .box table {
    width: 90%;
    margin: 0 auto;
}

#plan .box h3 strong,
#plan .box table strong {
    display: inline-block;
    color: #e43;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -2px;
    margin: 0 0 0 10px;
}

#plan .box h3 strong span,
#plan .box table strong span {
    font-size: 32px;
    font-weight: 800;
}

#plan .arrow {
    display: block;
    width: 180px;
    height: 80px;
    color: #ff5;
    font-size: 36px;
    font-weight: 800;
    line-height: 90px;
    text-align: center;
    background: #25a;
    margin: -50px auto 60px;
    position: relative;
}

#plan .arrow::after {
    content: "";
    width: 0;
    height: 0;
    border: 120px solid transparent;
    border-top: 45px solid #25a;
    margin: 0 0 0 -120px;
    position: absolute;
    top: 100%;
    left: 50%;
}

#plan h4 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.8;
    text-align: center;
}

#plan h4 strong {
    color: #25a;
    font-weight: 800;
    font-size: 46px;
}

#plan ul {
    display: flex;
    flex-flow: wrap;
}

#plan ul li {
    width: 15.5%;
    text-align: center;
    margin: 20px .5%;
}

#plan ul li p {
    color: #fff;
    text-align: center;
    background: #25a;
    position: relative;
    padding: 0 0 0 40px;
}

#plan ul li p::after {
    content: "買取金額";
    width: 40px;
    height: 40px;
    font-size: 14px;
    line-height: 1.4;
    background: #e43;
    padding: 5px;
    position: absolute;
    bottom: 0;
    left: 5px;
    border-radius: 50%;
}

@media screen and (max-width: 800px) {

#plan .tips {
    text-align: center;
    margin: -45px 0 1em;
}

#plan .tips span {
    display: inline-block;
    width: 80px;
    height: 80px;
    font-size: 14px;
    margin: 0 10px;
    padding: 18px 0;
}

#plan .description {
    text-align: left;
    margin: 10px;
}

#plan .description br {
    display: none;
}

#plan .box {
    width: 96%;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.8;
    background-color: #333;
    background: linear-gradient(#333, #111);
    margin: 30px auto 20px;
    padding: 12px;
    border-radius: 10px;
    position: relative;
}

#plan .box .clip {
    position: absolute;
    top: -13px;
    left: 50%;
    margin: 0 0 0 -110px;
}

#plan .box .image {
    display: none;
}

#plan .inner {
    background: #fff;
    padding: 30px 10px 10px;
    border-radius: 2px;
}

#plan .box h3 {
    font-weight: 800;
    text-align: center;
}

#plan .box table {
    width: 100%;
    margin: 0 auto;
}

#plan .box h3 strong,
#plan .box table strong {
    font-size: 18px;
}

#plan .box h3 strong span,
#plan .box table strong span {
    font-size: 12px;
}

#plan .arrow {
    display: block;
    width: 200px;
    height: 50px;
    color: #ff5;
    font-size: 30px;
    line-height: 60px;
    text-align: center;
    background: #25a;
    margin: -40px auto 30px;
    position: relative;
}

#plan .arrow::after {
    content: "";
    width: 0;
    height: 0;
    border: 140px solid transparent;
    border-top: 30px solid #25a;
    margin: 0 0 0 -140px;
    position: absolute;
    top: 100%;
    left: 50%;
}

#plan h4 {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.8;
    text-align: center;
    margin: 0 10px;
}

#plan h4 strong {
    color: #25a;
    font-weight: 800;
    font-size: 24px;
}

#plan ul {
    padding: 10px;
    justify-content: center;
}

#plan ul li {
    width: 46%;
    background: #fff;
    margin: 10px 2%;
}

#plan ul li p {
    color: #fff;
    text-align: center;
    background: #25a;
    position: relative;
    padding: 0 0 0 40px;
}

#plan ul li p::after {
    bottom: -5px;
}


}

/****************************************

    /*

*****************************************/

#media {
    background: #fafafa;
}

#media ul {
    margin: 20px 0 0;
}
#media ul li {
    width: 70%;
    margin: 0 auto;
}

@media screen and (max-width: 800px) {

#media ul {
    margin: 10px 10px 0;
}
#media ul li {
    width: 90%;
    margin: 0 auto;
}

}

/****************************************

    /*

*****************************************/

#result {

}

#result .tips {
    text-align: center;
}

#result .tips span {
    color: #fff;
    background: #25a;
    padding: .25em 2em;
}

#result .tips span strong {
    color: #ff5;
    font-size: 24px;
}

#result .box {
    border: 5px solid #25a;
    background: #fff;
    margin: 40px 0;
    padding: 40px;
    border-radius: 20px;
}

#result .box h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    background: #25a;
    margin: 0 0 40px -60px;
    padding: .25em 0 0 110px;
    position: relative;
}

#result .box h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    border-style: solid;
    border-color: transparent;
    border-width: 0 15px 15px 0;
    border-right-color: #038;
}

#result .box h3 span {
    display: block;
    width: 80px;
    height: 80px;
    color: #25a;
    font-size: 18px;
    text-align: center;
    font-weight: 800;
    line-height: 1.2;
    background: #fff;
    border: 5px solid #25a;
    padding: 5px 0;
    position: absolute;
    top: -10px;
    left: 20px;
    border-radius: 50%;
}

#result .box h3 span strong {
    display: block;
    font-size: 32px;
    font-weight: 800;
}

#result .box .data {
    overflow: hidden;
}

#result .box .buy {
    margin: 20px 0 0;
}

#result .box .data .photo,
#result .box .data .left {
    width: 52%;
    float: left;
}

#result .box .data .right {
    width: 44%;
    float: right;
}

#result .box .data .pay {
    color: #e43;
    margin: -20px 0 0;
}

#result .box .buy .pay {
    margin: -10px 0 0;
}

#result .box .data .pay span {
    display: inline-block;
    font-size: 14px;
    border: 2px solid #e43;
    margin: 0 10px 0 0;
    padding: 0 1em;
    position: relative;
    top: -5px;
}

#result .box .data .pay strong {
    font-size: 40px;
    letter-spacing: -1px;
}

#result .box .data .right ul {
    display: flex;
}

#result .box .data .right ul li {
    flex: 1;
    font-size: 14px;
}

#result .box .data .right ul li span {
    display: inline-block;
    font-size: 12px;
    color: #fff;
    background: #333;
    margin: 0 5px 0 0;
    padding: 0 .5em;
    position: relative;
    top: -2px;
}

#result .box .data .right ul li strong {
    font-size: 18px;
}

#result .box .data .right .message {
    font-size: 90%;
    margin: 10px 0 0;
}

#result .box .buy .left h4 {
    color: #25a;
    font-weight: 600;
}


#result .box .buy .left > span {
    display: inline-block;
    color: #25a;
    font-size: 14px;
    border: 1px solid;
    padding: 0 .5em;
    margin: 5px;
    border-radius: 5px;
}

@media screen and (max-width: 800px) {

#result {
    margin: 0 10px;
}

#result .tips {
    text-align: center;
}

#result .tips span {
    display: block;
    color: #fff;
    background: #25a;
    padding: .25em 2em;
}

#result .tips span strong {
    color: #ff5;
    font-size: 24px;
}

#result .box {
    border: 5px solid #25a;
    background: #fff;
    margin: 20px 0;
    padding: 10px;
    border-radius: 20px;
}

#result .box h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    background: #25a;
    margin: 0 0 40px -30px;
    padding: .25em 0 0 90px;
    position: relative;
}

#result .box h3 span {
    display: block;
    width: 64px;
    height: 64px;
    color: #25a;
    font-size: 14px;
    text-align: center;
    font-weight: 800;
    line-height: 1.2;
    background: #fff;
    border: 5px solid #25a;
    padding: 5px 0;
    position: absolute;
    top: -10px;
    left: 20px;
    border-radius: 50%;
}

#result .box h3 span strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
}

#result .box .data {
    overflow: hidden;
}

#result .box .data .photo,
#result .box .data .left {
    width: 100%;
    float: none;
}

#result .box .data .right {
    width: 100%;
    float: none;
}

#result .box .data .pay {
    text-align: center;
    margin: 0;
}

#result .box .data .pay span {
    font-size: 13px;
}

#result .box .data .pay strong {
    font-size: 30px;
    letter-spacing: -1px;
}

#result .box .data .right ul {
    display: flex;
}

#result .box .data .right ul li {
    flex: 1;
    text-align: center;
    font-size: 14px;
    padding: 0 5px;
}

#result .box .data .right ul li span {
    display: block;
    font-size: 12px;
    color: #fff;
    background: #333;
    margin: 0;
    padding: 0 .5em;
    position: relative;
    top: -2px;
}

#result .box .data .right ul li strong {
    font-size: 14px;
}

#result .box .data .right .message {
    font-size: 100%;
    margin: 0;
}

}

/****************************************

    /*

*****************************************/

#corporation {
    background: #eff6fc;
}


#corporation .tips {
    text-align: center;
}

#corporation .tips span {
    color: #fff;
    background: #25a;
    padding: .25em 2em;
}

#corporation ul {
    display: flex;
    flex-flow: wrap;
}

#corporation ul li {
    width: 31.33%;
    border: 5px solid #25a;
    background: #fff;
    margin: 40px 1%;
}

#corporation ul li img {
    display: block;
    width: 260px;
    margin: 20px auto 10px;
}

#corporation ul li p {
    color: #25a;
    font-weight: 600;
    text-align: center;
    line-height: 1.6;
    margin: 10px 20px 20px;
}

@media screen and (max-width: 800px) {

#corporation .tips {
    text-align: center;
    margin: 0 10px;
    padding: 20px 10px;
}

#corporation .tips span {
    display: block;
    color: #fff;
    background: #25a;
    padding: .25em 2em;
}

#corporation ul li {
    width: 90%;
    border: 5px solid #25a;
    background: #fff;
    margin: 20px 5%;
}

#corporation ul li img {
    display: block;
    width: 260px;
    margin: 20px auto 10px;
}

#corporation ul li p {
    color: #25a;
    font-weight: 600;
    text-align: center;
    line-height: 1.6;
    margin: 10px 20px 20px;
}

#corporation .bottom {
    margin: 0 10px;
}

}


/****************************************

    /*

*****************************************/

#area {

}

#area .tips {
    text-align: center;
}

#area .tips br {
    display: none;
}

#area .tips span {
    color: #fff;
    background: #25a;
    padding: .25em 2em;
}

#area .tips span strong {
    color: #ff5;
    font-size: 24px;
}

#area ul {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 40px auto 0;
}

#area ul li {
    flex: 1;
    padding: 20px;
}

#area ul li img {
    display: block;
    margin: 0 auto;
}

#area ul li .other {
    color: #25a;
    font-size: 24px;
    line-height: 1.6;
    font-weight: 800;
    margin: 10px 0 0;
}

@media screen and (max-width: 800px) {

#area {
    margin: 0 10px;
}

#area .tips {
    text-align: center;
}

#area .tips span {
    display: block;
    color: #fff;

    background: #25a;
    padding: .25em 2em;
    line-height: 1.6;
}

#area .tips span strong {
    display: block;
    color: #ff5;
    font-size: 18px;
}

#area ul {
    flex-direction: column;
    width: 100%;
    margin: 20px auto 0;
}

#area ul li {
    flex: 1;
    text-align: center;
}

#area ul li img {
    display: block;
    width: 100%;
    margin: 0 auto 10px;
}

#area ul li .other {
    color: #25a;
    font-size: 24px;
    line-height: 1.6;
    font-weight: 800;
    margin: 10px 0 0;
}


}

/****************************************

    /*

*****************************************/

#voice {
    background: #eff6fc;
}

#voice ul {
    display: flex;
    flex-flow: wrap;
    margin: 40px 0 0;
}

#voice ul li {
    width: 46%;
    background: #fff;
    margin: 20px 2%;
    padding: 30px;
    position: relative;
}

#voice ul li .photo {
    width: 24%;
    position: absolute;
    top: -10px;
    left: -10px;
}

#voice ul li .photo img {
    display: block;
    border-radius: 50%;
}

#voice ul li .data {
    margin: 0 0 0 100px;
}

#voice ul li h3 {
    position: relative;
    color: #fff;
    background: #25a;
    padding: .5em .75em;
    border-radius: 6px;
    margin: -40px -20px 20px 0;
}

#voice ul li h3::after {
    position: absolute;
    top: 100%;
    left: 30px;
    content: '';
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top: 15px solid #25a;
}

#voice ul li .data .flex {
}

#voice ul li .data .flex p {
    display: inline-block;
    margin: 0 10px;
}

#voice ul li .data .flex p.spec span {
    display: inline-block;
    font-size: 11px;
    color: #fff;
    background: #333;
    margin: 0 5px 0 0;
    padding: 0 .5em;
    position: relative;
    top: -2px;
}

#voice ul li .data .flex p.pay {
    color: #e43;
}

#voice ul li .data .flex p.pay span {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    border: 2px solid #e43;
    margin: 0 5px 0 0;
    padding: 0 .5em;
    position: relative;
    top: -2px;
}

#voice ul li .data .flex p.pay strong {
    font-weight: 800;
    letter-spacing: -1px;
}


#voice ul li .message {
    font-size: 90%;
    margin: 10px 0 0;
}

#voice ul li .other {
    color: #e44;
    font-weight: 600;
}

@media screen and (max-width: 800px) {

#voice {
    background: #eff6fc;
}

#voice ul {
    margin: 20px 10px 0;
}

#voice ul li {
    width: 100%;
    background: #fff;
    margin: 20px 2%;
    padding: 30px;
    position: relative;
}

#voice ul li .photo {
    width: 28%;
    position: absolute;
    top: -10px;
    left: -10px;
}

#voice ul li .data {
    margin: 0 0 0 70px;
}

#voice ul li h3 {
    position: relative;
    color: #fff;
    background: #25a;
    padding: .5em .75em;
    border-radius: 6px;
    margin: -40px -20px 20px 0;
}

#voice ul li h3::after {
    position: absolute;
    top: 100%;
    left: 30px;
    content: '';
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top: 15px solid #25a;
}

#voice ul li .data .flex {
}

#voice ul li .data .flex p {
}

#voice ul li .data .flex p.pay {
    flex-grow: 2;
    color: #e43;
}

#voice ul li .data .flex p.spec span {
    display: inline-block;
    font-size: 12px;
    color: #fff;
    background: #333;
    margin: 0 5px 0 0;
    padding: 0 .5em;
    position: relative;
    top: -2px;
}

#voice ul li .data .flex p.pay span {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    border: 2px solid #e43;
    margin: 0 5px 0 0;
    padding: 0 .5em;
    position: relative;
    top: -2px;
}

#voice ul li .data .flex p.pay strong {
    font-weight: 800;
    letter-spacing: -1px;
}


#voice ul li .data {
    margin: 0 0 0 70px;
}






}

/****************************************

    /*

*****************************************/

#flow {

}

#flow ul {
    margin: 40px 0 0;
}

#flow ul li {
    background: #eff6fc;
    margin: 20px 0;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

#flow ul li .left {
    width: 76%;
    float: left;
}

#flow ul li .left h3 {
    color: #25a;
    font-size: 24px;
    font-weight: 600;
}

#flow ul li .left h3 span {
    display: inline-block;
    width: 46px;
    height: 46px;
    color: #fff;
    text-align: center;
    background: #25a;
    margin: 0 10px 0 0;
    border-radius: 50%;
}

#flow ul li .left p {
    margin: 10px;
}

#flow ul li .right {
    width: 20%;
    float: right;
}

@media screen and (max-width: 800px) {


#flow ul {
    margin: 20px 10px 0;
}

#flow ul li {
    background: #eff6fc;
    margin: 20px 0;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

#flow ul li .left {
    width: 100%;
    float: none;
}

#flow ul li .left h3 {
    color: #25a;
    font-size: 18px;
    font-weight: 600;
}

#flow ul li .left h3 span {
    display: inline-block;
    width: 36px;
    height: 36px;
    color: #fff;
    text-align: center;
    background: #25a;
    margin: 0 10px 0 0;
    border-radius: 50%;
}

#flow ul li .left p {
    margin: 10px;
}

#flow ul li .right {
    width: 100%;
    float: none;
}

#flow ul li .right img {
    display: block;
    margin: 0 auto;
}

}

/****************************************

    /*

*****************************************/

#faq {
    background: #eff6fc;
}


#faq dl {
    margin: 20px 0;
}

#faq dl dt {
    background: #fff;
    padding: .5em .5em .5em 3.5em;
    position: relative;
}

#faq dl dt span {
    display: block;
    width: 2.8em;
    height: 2.8em;
    color: #fff;
    text-align: center;
    line-height: 2.8em;
    background: #25a;
    position: absolute;
    top: 0;
    left: 0;
}

#faq dl dd {
    padding: .5em .5em .5em 3.5em;
    position: relative;
}

#faq dl dd span {
    display: block;
    width: 2.8em;
    height: 2.8em;
    color: #fff;
    text-align: center;
    line-height: 2.8em;
    background: #e43;
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (max-width: 800px) {

#faq {
    background: #eff6fc;
}


#faq dl {
    margin: 20px 10px;
}

#faq dl dt {
    background: #fff;
    padding: .5em .5em .5em 3.5em;
    position: relative;
}

#faq dl dt span {
    display: block;
    width: 2.8em;
    height: 2.8em;
    color: #fff;
    text-align: center;
    line-height: 2.8em;
    background: #25a;
    position: absolute;
    top: 0;
    left: 0;
}

#faq dl dd {
    padding: .5em .5em .5em 3.5em;
    position: relative;
}

#faq dl dd span {
    display: block;
    width: 2.8em;
    height: 2.8em;
    color: #fff;
    text-align: center;
    line-height: 2.8em;
    background: #e43;
    position: absolute;
    top: 0;
    left: 0;
}

}

/****************************************

    /*

*****************************************/

footer {
    color: #fff;
    font-size: 11px;
    text-align: center;
    background: #222;
    padding: 2em 0;
}

footer .link {
    font-size: 14px;
    margin: 1em 0;
}

footer .link a {
    display: inline-block;
    color: #fff;
    margin: 0 .5em;
}

@media screen and (max-width: 800px) {

footer {
    padding: 2em 10px 80px;
}

}

/****************************************

    /*

*****************************************/

form {
    font-size: 16px;
    text-align: left;
    margin: 40px auto 0;
}

form .note {
    color: #e44;
    font-size: 12px;
    margin: 0 0 10px;
}

.hope {
    padding: 5px 0;
}

form dl {
    display: table;
    background: #fff;
    margin: 5px auto;
}

form dl dt,
form dl dd {
    display: table-cell;
    vertical-align: middle;
    padding: 10px 20px;
}

form dl dt {
    width: 320px;
    border-right: 3px solid #ddd;
    background: #f6f6f6;
}

form dl dt span {
    display: inline-block;
    color: #fff;
    font-size: 12px;
    margin: 0 10px 0 0;
    padding: 2px 10px;
    border-radius: 3px;
}

form dl dt span.must {
    background: #e44;
}

form dl dt span.any {
    background: #aaa;
}

form dl dd {
    width: 580px;
}

form dl dd dl {
    display: inline-block;
    width: auto;
    border: none;
    margin: 0;
    padding: 0;
}

form dl dd dl dt {
    display: none;
}

form dl dd dl dd {
    width: auto;
    display: inline-block;
    padding: 0;
    margin: 0;
    position: relative;
}

form dl dd dl dd span {
    display: block;
    position: absolute;
    top: 36px;
}

form dl dd span.error {
    display: inline-block;
    color: #e44;
    font-size: 12px;
    margin: 5px 0 0;
}

form input,
form textarea,
form select {
    width: 100%;
    font-family: Meiryo, sans-serif;
    font-size: 16px;
    border: 1px solid #ddd;
    padding: 10px;
    outline: none;
    border-radius: 5px;
}

form input.half,
form textarea.half,
form select.half {
    width: 42%;
}

form textarea {
    height: 200px;
}

form ul.list_view  {
    overflow: hidden;
    border: 1px solid #ddd;
}

form ul.list_view li {
    width: 100%;
    float: left;
    position: relative;
}

form ul.list_view  li:nth-child(odd) {
    border-right: 1px dotted #ddd;
}

form ul.list_view input{
    position: absolute;
    top: -5px;
}

form select {
    min-height: 45px;
    background: url("images/form-select.png") no-repeat right center;
    background-size: 50px 35px;
    padding: 10px;
    cursor: pointer;
}

form input[type="checkbox"] {
    opacity : 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

form input[type="checkbox"] + p {
    display: block;
    min-height: 45px;
    text-decoration: none;
    border-bottom: 1px dotted #ddd;
    padding: 10px;
}

form ul.list_view  li:nth-last-child(1),
form ul.list_view  li:nth-last-child(2) p {
    border-bottom: none;
}

form input[type="checkbox"] + p {
    background: url("images/form-check_off.png") no-repeat right center;
    background-size: 50px 35px;
}

form input[type="checkbox"]:checked + p {
    background: url("images/form-check_on.png") no-repeat right center;
    background-size: 50px 35px;
}

form li:last-child p {
    border-bottom: none;
}

form .submitWrap {
    text-align: center;
    padding: 10px 0 15px;
}

form button {
    display: inline-block;
    width: 320px;
    color: #fff;
    font-family: Meiryo, sans-serif;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    border: none;
    background-color: #2a3;
    padding: 20px;
    position: relative;
    top: 0;
    border-radius: 5px;
    text-shadow: 1px 1px 0 rgba(0,0,0,.2);
    box-shadow: 0 5px 0 #060;
    -webkit-transition-duration:0.3s;
    transition-duration: 0.3s;
    cursor: pointer;
}

form button::after {
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    margin-top: -5px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition-duration:0.3s;
    transition-duration: 0.3s;
}

form button:hover {
    top: 5px;
    box-shadow: 0 0 0 #060;
}

form button:hover::after {
    right: 10px;
}

::-webkit-input-placeholder {
    color:#ccc;
}

:-moz-placeholder {
    color:#ccc;
}

@media screen and (max-width: 800px) {

#form {
    background: #cb4;
    padding: 40px 0;
}

#form .box {
    margin: -60px 0 0;
    padding: 20px;
}

#form .box h2 {
    font-size: 18px;
}

form {
    font-size: 14px;
    margin: 20px auto 0;
}

.hope {
    padding: 5px 0;
}

form dl {
    display: block;
    border: 1px solid #ddd;
    background: #fff;
    margin: -1px auto 0;
}

form dl dt,
form dl dd {
    display: block;
    padding: 5px;
}

form dl dt {
    width: 100%;
    border-right: none;
}

form dl dd {
    width: 100%;
}

form dl dd span.error {
    font-size: 10px;
}

form button {
    width: 90%;
}

}

/* ==========================================================================
   Remodal necessary styles
   ========================================================================== */

.remodal-overlay {
    position: fixed;
    z-index: 9999;
    top: -5000px;
    right: -5000px;
    bottom: -5000px;
    left: -5000px;
    display: none;
}

.remodal-wrapper {
    position: fixed;
    z-index: 10000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow: auto;
    text-align: center;
    -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
    display: inline-block;
    height: 100%;
    margin-left: -0.05em;
    content: "";
}

.remodal-overlay,
.remodal-wrapper {
    -webkit-transform: translateZ(0px);
}

.remodal {
    position: relative;
    display: inline-block;
}

.remodal-bg {
    -webkit-transition: -webkit-filter 0.2s ease-out;
    -moz-transition: -moz-filter 0.2s ease-out;
    -o-transition: -o-filter 0.2s ease-out;
    transition: filter 0.2s ease-out;
}

body.remodal-is-active .remodal-bg {
    -webkit-filter: blur(3px);
    -ms-filter: blur(3px);
    filter: blur(3px);
    -moz-filter: blur(3px);
    -o-filter: blur(3px);
}

.remodal-overlay {
    -webkit-transition: opacity 0.2s ease-out;
    -moz-transition: opacity 0.2s ease-out;
    -o-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
    opacity: 0;
    background: rgba(35,85,170,.8);
}

body.remodal-is-active .remodal-overlay {
    opacity: 1;
}

.remodal {
    width: 96%;
    min-height: 100%;
    padding: 40px;
    -webkit-transition: -webkit-transform 0.2s ease-out, opacity 0.2s ease-out;
    -moz-transition: -moz-transform 0.2s ease-out, opacity 0.2s ease-out;
    -o-transition: -o-transform 0.2s ease-out, opacity 0.2s ease-out;
    transition: transform 0.2s ease-out, opacity 0.2s ease-out;
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -ms-transform: scale(0.95);
    -o-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    color: #333;
    border: 5px solid #25a;
    background: #fff;
    background-clip: padding-box;
}

body.remodal-is-active .remodal {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.remodal,
.remodal-wrapper:after {
    vertical-align: middle;
}

.remodal-close {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 32px;
    height: 32px;
    -webkit-transition: background 0.2s ease-out;
    -moz-transition: background 0.2s ease-out;
    -o-transition: background 0.2s ease-out;
    transition: background 0.2s ease-out;
    text-decoration: none;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.remodal-close:after {
    font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
    font-size: 32px;
    line-height: 32px;
    display: block;
    content: "×";
    cursor: pointer;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    text-decoration: none;
    color: #333;
}

.remodal-close:hover,
.remodal-close:active {
    background: #333;
}

.remodal-close:hover.remodal-close:after,
.remodal-close:active.remodal-close:after {
    color: #fff;
}

.remodal-confirm,
.remodal-cancel {
    font-size: 10pt;
    display: inline-block;
    width: 120px;
    margin: 0 0 5px 0;
    padding: 9px 0;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    text-align: center;
    text-decoration: none;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    background-clip: padding-box;
}

.remodal-confirm {
    color: #16a085;
    border: 2px solid #16a085;
    background: #f4f4f4;
}

.remodal-confirm:hover,
.remodal-confirm:active {
    color: #f4f4f4;
    background: #16a085;
}

.remodal-cancel {
    color: #c0392b;
    border: 2px solid #c0392b;
    background: #f4f4f4;
}

.remodal-cancel:hover,
.remodal-cancel:active {
    color: #f4f4f4;
    background: #c0392b;
}

@media only screen and (min-width: 40.063em) {

.remodal {
    max-width: 800px;
    min-height: 0;
    margin: 20px auto;
}

}

@media screen and (max-width: 640px) {

.remodal {
    min-height: 0;
    padding: 40px 20px;
    margin: 10px auto;
}

}

/****************************************

    /* fixNavi

*****************************************/

#fixNavi {
    display: none;
}

@media screen and (max-width: 800px) {

#fixNavi {
    display: block;
    width: 100%;
    background: rgba(0,0,0,.8);
    padding: 5px;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 9999:
}

#fixNavi ul {
    display: flex;
}

#fixNavi ul li {
    flex: 1;
    padding: 5px;
}

#fixNavi ul li a {
    text-align: center;
    font-size: 14px !impoetant;
    padding: 5px 10px !important;
    box-shadow: none;
}

#fixNavi ul li a i {
    display: none;
}


.telBtn {
    position: relative;
}

.telBtn a {
    display: block;
    width: 100%;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: 2px solid #fa0;
    background-color: #2a3;
    background: linear-gradient(#f80, #e60);
    margin: 0 auto;
    padding: 10px;
    position: relative;
    top: 0;
    border-radius: 5px;
    box-shadow: 0 10px 0 #071;
    text-shadow: 5px 5px 5px rgba(0,0,0,.25);
}

.telBtn a:hover {
    top: 10px;
    box-shadow: none;
}

.ctaBtn {
    display: block;
    position: relative;
}

.ctaBtn a {
    display: block;
    width: 100%;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    text-decoration: none;
    letter-spacing: .05em;
    border: 2px solid #3b4;
    background-color: #2a3;
    background: linear-gradient(#00B900, #080);
    margin: 0 auto;
    padding: 10px;
    position: relative;
    top: 0;
    border-radius: 5px;
    box-shadow: 0 10px 0 #c50;
    text-shadow: 5px 5px 5px rgba(0,0,0,.15);
}

.ctaBtn a span {
    font-size: 10px;
}

.ctaBtn a:hover {
    top: 10px;
    box-shadow: none;
}

}


/****************************************

    /*

*****************************************/

.backLink {
    display: block;
}

.backLink {
    display: block;
    width: 320px;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    background: #888;
    margin: 20px auto;
    padding: .5em;
    position: relative;
    top: 0;
    border-radius: 10px;
    box-shadow: 0 8px 0 #666;
    text-shadow: 2px 2px 1px #666;
}

.backLink:hover {
    letter-spacing: 1px;
    background: #888;
    top: 7px;
    box-shadow: 0 1px 0 #666;
}

@media screen and (max-width: 800px) {

.backLink {
    display: block;
    font-size: 16px;
}

.backLink {
    width: 60%;
}

}

/****************************************

    /*

*****************************************/

#company {
    text-align: center;
}

#company p {
    margin: 1em 0;
}

/****************************************

    /*

*****************************************/

#privacy {
}

#privacy h3 {
    color: #25a;
    font-weight: 600;
    border-bottom: 1px dashed #ddd;
    margin: 1em 0;
}

#privacy p {
    margin: 1em 0;
}

@media screen and (max-width: 800px) {

#privacy {
    margin: 0 20px;
}

}

/****************************************

    /*

*****************************************/

#thanks {
    text-align: center;
    padding: 40px 0;
}

#thanks p {
    margin: 1em 0;
}

#thanks p img {
    display: block;
    width: 240px;
    margin: 1em auto -2em;
}

@media screen and (max-width: 800px) {

#thanks {
    text-align: left;
    padding: 20px;
}

#thanks p img {
    width: 180px;
}

}
