@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: 16px;
    color: #333;
    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: normal;
}

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: 1200px;
    margin: 0 auto;
    position: relative;
}

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

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

.wrap {
    width: 100%;
}

}

/* ■ Flexbox
----------------------------- */

.flex {
    display: flex;
    margin: 0 auto;
}

.flex li {
    flex: 1;
    margin: 0 auto;
}

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

.flex {
    flex-direction: column;
}

}

/* ■ scrollTop
----------------------------- */

#scrollTop {
    position: fixed;
    bottom: 10px;
    right: 10px;
}

#scrollTop a {
    display: block;
    width: 40px;
    height: 40px;
    color: #fff;
    text-decoration: none;
    background: rgba(0,0,0,.50);
    position: relative;
    border-radius: 20px;
}

#scrollTop a::after {
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    margin-top: -3px;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: rotate(-45deg);
    transition-duration: .3s;
}

#scrollTop a:hover {
    text-decoration: none;
    background: rgba(0,0,0,.75);
}

#scrollTop a:hover::after {
    margin-top: -8px;
    transition-duration: .3s;
}


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

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

header {
    background: url(images/header-bg.jpg) center bottom;
    border-top: 10px solid #25b;
    background-size: cover;
    position: relative;
}

header .arrow {
    position: absolute;
    top: 96%;
    left: 50%;
    margin: 0 0 0 -50px;
}

header .sp {
    display: none;
}

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

header {
    background: none;
    border-top: none;
    position: relative;
}

header .arrow {
    display: none;
}

header .pc {
    display: none;
}

header .sp {
    display: block;
}

}

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

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

section,
footer {
    padding: 60px 0;
}

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

section,
footer {
    padding: 40px 6%;
}

}

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

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

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

h2 span {
    color: #25b;
    font-size: 18px;
}

h2 span.callout {
    display: inline-block;
    color: #fff;
    background: #25b;
    padding: .25em 1em;
    position: relative;
    margin: 0 0 20px;
}

h2 span.callout::after {
  position: absolute;
  top: 100%;
  left: 50%;
  content: '';
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top: 10px solid #25b;
  margin: 0 0 0 -10px;
}

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

h2 {
    font-size: 20px;
}

h2 span {
    font-size: 16px;
}

}

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

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

.cta {
    background: url(images/cta-bg.png);
    background-size: cover;
    padding: 90px 0;
}

.cta .box {
    border: 5px solid #25b;
    background: #fff;
    padding: 60px;
}

.cta .box h2 {
    color: #25b;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.cta .box h3 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
}

.cta .box h3::before {
    content: "“";
    color: #b7bcc7;
    margin: 0 .25em 0 0;
}

.cta .box h3::after {
    content: "”";
    color: #b7bcc7;
    margin: 0 0 0 .25em;
}

.cta .site {
    width: 90%;
    text-align: center;
    border-top: 2px dashed #aaa;
    border-bottom: 2px dashed #aaa;
    margin: 20px auto;
    padding: 20px;
}

.cta .site p {
    font-size: 16px;
    font-weight: 600;
}

.cta .site img {
    width: 720px;
    margin: 10px 0 0;
}

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

.cta .box .flex .flexBox {
    flex: 1;
    margin: 0 auto;
}

.cta .box .flex .left {
    border-right: 1px solid #eee;
    padding: 20px 60px;
}

.cta .box .flex .left h4 {
    color: #25b;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px;
}

.cta .box .flex .left ul li {
    font-size: 14px;
    font-weight: 600;
    background: #e8eef8;
    margin: 5px 0 0;
    padding: 5px 10px;
}

.cta .box .flex .left ul li::before {
    font-family: FontAwesome;
    content: "\f00c";
    color: #25b;
    font-size: 12px;
    font-weight: normal;
    margin: 0 1em 0 0;
    position: relative;
    top: -2px;
}

.cta .box .flex .right {
    padding: 20px 80px;
}

.cta .box .flex .right .tel {
    font-size: 40px;
    line-height: 1.5;
}

.cta .box .flex .right .tel span {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    background: #25b;
    line-height: 1;
    margin: 0 10px 0 0;
    padding: .4em 1em;
    border-radius: 5px;
    position: relative;
    top: -7px;
}

.cta .box .flex .right .tel strong {
    color: #25b;
    letter-spacing: 1px;
}

.cta .box .flex .right .tel p {
    font-size: 16px;
}

.cta .box .flex .right .telBtn {
    display: none;
}

.cta .box .flex .right .mail {
    margin: 20px auto 0;
}

.cta .box .flex .right .mail a {
    display: block;
    color: #fff;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    background: #081;
    padding: 1em 0;
    position: relative;
}

.cta .box .flex .right .mail a::after {
    display: block;
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    margin-top: -5px;
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.cta .box .flex .right .mail a:hover {
    background: #1a3;
}

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

.cta {
    background: url(images/cta-bg.png);
    background-size: cover;
    padding: 40px 4%;
}

.cta .box {
    padding: 40px 20px;
}

.cta .box h2 {
    font-size: 14px;
    margin: 0 0 10px;
}

.cta .box h3 {
    font-size: 16px;
}

.cta .site {
    width: 100%;
    padding: 20px 0;
}

.cta .site p {
    font-size: 14px;
}

.cta .site img {
    width: 100%;
}

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

.cta .box .flex .flexBox {
    flex: 1;
    margin: 0 auto;
}

.cta .box .flex .left {
    border-right: none;
    padding: 0;
}

.cta .box .flex .left h4 {
    color: #25b;
    font-size: 14px;
    text-align: center;
}

.cta .box .flex .left ul li {
    font-size: 14px;
    font-weight: 600;
    background: #e8eef8;
    margin: 5px 0 0;
    padding: 5px 10px;
}

.cta .box .flex .right {
    width: 100%;
    padding: 20px 0 0;
}

.cta .box .flex .right .tel {
    display: none;
}

.cta .box .flex .right .telBtn {
    display: block;
}

.cta .box .flex .right .telBtn a {
    display: block;
    color: #fff;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    background: #e61;
    padding: 1em 0;
    position: relative;
}

.cta .box .flex .right .telBtn a::after {
    display: block;
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    margin-top: -3px;
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.cta .box .flex .right .telBtn a:hover {
    background: #f72;
}

.cta .box .flex .right .mail {
    margin: 10px auto 0;
}

.cta .box .flex .right .mail a {
    font-size: 14px;
}

.cta .box .flex .right .mail a::after {
    display: block;
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    margin-top: -3px;
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

}

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

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

.fixCta {
    display: none;
}

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

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

.fixCta ul {
    display: flex;
}

.fixCta ul li {
    flex: 1;
    padding: 4px;
}

.fixCta ul li a {
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    background: #e61;
    padding: .5em 0;
    position: relative;
    border-radius: 3px;
}

.fixCta ul li a::after {
    display: block;
    content: "";
    width: 5px;
    height: 5px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    margin-top: -3px;
    position: absolute;
    top: 50%;
    right: 8px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.fixCta ul li:nth-child(1) a {
    background: #e61;
}

.fixCta ul li:nth-child(2) a {
    background: #081;
}

}

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

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

#review {
    border-top: 10px solid #25b;
    background: url(images/review-bg.jpg) no-repeat center top;
    background-size: cover;
    margin: 0 0 -20px;
}

#review .box {
    margin: 40px auto;
    position: relative;
}

#review .box .text {
    width: 1000px;
    border: 12px solid #ececec;
    background: #fff;
    margin: 0 0 0 40px;
    padding: 60px;
}

#review .box .case {
    color: #25b;
    font-size: 12px;
    font-weight: 600;
}

#review .box h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 1em;
}

#review .box .text .img01 {
    width: 420px;
    border: 5px solid #fff;
    position: absolute;
    top: 50px;
    right: 40px;
    box-shadow: 5px 5px 5px rgba(0,0,0,.25);
}

#review .box .text .img02 {
    width: 180px;
    border: 5px solid #fff;
    position: absolute;
    top: 290px;
    right: 50px;
    box-shadow: 5px 5px 5px rgba(0,0,0,.25);
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
}

#review .box h3::before {
    content: "“";
    color: #b7bcc7;
    margin: 0 .25em 0 0;
}

#review .box h3::after {
    content: "”";
    color: #b7bcc7;
    margin: 0 0 0 .25em;
}

#review .box table {
    width: 520px;
}

#review .box table th,
#review .box table td {
    text-align: center;
    border-bottom: 3px solid #fff;
    padding: 5px;
}

#review .box table th {
    color: #25b;
    font-weight: 600;
    background: #e8eef8;
    border-right: 4px solid #fff;
}

#review .box table th.label {
    color: #fff;
    background: #25b;
}

#review .box table td {
    color: #666;
    background: #eee;
}

#review .box table td.label {
    color: #fff;
    background: #333;
}

#review .box .difference {
    width: 520px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    background: #f40;
    margin: 1px 0 30px;
    position: relative;
}

#review .box .difference span {
    display: inline-block;
    color: #f40;
    font-size: 12px;
    line-height: 1;
    background: #fff;
    margin: 0 1em 0 0;
    padding: 3px .5em;
    position: relative;
    top: -4px;
    border-radius: 3px;
}

#review .box .difference strong {
    font-size: 24px;
}

#review .box .voice {
    width: 820px;
}

#review .box .voice strong {
    color: #25b;
}

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

#review {
    border-top: 5px solid #25b;
    margin: 0;
}

#review .box {
    margin: 30px auto;
}

#review .box .text {
    width: 100%;
    border: 8px solid #ececec;
    background: #fff;
    margin: 0;
    padding: 20px;
}

#review .box h3 {
    font-size: 16px;
}

#review .box .text .img01 {
    width: 100%;
    position: relative;
    top: auto;
    right: auto;
}

#review .box .text .img02 {
    display: none;
}

#review .box table {
    width: 100%;
    margin: 20px 0 0;
}

#review .box table th,
#review .box table td {
    font-size: 11px;
}

#review .box table th {
    color: #25b;
    font-weight: 600;
    background: #e8eef8;
    border-right: 4px solid #fff;
}

#review .box table span {
    display: block;
    font-size: 14px;
}

#review .box .difference {
    width: 100%;
    padding: 10px;
}

#review .box .difference span {
    display: block;
    color: #f40;
    font-size: 12px;
    line-height: 1;
    background: #fff;
    margin: 0 auto 10px;
    padding: 5px .5em;
    position: relative;
    top: auto;
    border-radius: auto;
}

#review .box .difference strong {
    font-size: 16px;
}

#review .box .voice {
    width: 100%;
}

#review .box .voice strong {
    color: #25b;
}


}

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

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

#usp {
    background: #e2e2e2;
    background-image: radial-gradient(#f2f2f2 20%, transparent 0), radial-gradient(#f2f2f2 20%, transparent 0);
    background-position: 0 0, 20px 20px;
    background-size: 10px 10px;
    position: relative;
}

#usp::after {
  position: absolute;
  top: 0;
  left: 50%;
  content: '';
  width: 0;
  height: 0;
  border: 100px solid transparent;
  border-top: 40px solid #fbfffe;
  margin: 0 0 0 -100px;
}

#usp ul {
    display: flex;
    margin: 40px auto -20px;
    padding: 0;
}

#usp ul li {
    flex: 1;
    background: #fff;
    margin: 20px;
    padding: 50px;
    position: relative;
}

#usp ul li::before {
    color: #25b;
    font-size: 32px;
    font-weight: 600;
    position: absolute;
    top: -1em;
    left: .5em;
}

#usp ul li:nth-child(1)::before {
    content: "#01";
}

#usp ul li:nth-child(2)::before {
    content: "#02";
}

#usp ul li:nth-child(3)::before {
    content: "#03";
}

#usp ul li img {
    display: block;
    width: 100px;
    margin: 0 auto 20px;
}

#usp ul li dt {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    line-height: 1.6;
}

#usp ul li dt strong {
    font-size: 24px;
}

#usp ul li dt strong::before {
    content: "“";
    color: #b7bcc7;
    margin: 0 .25em 0 0;
}

#usp ul li dt strong::after {
    content: "”";
    color: #b7bcc7;
    margin: 0 0 0 .25em;
}

#usp ul li dd {
    font-size: 14px;
    margin: 20px 0 0;
}

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

#usp::after {
  position: absolute;
  top: 0;
  left: 50%;
  content: '';
  width: 0;
  height: 0;
  border: 60px solid transparent;
  border-top: 20px solid #fbfffe;
  margin: 0 0 0 -60px;
}

#usp ul {
    flex-direction: column;
}

#usp ul li {
    width: 100%;
    margin: 20px 0;
    padding: 20px;
}

#usp ul li::before {
    font-size: 32px;
}

#usp ul li dt {
    font-size: 16px;
}

#usp ul li dt strong {
    font-size: 16px;
}

}

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

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

#reason {
    background-image: linear-gradient( transparent 95%, rgba(0, 0, 0, .03) 5%),
                      linear-gradient( 90deg, transparent 95%, rgba(0, 0, 0, .03) 5%);
    background-size: 10px 10px;
}

#reason h2 strong::before {
    content: "“";
    color: #b7bcc7;
    margin: 0 .25em;
}

#reason h2 strong::after {
    content: "”";
    color: #b7bcc7;
    margin: 0 .25em;
}

#reason .description {
    text-align: center;
    margin: 20px 0;
}

#reason ul {
    display: flex;
    margin: 40px auto 20px;
    padding: 0;
}

#reason ul li {
    flex: 1;
    margin: 0 20px;
    padding: 0;
}

#reason ul li h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding: .5em 0;
}

#reason ul li:first-child h3 {
    background: #25b;
}

#reason ul li:last-child h3 {
    background: #333;
}

#reason ul li img {
    display: block;
    width: 420px;
    margin: 0 auto;
}

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

#reason .description {
    text-align: left;
    margin: 20px 0 0;
}

#reason ul {
    flex-direction: column;
    margin: 20px auto;
}

#reason ul li {
    margin: 20px 0;
}

#reason ul li h3 {
    font-size: 16px;
    padding: .25em 0;
}

#reason ul li:first-child h3 {
    background: #25b;
}

#reason ul li:last-child h3 {
    background: #333;
}

#reason ul li img {
    display: block;
    width: 420px;
    margin: 0 auto;
}

}

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

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

#compare {
    border-top: 1px solid #f6f6f6;
    background: #fff;
}

#compare h3 {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin: 0 0 40px;
    position: relative;
}

#compare h3 span {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin: 0 2.5em;
    padding: 0 1em;
    background-color: #fff;
    text-align: left;
}

#compare h3::before {
    position: absolute;
    top: 50%;
    z-index: 1;
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #333;
}

#compare .box {
    border: 12px solid #ececec;
    background: #fff;
    margin: 40px 0 0;
    padding: 60px;
    position: relative;
}

#compare .box .badge {
    width: 140px;
    height: 140px;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    background: #25b;
    padding: 30px 0 0;
    position: absolute;
    top: -20px;
    left: -20px;
    border-radius: 50%;
    z-index: 100;
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
}

#compare .box .badge p {
    font-size: 40px;
}

#compare table {
    width: 100%;
}

#compare table td {
    text-align: center;
    line-height: 1.6;
    border: 3px solid #fff;
    padding: 20px 10px;
}

.cell01 {
    color: #fff;
    background: #333;
}

.cell02 {
    color: #fff;
    background: #666;
}

.cell03 {
    color: #fff;
    background: #25b;
}

.cell04 {
    font-weight: 600;
    outline: 2px solid #333;
    outline-offset: -4px;
    padding: 10px !important;
}

.cell05 {
    font-size: 24px;
    font-weight: bold;
    background: #d6d6d6;
}

.cell06 {
    font-size: 24px;
    font-weight: bold;
    background: #e6e6e6;
}

.cell07 {
    color: #25b;
    font-size: 24px;
    font-weight: bold;
    background: #e8eef8;
}

.cell05 p,
.cell06 p,
.cell07 p {
    font-size: 14px;
}

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

#compare {
    border-top: 1px solid #f6f6f6;
    background: #fff;
}

#compare h3 {
    font-size: 16px;
    margin: 20px 0;
}

#compare h3 span {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin: 0;
    padding: 0;
    background-color: #fff;
    text-align: left;
}

#compare h3::before {
    display: none;
}

#compare .box {
    border: none;
    background: #fff;
    margin: 60px 0 0;
    padding: 20px 0;
    position: relative;
}

#compare .box .badge {
    width: 80px;
    height: 80px;
    font-size: 14px;
    padding: 20px 0 0;
    top: -40px;
    left: -10px;
}

#compare .box .badge p {
    font-size: 20px;
}

#compare table {
    width: 100%;
    margin: 0 0 -50px;
}

#compare table td {
    font-size: 10px;
    padding: 10px;
}

.cell05 {
    font-size: 10px;
    font-weight: bold;
    background: #d6d6d6;
}

.cell06 {
    font-size: 10px;
    font-weight: bold;
    background: #e6e6e6;
}

.cell07 {
    color: #25b;
    font-size: 24px;
    font-weight: bold;
    background: #e8eef8;
}

.cell05 p,
.cell06 p,
.cell07 p {
    font-size: 10px;
}

}

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

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

#support {
    margin: 0 0 -20px;
    padding: 20px 0 0;
}

#support img {
    display: block;
    width: 900px;
    margin: 0 auto;
}

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

#support {
    margin: 0 0 -4%;
    padding: 20px 6% 0;
}

#support img {
    display: block;
    width: 900px;
    margin: 0 auto;
}

}

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

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

#greet ul {
    display: flex;
    margin: 20px auto 0;
}

#greet ul li {
    flex: 1;
    margin: 20px auto -60px;
}

#greet ul li:last-child {
    flex-grow: 0.5;
    padding: 0 40px;
}

#greet h2 {
    margin: 0 0 20px;
}

#greet ul li .text {
    line-height: 2.2;
}

#greet ul li .sign {
    text-align: right;
    margin: 20px 0 0;
}

#greet ul li .sign img {
    width: 120px;
    margin: 0 0 0 10px;
}

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

#greet {
    padding: 40px 4% 0;
}

#greet ul {
    flex-direction: column;
    margin: 0 auto;
}

#greet ul li {
    flex: 1;
    margin: 20px 0;
}

#greet ul li:last-child {
    flex-grow: 1;
    margin: 20px 0 0;
    padding: 0;
}

#greet ul li:last-child img {
    display: block;
    width: 160px;
    margin: 0 auto;
}

#greet h2 {
    margin: 0 0 20px;
}

#greet ul li .text {
    line-height: 2.2;
}

#greet ul li .sign {
    text-align: right;
    margin: 20px 0 0;
}

#greet ul li .sign img {
    width: 80px;
    margin: 0 0 0 10px;
}

}

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

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

#faq {
    background: url(images/faq-bg.png);
}

#faq dl.accordion {
    width: 1000px;
    margin: 40px auto 0;
}

#faq dl.accordion dt {
    margin: 20px 0 0;
    padding: 30px 80px;
    background: #fff;
    position: relative;
    cursor: pointer;
    box-shadow: 1px 1px 0 rgba(0,0,0,.1);
}

#faq dl.accordion dt::after {
    display: block;
    content: "";
    width: 10px;
    height: 10px;
    border-bottom: 3px solid #25b;
    border-right: 3px solid #25b;
    margin-top: -10px;
    position: absolute;
    top: 50%;
    right: 40px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition-duration: 0.3s;
}

#faq dl.accordion dt::before {
    content: "Ｑ";
    display: inline-block;
    color: #25b;
    font-size: 24px;
    text-align: center;
    font-weight: bold;
    position: absolute;
    top: 20px;
    left: 40px;
}

#faq dl.accordion dt.open::after {
    margin-top: -5px;
    border-bottom: 3px solid #25b;
    border-right: 3px solid #25b;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    transition-duration: 0.3s;
}

#faq dl.accordion dd {
    display: none;
    color: #fff;
    background: #25b;
    padding: 30px 80px;
    position: relative;
}

#faq dl.accordion dd::before {
    content: "Ａ";
    display: inline-block;
    color: #fff;
    font-size: 24px;
    text-align: center;
    font-weight: bold;
    position: absolute;
    top: 20px;
    left: 40px;
}

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

#faq {
    background: url(images/faq-bg.png);
}

#faq dl.accordion {
    width: 100%;
    margin: 20px auto 0;
}

#faq dl.accordion dt {
    margin: 10px 0 0;
    padding: 20px 40px;
}

#faq dl.accordion dt::after {
    width: 6px;
    height: 6px;
    border-bottom: 2px solid #25b;
    border-right: 2px solid #25b;
    margin-top: -3px;
    right: 10px;
}

#faq dl.accordion dt::before {
    content: "Ｑ";
    display: inline-block;
    color: #25b;
    font-size: 16px;
    text-align: center;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 10px;
    margin: -1em 0 0;
}

#faq dl.accordion dt.open::after {
    margin-top: -5px;
    border-bottom: 3px solid #25b;
    border-right: 3px solid #25b;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    transition-duration: 0.3s;
}

#faq dl.accordion dd {
    display: none;
    color: #fff;
    background: #25b;
    padding: 20px 40px;
    position: relative;
}

#faq dl.accordion dd::before {
    content: "Ａ";
    display: inline-block;
    color: #fff;
    font-size: 16px;
    text-align: center;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 10px;
    margin: -1em 0 0;
}

}

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

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

#form {
    background: #eee;
}

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

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

footer ul {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 860px;
    margin: 0 auto;
}

footer ul li {
    flex: 1;
}

footer ul li:last-child {
    flex-grow: 2;
}

footer ul li h2 {
    line-height: 1;
}

footer ul li h3 {
    font-weight: 600;
    margin: 0 0 10px;
}

#copyright {
    color: #fff;
    font-size: 12px;
    text-align: center;
    background: #25b;
    padding: 1em 0;
}

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

footer ul {
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
}


footer ul li:last-child {
    margin: 20px 0 0;
}

footer ul li h3 {
    text-align: center;
}

#copyright {
    font-size: 10px;
    padding: 1em 0 70px;
}

}

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

.disnon {
    display: none;
}

.content_wrap {
    clear: left;
    width: 920px;
}

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

.content_wrap {
    width: 100%;
}

}


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

    /* メールフォーム

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

.formBox {
    text-align: left;
}

.formBox h3 {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

#tab {
    -js-display: flex;
    display: flex;
    width: 820px;
    margin: 30px auto -5px;
    position: relative;
}

#tab::after {
    display: block;
    content: "";
    width: 820px;
    height: 5px;
    background: #25b;
    position: absolute;
    top: 100%;
    margin: -5px 0 0;
}

#tab li {
    flex: 1;
    text-align: center;
    background: #ddd;
    margin: 0 10px 0 0;
    padding: 20px 10px;
    cursor: pointer;
    border-radius: 5px;
}

#tab li.select {
    color: #fff;
    background: #25b;
}

#tab li:hover {
    background: #ccc;
}

#tab li.select:hover {
    color: #fff;
    background: #25b;
}

.formBox .tips {
    border-bottom: 5px solid #25b;
    margin: 0 -10px 40px;
    padding: 20px;
}

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

.formBox {
    text-align: left;
}

.formBox h3 {
    font-size: 14px;
    margin: 10px 0 0;
}

#tab {
    width: 100%;
    margin: 30px auto -5px;
}

#tab::after {
    display: block;
    content: "";
    width: 100%;
    height: 5px;
    background: #25b;
    position: absolute;
    top: 100%;
    margin: -5px 0 0;
}

#tab li {
    flex: 1;
    font-size: 12px;
    text-align: center;
    background: #ddd;
    margin: 0 10px 0 0;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}

#tab li.select {
    color: #fff;
    background: #25b;
}

#tab li:hover {
    background: #ccc;
}

#tab li.select:hover {
    color: #fff;
    background: #25b;
}

.formBox .tips {
    border-bottom: 5px solid #25b;
    margin: 0 -10px 40px;
    padding: 20px;
}

}


form {
    width: 800px;
    margin: 1px auto 0;
}

form dl {
    display: table;
    width: 800px;
    border: 1px solid #ddd;
    margin: -1px 0 0;
}

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

form dl dt {
    width: 240px;
    border-right: 1px 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: 560px;
}

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

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

form {
    width: 100%;
}

form dl {
    display: block;
    width: 100%;
}

form dl dt,
form dl dd {
    display: block;
}

form dl dt {
    width: 100%;
    margin: 0 0 5px;
}

form dl dd {
    width: 100%;
}

}

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

form textarea {
    height: 200px;
}

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

form ul.list_view  li {
    position: relative;
}

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="radio"],
form input[type="checkbox"] {
    opacity : 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

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

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

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

form input[type="radio"]:checked + p {
    background: url("images/form-radio_on.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 input[type="radio"]:hover + p,
form input[type="checkbox"]:hover + p {
    background-color: #f6f6f6;
}

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

form input.button {
    border: 1px solid #ccc;
    border-left: none;
    background-color: #ddd;
    background: -webkit-gradient(linear, center top, center bottom, from(#fff), to(#ccc));
    background: linear-gradient(to bottom, #fff, #ccc);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ffffff', endColorstr='#cccccc');
    text-shadow: 1px 1px 0 #fff;
    cursor: pointer;
}

form input.button:hover {
    background-color: #bbb;
    background: -webkit-gradient(linear, center top, center bottom, from(#fff), to(#bbb));
    background: linear-gradient(to bottom, #fff, #bbb);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ffffff', endColorstr='#bbbbbb');
}

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;
    background: -webkit-gradient(linear, center top, center bottom, from(#0a0), to(#080));
    background: linear-gradient(to bottom, #0a0, #080);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#00aa00', endColorstr='#008800');
    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;
}

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

form button {
    width: 90%;
}

}

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

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

html.remodal-is-locked {
    overflow: hidden;
}

.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(0,0,0,.9);
}

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

.remodal {
    width: 100%;
    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 #25b;
    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 queries
   ========================================================================== */

@media only screen and (min-width: 40.063em) /* min-width 641px */ {
    .remodal {
        max-width: 1000px;
        min-height: 0;
        margin: 20px auto;
    }
}

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

.remodal {
    padding: 40px 20px;
}

}


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

    /*

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

#privacy {
    height: 240px;
    border: 1px solid #ddd;
    overflow-y: scroll;
    margin: 20px 0 0;
    padding: 20px;
}

#privacy h2 {
    font-size: 18px;
    margin: 20px 0;
}

#privacy h3 {
    font-size: 16px;
    text-align: left;
    margin: 20px 0;
}

#privacy p {
    font-size: 14px;
    margin: 20px 0;
}

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

#privacy h2 {
    font-size: 16px;
    margin: 20px 0;
}

#privacy h3 {
    font-size: 14px;
    text-align: left;
    margin: 20px 0;
}

#privacy p {
    font-size: 12px;
    margin: 20px 0;
}

}

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

    /* サンクスページ

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

.topBar {
    color: #fff;
    font-size: 12px;
    background: #25b;
}

.thxHeader {
    overflow: hidden;
    padding: 20px 0;
}

.thxHeader .logo {
    width: 280px;
    float: left;
}

.thxHeader .tel {
    font-size: 12px;
    float: right;
}

.thxHeader .tel strong {
    display: block;
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
}

.thxHeader .tel strong:before {
    font-family: FontAwesome;
    content: "\f098";
    color: #25b;
    font-weight: 400;
    margin: 0 .25em 0 0;
}

.thxMain {
    text-align: center;
    padding: 60px 0;
}

.thxMain img {
    width: 160px;
    margin: 0 0 20px;
}

.thxMain h2 {
    font-size: 30px;
    font-weight: 600;
}

.thxTel {
    text-align: center;
    background: #f6f6f6;
    background-image: radial-gradient(#fff 20%, transparent 0), radial-gradient(#fff 20%, transparent 0);
    background-position: 0 0, 10px 10px;
    background-size: 10px 10px;
    padding: 60px 0;
}

.thxTel h2 {
    font-size: 20px;
    margin: 0 0 20px;
}

.thxTel .box strong {
    display: block;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.4;
}

.thxTel .box strong:before {
    font-family: FontAwesome;
    content: "\f098";
    color: #25b;
    font-weight: 400;
    margin: 0 .25em 0 0;
}

.thxTel a {
    display: block;
    width: 320px;
    color: #fff;
    text-decoration: none;
    background: #25b;
    margin: 20px auto 0;
    padding: 20px 0;
    border-radius: 10px;
}

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

.topBar {
    font-size: 11px;
    padding: 10px;
}

.thxHeader {
    padding: 20px;
}

.thxHeader .logo {
    width: 100%;
    text-align: center;
    float: none;
}

.thxHeader .logo img {
    width: 200px;
}

.thxHeader .tel {
    display: none;
}

.thxMain {
    padding: 30px 20px;
}

.thxMain img {
    width: 120px;
    margin: 0 0 20px;
}

.thxMain h2 {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 10px;
}

.thxTel {
    padding: 30px 20px;
}

.thxTel h2 {
    font-size: 16px;
    margin: 0 0 20px;
}

.thxTel .box strong {
    font-size: 20px;
}

.thxTel a {
    width: 80%;
}

}








