@charset "UTF-8";
/* ---------------------------------------------
browser initialization
--------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-size: 100%;
  vertical-align: baseline;
}

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

blockquote, q {
  quotes: none;
}

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

input, textarea {
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

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

caption, th {
  text-align: left;
}

a:focus {
  outline: none;
}

/* ---------------------------------------------
common format
--------------------------------------------- */
html {
  font-size: 11px;
}

@media screen and (min-width: 375px) {
  html {
    font-size: 14px;
  }
}

@media screen and (min-width: 414px) {
  html {
    font-size: 15px;
  }
}

@media screen and (min-width: 568px) {
  html {
    font-size: 21px;
  }
}

@media screen and (min-width: 667px) {
  html {
    font-size: 24px;
  }
}

@media screen and (min-width: 736px) {
  html {
    font-size: 27px;
  }
}

@media screen and (min-width: 750px) {
  html {
    font-size: 28px;
  }
}

body {
  margin: 0 auto;
  max-width: 750px;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  -webkit-text-size-adjust: 100%;
}

a {
  color: #d20a00;
}

a:hover {
  text-decoration: none;
}

img {
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  display: block;
}

input[type="submit"], button {
  -webkit-appearance: none;
}

/* ---------------------------------------------
site common class
--------------------------------------------- */
.clearfix::after {
  content: '';
  display: table;
  clear: both;
}

/* ---------------------------------------------
keyframes
--------------------------------------------- */
@keyframes Flash {
  25% {
    opacity: 0;
  }
}

/* ---------------------------------------------
header format
--------------------------------------------- */
#site_header #header_intro {
  border-top: #ffd712 solid 3px;
  border-bottom: #ffd712 solid 3px;
  padding: 10px 0;
}

#site_header #header_intro h2 {
  font-size: 1.14rem;
  line-height: 1.2;
  text-align: center;
  color: #17993c;
}

#site_header #header_intro P {
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  color: #b28146;
}

#site_header ul {
  background-color: #17993c;
  padding: 10px 7.5px;
  display: flex;
}

#site_header ul li {
  padding: 0 2.5px;
  width: 25%;
  box-sizing: border-box;
}

#site_header.default {
  background-color: #f9f7e8;
  border-bottom: #efefe4 solid 5px;
  padding: 10px;
}

#site_header.default h1 {
  margin: 0 auto;
  width: 80%;
}

#site_header.default h1 a {
  display: block;
}

/* ---------------------------------------------
global navi format
--------------------------------------------- */
#page_navi {
  margin: 0 auto;
  max-width: 750px;
  position: fixed;
  top: 10px;
  right: 0;
  left: 0;
  z-index: 20;
}

#page_navi > a {
  background-color: rgba(255, 255, 255, 0.9);
  border: #17993c solid 1px;
  border-radius: 8px;
  padding-bottom: 10.66%;
  width: 10.66667%;
  height: 0;
  font-size: 0.64rem;
  font-weight: bold;
  line-height: 1.1;
  text-decoration: none;
  text-align: center;
  color: #17993c;
  position: absolute;
  top: 0;
  right: 10px;
  z-index: 30;
  display: block;
  box-sizing: border-box;
}

#page_navi > a::before, #page_navi > a::after, #page_navi > a span::before {
  content: '';
  background-color: #17993c;
  margin: 0 auto;
  padding-bottom: 6.66%;
  width: 50%;
  height: 0;
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  transition: all 0.3s ease 0s;
}

#page_navi > a::before {
  top: 15%;
}

#page_navi > a::after {
  top: 50%;
}

#page_navi > a span {
  padding-top: 75%;
  display: block;
}

#page_navi > a span::before {
  top: 32.5%;
}

#page_navi > a.active::before {
  top: 32.5%;
  transform: rotate(45deg);
}

#page_navi > a.active::after {
  top: 32.5%;
  transform: rotate(-45deg);
}

#page_navi > a.active span::before {
  display: none;
}

#page_navi ol {
  background-color: rgba(23, 153, 60, 0.9);
  padding: 18.66% 13.33% 100px;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 20;
  box-sizing: border-box;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#page_navi ol li {
  border-bottom: #fff solid 1px;
  font-size: 1.07rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}

#page_navi ol li a {
  padding: 15px 0;
  text-decoration: none;
  color: #fff;
  display: block;
}

/* ---------------------------------------------
page format
--------------------------------------------- */
#lp_contents section {
  padding: 25px 10px;
}

#lp_contents section.cv_area {
  background-color: #ecf2b1;
}

#lp_contents section.cv_area h2 {
  background: linear-gradient(to bottom, rgba(255, 236, 0, 0) 0%, rgba(255, 236, 0, 0) 60%, #ffec00 60%, #ffec00 100%);
  font-size: 1.57rem;
  line-height: 1.2;
  text-align: center;
}

#lp_contents section.cv_area h3 {
  margin-top: 20px;
  font-size: 1.92rem;
  line-height: 1.2;
  text-align: center;
  color: #fc2727;
  text-align: center;
  animation: Flash 1.25s infinite;
}

#lp_contents section.cv_area h3 b {
  font-size: 2.5rem;
  display: block;
}

#lp_contents section.cv_area .reception_time {
  margin-top: 20px;
  font-size: 1.28rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  color: #17993c;
}

#lp_contents section.cv_area .reception_time b {
  margin-bottom: 10px;
  font-size: 1.78rem;
  display: block;
}

#lp_contents section.cv_area ul li {
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}

#lp_contents section.cv_area ul li:nth-child(1) {
  margin: 15px 10px 0;
  font-size: 2.42rem;
}

#lp_contents section.cv_area ul li:nth-child(1) a {
  background-color: #f25511;
  border-radius: 10px;
  padding: 20px 0;
  text-decoration: none;
  color: #fff;
  display: block;
  box-shadow: 0 4px 0 0 #bf2800;
}

#lp_contents section.cv_area ul li:nth-child(1) a span {
  background: url(../img/icon_tel.svg) left center no-repeat;
  background-size: auto 1.1em;
  padding-left: 1em;
  display: inline-block;
}

#lp_contents section.cv_area ul li:nth-child(2) {
  margin-top: 30px;
  font-size: 1.21rem;
}

#lp_contents section.cv_area ul li:nth-child(2) a {
  color: #205aa0;
}

#lp_contents section#section01 {
  padding-bottom: 0;
}

#lp_contents section#section01 h2 {
  font-size: 1.78rem;
  line-height: 1.2;
  text-align: center;
}

#lp_contents section#section01 h2 b {
  font-size: 2.14rem;
  color: #17993c;
}

#lp_contents section#section01 h2 span {
  font-size: 1.57rem;
}

#lp_contents section#section01 #trouble_list {
  background: url(../img/section01_bg01.svg) right bottom no-repeat;
  background-size: auto 79%;
  border: #17993c solid 2px;
  margin-top: 20px;
  padding: 15px 10px;
}

#lp_contents section#section01 #trouble_list li {
  margin-top: 15px;
  padding-left: 2em;
  font-size: 1.07rem;
  font-weight: bold;
  line-height: 1.25;
  position: relative;
}

#lp_contents section#section01 #trouble_list li::before, #lp_contents section#section01 #trouble_list li::after {
  content: '';
  position: absolute;
  display: block;
}

#lp_contents section#section01 #trouble_list li::before {
  border: #8e8e8e solid 1px;
  width: 1.2em;
  height: 1.2em;
  top: -0.1em;
  left: 0;
}

#lp_contents section#section01 #trouble_list li::after {
  background: url(../img/icon_check.svg) no-repeat;
  background-size: 1em auto;
  width: 1em;
  height: 1em;
  top: 0.175em;
  left: 0.15em;
}

#lp_contents section#section01 #trouble_list li b {
  color: #fc2727;
}

#lp_contents section#section01 #trouble_list li:first-child {
  margin-top: 0;
}

#lp_contents section#section01 h3 {
  margin-top: 20px;
  padding-top: 45px;
  font-size: 1.78rem;
  line-height: 1.2;
  text-align: center;
  position: relative;
}

#lp_contents section#section01 h3::before {
  content: '';
  border-color: #17993c transparent transparent transparent;
  border-style: solid;
  border-width: 35px 60px 0 60px;
  margin: 0 auto;
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: block;
}

#lp_contents section#section01 h3 b {
  background: linear-gradient(to bottom, rgba(255, 236, 0, 0) 0%, rgba(255, 236, 0, 0) 60%, #ffec00 60%, #ffec00 100%);
  padding: 0 5px;
  font-size: 2.5rem;
}

#lp_contents section#section01 h3 + p {
  margin-top: 20px;
  font-size: 1.42rem;
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
}

#lp_contents section#section01 h3 + p b {
  color: #fc2727;
}

#lp_contents section#section01 h3 + p i {
  color: #17993c;
}

#lp_contents section#section01 h3 + p + p {
  margin-top: 15px;
  font-size: 1.07rem;
  line-height: 1.5;
  text-align: center;
}

#lp_contents section#section01 #case_list {
  margin: 25px -2.5px 0;
  display: flex;
  flex-wrap: wrap;
}

#lp_contents section#section01 #case_list li {
  counter-increment: case_list;
  background-color: #f9f7e8;
  border: #f25511 solid 1px;
  border-radius: 10px;
  margin: 5px 2.5px 0;
  width: calc(33.33% - 5px);
  box-sizing: border-box;
}

#lp_contents section#section01 #case_list li::before {
  content: "Case " counter(case_list);
  margin-top: 5px;
  font-size: 0.85rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  color: #f25511;
  display: block;
}

#lp_contents section#section01 #case_list li .body {
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 10px;
  padding: 0 5px;
}

#lp_contents section#section01 #case_list li .body table {
  width: 100%;
  font-size: 0.71rem;
  line-height: 1.5;
}

#lp_contents section#section01 #case_list li .body table tbody tr th, #lp_contents section#section01 #case_list li .body table tbody tr td {
  border-top: #c9c9c9 solid 1px;
  padding: 6px 0;
}

#lp_contents section#section01 #case_list li .body table tbody tr th {
  width: 3em;
}

#lp_contents section#section01 #case_list li .body table tbody tr:nth-child(1) th, #lp_contents section#section01 #case_list li .body table tbody tr:nth-child(1) td {
  border-top: none;
}

#lp_contents section#section01 #case_list li .body table tbody tr:nth-child(1) td {
  font-size: 1.21rem;
  font-weight: bold;
  line-height: 1.2;
  color: #f25511;
}

#lp_contents section#section01 #case_list li .body table tbody tr:nth-child(2) td {
  height: 4.6em;
}

#lp_contents section#section01 #case_list li .result {
  background-color: #f25511;
  border-bottom-right-radius: 9px;
  border-bottom-left-radius: 9px;
  padding: 5px;
  color: #fff;
}

#lp_contents section#section01 #case_list li .result h4 {
  font-size: 0.78rem;
  line-height: 1.2;
}

#lp_contents section#section01 #case_list li .result p {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}

#lp_contents section#section01 #case_list li .result p b {
  font-size: 1.64rem;
}

#lp_contents section#section01 #case_list li:nth-child(1) .body {
  background-image: url(../img/section01_case_bg01.svg);
}

#lp_contents section#section01 #case_list li:nth-child(2) .body {
  background-image: url(../img/section01_case_bg02.svg);
}

#lp_contents section#section01 #case_list li:nth-child(3) .body {
  background-image: url(../img/section01_case_bg03.svg);
}

#lp_contents section#section01 #case_list li:nth-child(4) .body {
  background-image: url(../img/section01_case_bg02.svg);
}

#lp_contents section#section01 #case_list li:nth-child(5) .body {
  background-image: url(../img/section01_case_bg03.svg);
}

#lp_contents section#section01 #case_list li:nth-child(6) .body {
  background-image: url(../img/section01_case_bg01.svg);
}

#lp_contents section#section01 > h4 {
  margin-top: 30px;
  font-size: 1.17rem;
  line-height: 1.2;
  text-align: center;
}

#lp_contents section#section01 #section01_last {
  background: url(../img/section01_bg02.jpg) right bottom no-repeat;
  background-size: contain;
  margin: 15px -10px 0 0;
  padding: 0 10px 25px 0;
}

#lp_contents section#section01 #section01_last p {
  font-size: 2.07rem;
  font-weight: bold;
  line-height: 1.2;
}

#lp_contents section#section01 #section01_last p b {
  font-size: 2.5rem;
  color: #17993c;
}

#lp_contents section#section01 #section01_last ul {
  margin-top: 20px;
}

#lp_contents section#section01 #section01_last ul li {
  margin-top: 5px;
  padding-left: 1.25em;
  font-size: 0.71rem;
  line-height: 1.2;
  position: relative;
}

#lp_contents section#section01 #section01_last ul li::before {
  content: '※';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

#lp_contents section#section02 {
  padding-top: 0;
}

#lp_contents section#section02 h2 {
  background-color: #17993c;
  margin: 0 -10px;
  padding: 25px 10px;
  font-size: 1.5rem;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  position: relative;
}

#lp_contents section#section02 h2::before {
  content: '';
  border-color: #17993c transparent transparent transparent;
  border-style: solid;
  border-width: 35px 60px 0 60px;
  margin: 0 auto;
  width: 0;
  height: 0;
  position: absolute;
  right: 0;
  bottom: -35px;
  left: 0;
  display: block;
}

#lp_contents section#section02 #voice_list {
  margin-top: 50px;
}

#lp_contents section#section02 #voice_list li {
  counter-increment: voice_list;
  border: #17993c solid 1px;
  margin-top: 30px;
  padding: 10px 10px 15px;
  position: relative;
}

#lp_contents section#section02 #voice_list li .number {
  background-color: #88bc08;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  padding: 4% 0 5.6%;
  width: 14.08451%;
  font-size: 1.28rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  position: absolute;
  top: -11px;
  left: 10px;
}

#lp_contents section#section02 #voice_list li .number::after {
  content: counter(voice_list);
  margin-top: 5px;
  font-size: 2.14rem;
  line-height: 1;
  display: block;
}

#lp_contents section#section02 #voice_list li h3 {
  margin-left: 14.49275%;
  padding-left: 10px;
  min-height: 4.125em;
  font-size: 1.14rem;
  line-height: 1.375;
  color: #17993c;
}

#lp_contents section#section02 #voice_list li figure {
  border-bottom: #b5b5b5 solid 1px;
  margin-top: 5.8%;
  padding-bottom: 1em;
  display: flex;
  align-items: flex-end;
}

#lp_contents section#section02 #voice_list li figure .image {
  width: 26.08696%;
}

#lp_contents section#section02 #voice_list li figure figcaption {
  margin-left: 10px;
  line-height: 1.4;
  flex: 1;
}

#lp_contents section#section02 #voice_list li p {
  margin-top: 1em;
}

#lp_contents section#section02 #voice_list li p b {
  color: #fc2727;
}

#lp_contents section#section03 h2 {
  font-size: 1.92rem;
  line-height: 1.3;
  text-align: center;
}

#lp_contents section#section03 h2 b {
  background: linear-gradient(to bottom, rgba(255, 236, 0, 0) 0%, rgba(255, 236, 0, 0) 60%, #ffec00 60%, #ffec00 100%);
  font-size: 2.5rem;
}

#lp_contents section#section03 h2 + p {
  margin-top: 25px;
  padding-top: 55px;
  font-size: 1.92rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  color: #fc2727;
  position: relative;
}

#lp_contents section#section03 h2 + p::before {
  content: '';
  border-color: #17993c transparent transparent transparent;
  border-style: solid;
  border-width: 35px 60px 0 60px;
  margin: 0 auto;
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: block;
}

#lp_contents section#section03 h2 + p b {
  font-size: 2.5rem;
}

#lp_contents section#section03 #document_list > li {
  border: #17993c solid 1px;
  margin-top: 20px;
  padding: 0 10px 10px;
}

#lp_contents section#section03 #document_list > li h3 {
  background-color: #17993c;
  margin: 0 -10px;
  padding: 10px;
  font-size: 1.42rem;
  line-height: 1.2;
  text-align: center;
  color: #fff;
}

#lp_contents section#section03 #document_list > li ol li {
  counter-increment: document_list;
  margin-top: 10px;
  font-size: 1.07rem;
  font-weight: bold;
  line-height: 1.2;
  display: flex;
  align-items: center;
}

#lp_contents section#section03 #document_list > li ol li::before {
  content: counter(document_list);
  background-color: #88bc08;
  width: 1.5em;
  font-size: 1.42rem;
  line-height: 1.5em;
  text-align: center;
  color: #fff;
}

#lp_contents section#section03 #document_list > li ol li span {
  padding-left: 10px;
  display: block;
  flex: 1;
}

#lp_contents section#section03 #document_list > li p {
  margin-top: 10px;
  font-weight: bold;
  line-height: 1.6;
}

#lp_contents section#section03 #document_list > li p.notes {
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: normal;
  line-height: 1.5;
}

#lp_contents section#section04 {
  background-color: #efefe4;
  padding-top: 40px;
  padding-bottom: 40px;
}

#lp_contents section#section04 h2 {
  font-size: 1.28rem;
  line-height: 1.4;
  text-align: center;
}

#lp_contents section#section04 h2 span {
  font-size: 1.57rem;
  display: block;
}

#lp_contents section#section04 h2 span b {
  color: #17993c;
}

#lp_contents section#section04 h2 > b {
  font-size: 1.71rem;
  color: #fc2727;
  display: block;
}

#lp_contents section#section04 table {
  border-collapse: separate;
  border-spacing: 2px;
  margin: 30px -2px 0;
  width: calc(100% + 4px);
  line-height: 1.35;
}

#lp_contents section#section04 table tbody tr th, #lp_contents section#section04 table tbody tr td {
  padding: 10px;
  vertical-align: middle;
}

#lp_contents section#section04 table tbody tr th {
  background-color: #17993c;
  width: 34.78261%;
  color: #fff;
}

#lp_contents section#section04 table tbody tr td {
  background-color: #fff;
}

#lp_contents section#section05 h2 {
  font-size: 1.57rem;
  line-height: 1.35;
  text-align: center;
}

#lp_contents section#section05 h2 i {
  color: #17993c;
}

#lp_contents section#section05 h2 b {
  color: #fc2727;
}

#lp_contents section#section05 h2 + p {
  margin-top: 30px;
}

#lp_contents section#section05 h2 + p b {
  color: #17993c;
}

#lp_contents section#section05 h3:nth-of-type(1) {
  background-color: #f25511;
  margin-top: 30px;
  padding: 10px;
  font-size: 1.64rem;
  line-height: 1.2;
  text-align: center;
  color: #fff;
}

#lp_contents section#section05 h3:nth-of-type(1) + p {
  margin-top: 10px;
  font-weight: bold;
}

#lp_contents section#section05 h3:nth-of-type(1) + p sup {
  font-size: 0.71rem;
  font-weight: normal;
  vertical-align: super;
}

#lp_contents section#section05 h3:nth-of-type(2) {
  margin-top: 40px;
  font-size: 2.14rem;
  line-height: 1.2;
  letter-spacing: 0.15em;
  text-align: center;
}

#lp_contents section#section05 h3:nth-of-type(2) span {
  background: url(../img/icon_caution.svg) left center no-repeat;
  background-size: 2em auto;
  padding-left: 2.2em;
  display: inline-block;
}

#lp_contents section#section05 h3:nth-of-type(2) + p {
  background-color: #fc2727;
  margin: 20px -10px 0;
  padding: 10px;
  font-size: 2.14rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  color: #fff;
}

#lp_contents section#section05 h3:nth-of-type(2) + p span {
  font-size: 2.5rem;
  display: block;
}

#lp_contents section#section05 h3:nth-of-type(2) + p span b {
  font-size: 2.85rem;
  color: #ffec00;
}

#lp_contents section#section05 h3:nth-of-type(2) + p + p {
  margin-top: 20px;
  font-size: 1.28rem;
  font-weight: bold;
}

#lp_contents section#section05 h3:nth-of-type(2) + p + p b {
  color: #fc2727;
}

#lp_contents section#section05 #overtime_formula {
  background-color: #efefe4;
  margin-top: 20px;
  padding: 15px 10px;
}

#lp_contents section#section05 #overtime_formula figure figcaption {
  font-size: 1.57rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  color: #17993c;
}

#lp_contents section#section05 #overtime_formula figure img {
  margin-top: 20px;
}

#lp_contents section#section05 #overtime_formula p {
  margin-top: 15px;
  padding-left: 1.25em;
  font-size: 0.71rem;
  line-height: 1.5;
  position: relative;
}

#lp_contents section#section05 #overtime_formula p::before {
  content: '※';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

#lp_contents section#section05 h4 {
  border-bottom: #88bc08 solid 1px;
  margin-top: 25px;
  padding: 0 0 10px 2.75em;
  font-size: 1.42rem;
  line-height: 1.2;
  color: #88bc08;
  position: relative;
}

#lp_contents section#section05 h4::before {
  content: '例';
  background-color: #88bc08;
  border-radius: 50%;
  margin: auto 0;
  width: 2.27em;
  height: 2.27em;
  font-size: 1.57rem;
  line-height: 2.27em;
  text-align: center;
  color: #fff;
  position: absolute;
  top: -10px;
  left: 0;
  bottom: 0;
}

#lp_contents section#section05 h4 + p {
  margin-top: 15px;
  font-size: 1.35rem;
  line-height: 1.4;
  text-align: center;
}

#lp_contents section#section05 h4 + p b {
  margin-top: 5px;
  font-size: 1.42rem;
  color: #fc2727;
  display: block;
}

#lp_contents section#section05 h4 + p + p {
  margin-top: 15px;
  padding-top: 30px;
  position: relative;
  font-size: 1.42rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  position: relative;
}

#lp_contents section#section05 h4 + p + p::before {
  content: '';
  border-right: #88bc08 solid 10px;
  border-bottom: #88bc08 solid 10px;
  margin: 0 auto;
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  transform: scaleY(0.7) rotate(45deg);
  position: absolute;
  top: -20px;
  right: 0;
  left: 0;
}

#lp_contents section#section05 h4 + p + p b {
  color: #fc2727;
}

#lp_contents section#section05 h4 + p + p + p {
  margin-top: 30px;
  padding-top: 45px;
  font-size: 1.64rem;
  font-weight: bold;
  line-height: 1.35;
  text-align: center;
  position: relative;
}

#lp_contents section#section05 h4 + p + p + p::before {
  content: '';
  border-color: #17993c transparent transparent transparent;
  border-style: solid;
  border-width: 35px 60px 0 60px;
  margin: 0 auto;
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: block;
}

#lp_contents section#section05 h4 + p + p + p b {
  color: #fc2727;
}

#lp_contents section#section05 h4 + p + p + p span {
  background: linear-gradient(to bottom, rgba(255, 236, 0, 0) 0%, rgba(255, 236, 0, 0) 60%, #ffec00 60%, #ffec00 100%);
  margin-top: 5px;
  padding: 0 5px;
  font-size: 2.14rem;
  display: inline-block;
}

#lp_contents section#section06 h2 {
  font-size: 1.78rem;
  line-height: 1.35;
  text-align: center;
}

#lp_contents section#section06 h2 b {
  background: linear-gradient(to bottom, rgba(255, 236, 0, 0) 0%, rgba(255, 236, 0, 0) 60%, #ffec00 60%, #ffec00 100%);
  padding: 0 5px;
  font-size: 2.14rem;
  display: inline-block;
}

#lp_contents section#section06 p {
  margin-top: 1.8em;
}

#lp_contents section#section06 p i {
  font-weight: bold;
  color: #17993c;
}

#lp_contents section#section06 p b {
  color: #fc2727;
}

#lp_contents section#section06 table {
  border: #333 solid 1px;
  margin-top: 30px;
  width: 100%;
}

#lp_contents section#section06 table caption {
  background-color: #17993c;
  border: #333 solid 1px;
  border-bottom: none;
  padding: 10px;
  font-size: 1.07rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  color: #fff;
}

#lp_contents section#section06 table colgroup col:nth-child(1) {
  width: 12.8%;
}

#lp_contents section#section06 table colgroup col:nth-child(2), #lp_contents section#section06 table colgroup col:nth-child(3) {
  width: 43.6%;
}

#lp_contents section#section06 table thead tr th {
  border: #333 solid 1px;
  padding: 10px;
  font-size: 1.07rem;
  font-weight: normal;
  line-height: 1.2;
  text-align: center;
  vertical-align: middle;
}

#lp_contents section#section06 table thead tr th:nth-child(1) {
  background-color: #eaeaea;
}

#lp_contents section#section06 table thead tr th:nth-child(2) {
  background-color: #fff6dc;
}

#lp_contents section#section06 table tbody tr th, #lp_contents section#section06 table tbody tr td {
  border: #333 solid 1px;
}

#lp_contents section#section06 table tbody tr th {
  background-color: #eaeaea;
  padding: 10px 5px;
  font-weight: normal;
  line-height: 1.2;
  vertical-align: middle;
}

#lp_contents section#section06 table tbody tr th p {
  margin-top: 0;
  width: 100%;
  white-space: nowrap;
  display: flex;
  align-items: center;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

#lp_contents section#section06 table tbody tr td {
  padding: 10px;
  line-height: 1.4;
  vertical-align: top;
}

#lp_contents section#section06 table tbody tr td ul li {
  margin-top: 10px;
  padding-left: 1.25em;
  position: relative;
}

#lp_contents section#section06 table tbody tr td ul li::before {
  position: absolute;
  top: 0;
  left: 0;
}

#lp_contents section#section06 table tbody tr td ul li b {
  font-weight: normal;
  color: #fc2727;
}

#lp_contents section#section06 table tbody tr td ul li:first-child {
  margin-top: 0;
}

#lp_contents section#section06 table tbody tr td ul li.double::before {
  content: '◎';
}

#lp_contents section#section06 table tbody tr td ul li.circle::before {
  content: '〇';
}

#lp_contents section#section06 table tbody tr td ul li.triangle::before {
  content: '△';
}

#lp_contents section#section06 table tbody tr td ul li.cross::before {
  content: '×';
}

#lp_contents section#section06 table tbody tr td:nth-child(2) {
  background-color: #fff6dc;
}

#lp_contents section#section07 {
  background-color: #efefe4;
  padding-top: 0;
}

#lp_contents section#section07 h2 {
  background-color: #17993c;
  margin: 0 -10px;
  padding: 25px 10px;
  font-size: 1.71rem;
  line-height: 1.2;
  text-align: center;
  color: #fff;
}

#lp_contents section#section07 .content {
  margin: 0 -10px;
  position: relative;
}

#lp_contents section#section07 .content img {
  width: 100%;
}

#lp_contents section#section07 .content p {
  width: 48%;
  font-size: 1.07rem;
  white-space: nowrap;
  line-height: 1.2;
  position: absolute;
  bottom: 11.86441%;
  right: 2.66667%;
}

#lp_contents section#section07 .content p span {
  font-size: 0.92rem;
  display: block;
}

#lp_contents section#section07 .content p > b {
  margin-top: 10px;
  text-align: right;
  display: block;
}

#lp_contents section#section07 .content p > b b {
  margin-left: 0.5em;
  font-size: 1.21rem;
}

#lp_contents section#section07 ul {
  background-color: #17993c;
  margin: 0 -10px;
  padding: 10px 7.5px;
  display: flex;
}

#lp_contents section#section07 ul li {
  padding: 0 2.5px;
  width: 25%;
  box-sizing: border-box;
}

#lp_contents section#section07 > p {
  margin-top: 30px;
}

#lp_contents section#section07 > p b {
  color: #fc2727;
}

#lp_contents section#section07 > p + p {
  font-size: 0.85rem;
  line-height: 1.5;
}

#lp_contents section#section07 > p + p b {
  color: #333;
}

#lp_contents section#section08 {
  padding-top: 0;
}

#lp_contents section#section08 h2 {
  background-color: #17993c;
  margin: 0 -10px;
  padding: 25px 10px;
  font-size: 1.71rem;
  line-height: 1.2;
  text-align: center;
  color: #fff;
}

#lp_contents section#section08 ol {
  margin-top: 30px;
}

#lp_contents section#section08 ol li {
  counter-increment: step_list;
  border: #88bc08 solid 1px;
  margin-top: 20px;
  position: relative;
}

#lp_contents section#section08 ol li::before {
  content: '';
  background-color: #17993c;
  margin: 0 auto;
  width: 8.69565%;
  height: 20px;
  position: absolute;
  top: -21px;
  right: 0;
  left: 0;
}

#lp_contents section#section08 ol li h3 {
  background-color: #88bc08;
  padding: 10px 15px;
  font-size: 1.28rem;
  line-height: 1.2;
  color: #fff;
  vertical-align: middle;
  position: relative;
}

#lp_contents section#section08 ol li h3 span {
  background-color: #fff;
  border-radius: 5px;
  margin-right: 10px;
  padding: 5px 5px 3px;
  font-size: 0.78rem;
  line-height: 1.1;
  color: #17993c;
  display: inline-block;
}

#lp_contents section#section08 ol li h3 span::after {
  content: counter(step_list);
  margin-left: 5px;
  font-size: 1.42rem;
}

#lp_contents section#section08 ol li .body {
  padding: 15px;
}

#lp_contents section#section08 ol li .body p {
  font-weight: bold;
  line-height: 1.6;
}

#lp_contents section#section08 ol li .body p + p {
  margin-top: 1em;
}

#lp_contents section#section08 ol li .body p.notes {
  font-weight: normal;
  color: #fc2727;
}

#lp_contents section#section08 ol li:first-child::before {
  display: none;
}

#lp_contents section#section09 {
  padding-top: 0;
}

#lp_contents section#section09 h2 {
  background-color: #17993c;
  margin: 0 -10px;
  padding: 25px 10px;
  font-size: 1.71rem;
  line-height: 1.2;
  text-align: center;
  color: #fff;
}

#lp_contents section#section09 nav {
  margin-top: 30px;
}

#lp_contents section#section09 nav h3 {
  font-size: 1.42rem;
  line-height: 1.2;
  text-align: center;
}

#lp_contents section#section09 nav ol {
  background-color: #f25511;
  border-radius: 8px;
  margin: 15px 10px 0;
  padding: 10px 7.5px;
  text-align: center;
  display: flex;
}

#lp_contents section#section09 nav ol li {
  padding: 0 7.5px;
  width: 50%;
  font-size: 2.14rem;
  font-weight: bold;
  line-height: 1.1;
}

#lp_contents section#section09 nav ol li a {
  background-color: #fff;
  border-radius: 8px;
  padding: 5px;
  text-decoration: none;
  color: #f25511;
  display: block;
}

#lp_contents section#section09 nav ol li a.active {
  background-color: #f25511;
  color: #fff;
}

#lp_contents section#section09 dl {
  margin-top: 30px;
}

#lp_contents section#section09 dl dt {
  background: url(../img/icon_q.svg) 0.82em center no-repeat;
  background-size: 1.66em auto;
  background-color: #efefe4;
  margin-top: 10px;
  padding: 20px 3em 20px 3.33em;
  font-size: 1.07rem;
  font-weight: bold;
  line-height: 1.6;
  position: relative;
}

#lp_contents section#section09 dl dt::before, #lp_contents section#section09 dl dt::after {
  margin: auto 0;
  position: absolute;
  top: 0;
  bottom: 0;
}

#lp_contents section#section09 dl dt::before {
  content: '';
  background-color: #fff;
  border-radius: 50%;
  width: 2em;
  height: 2em;
  right: 10px;
}

#lp_contents section#section09 dl dt::after {
  content: '−';
  width: 1.2em;
  height: 1.1em;
  font-size: 1.78rem;
  line-height: 1;
  text-align: center;
  color: #17993c;
  right: 10px;
}

#lp_contents section#section09 dl dt.active::after {
  content: '+';
}

#lp_contents section#section09 dl dd {
  background: url(../img/icon_a.svg) 0.985em 24px no-repeat;
  background-size: 1.6em auto;
  padding: 20px 20px 10px 3.57em;
  display: none;
}

#lp_contents section#section10 {
  padding-top: 0;
}

#lp_contents section#section10 h2 {
  background-color: #17993c;
  margin: 0 -10px;
  padding: 25px 10px;
  font-size: 1.71rem;
  line-height: 1.2;
  text-align: center;
  color: #fff;
}

#lp_contents section#section10 .content {
  padding: 0 15px;
}

#lp_contents section#section10 .content h3 {
  margin-top: 30px;
  font-size: 1.42rem;
  line-height: 1.2;
  text-align: center;
  color: #17993c;
}

#lp_contents section#section10 .content address {
  margin-top: 25px;
}

#lp_contents section#section10 .content address a.btn {
  background-color: #88bc08;
  border-radius: 6px;
  margin-top: 20px;
  padding: 10px;
  font-size: 1.21rem;
  font-weight: bold;
  line-height: 1.1;
  text-decoration: none;
  text-align: center;
  color: #fff;
  display: block;
}

#lp_contents section#section10 .content h4 {
  border-left: #17993c solid 5px;
  margin-top: 30px;
  padding-left: 10px;
  font-size: 1.07rem;
  line-height: 1.2;
}

#lp_contents section#section10 .content dl {
  margin-top: 20px;
  line-height: 1.2;
  display: flex;
}

#lp_contents section#section10 .content dl dt, #lp_contents section#section10 .content dl dd {
  padding: 10px;
  box-sizing: border-box;
}

#lp_contents section#section10 .content dl dt {
  background-color: #17993c;
  width: 30.76923%;
  text-align: center;
  color: #fff;
}

#lp_contents section#section10 .content dl dd {
  background-color: #efefe4;
  flex: 1;
}

#lp_contents section#section10 .content .photo {
  margin: 10px auto;
  width: 46.15385%;
}

#lp_contents section#section11 {
  padding-top: 0;
}

#lp_contents section#section11 h2 {
  background-color: #17993c;
  margin: 0 -10px;
  padding: 25px 10px;
  font-size: 1.71rem;
  line-height: 1.2;
  text-align: center;
  color: #fff;
}

#lp_contents section#section11 #price_list {
  margin-top: 25px;
}

#lp_contents section#section11 #price_list dt {
  background-color: #88bc08;
  margin-top: 15px;
  padding: 5px;
  font-size: 1.07rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  color: #fff;
}

#lp_contents section#section11 #price_list dt:first-child {
  background-color: #f25511;
  padding: 10px 5px;
  font-size: 1.42rem;
}

#lp_contents section#section11 #price_list dt:first-child + dd {
  border-color: #f25511;
}

#lp_contents section#section11 #price_list dt:first-child + dd > b {
  font-size: 1.78rem;
  color: #fc2727;
}

#lp_contents section#section11 #price_list dt:first-child + dd > b b {
  font-size: 3.57rem;
}

#lp_contents section#section11 #price_list dt:first-child + dd > span {
  font-size: 0.92rem;
  font-weight: normal;
  display: block;
}

#lp_contents section#section11 #price_list dd {
  border: #88bc08 solid 1px;
  padding: 10px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}

#lp_contents section#section11 #price_list dd > b {
  font-size: 1.35rem;
  color: #fc2727;
}

#lp_contents section#section11 #price_list dd > b b {
  font-size: 2.64rem;
}

#lp_contents section#section11 #price_list dd > span {
  font-size: 1.42rem;
}

#lp_contents section#section11 #price_list dd ol {
  list-style-type: decimal;
  text-align: left;
}

#lp_contents section#section11 #price_list dd ol li {
  margin-left: 1.5em;
  line-height: 1.8;
}

#lp_contents section#section11 #price_list dd ol li b {
  color: #fc2727;
}

#lp_contents section#section11 #price_list dd ol li span {
  font-size: 0.71rem;
  font-weight: normal;
}

#lp_contents section#section11 #price_list + p {
  margin-top: 20px;
  padding-left: 1.25em;
  font-size: 0.85rem;
  line-height: 1.5;
  position: relative;
}

#lp_contents section#section11 #price_list + p::before {
  content: '※';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

#lp_contents section#section11 .about {
  border: #17993c solid 1px;
  border-radius: 10px;
  margin-top: 40px;
  padding: 10px;
}

#lp_contents section#section11 .about dt {
  border-bottom: #17993c solid 1px;
  padding-bottom: 10px;
  font-size: 1.21rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  color: #17993c;
}

#lp_contents section#section11 .about dd {
  margin-top: 15px;
}

#lp_contents section#section_form {
  padding-top: 0;
}

#lp_contents section#section_form h2 {
  background-color: #17993c;
  margin: 0 -10px;
  padding: 25px 10px;
  font-size: 1.71rem;
  line-height: 1.2;
  text-align: center;
  color: #fff;
}

#lp_contents section#section_form h2 + p {
  margin-top: 25px;
}

#lp_contents section#section_form form dl {
  font-size: 1.07rem;
  line-height: 1.4;
}

#lp_contents section#section_form form dl dt {
  background-color: #efefe4;
  margin: 20px -10px 0;
  padding: 15px 25px;
  font-weight: bold;
  vertical-align: middle;
}

#lp_contents section#section_form form dl dt .required {
  background-color: #fc2727;
  margin-left: 10px;
  padding: 3px 5px;
  font-size: 0.92rem;
  line-height: 1.1;
  color: #fff;
  display: inline-block;
}

#lp_contents section#section_form form dl dd {
  margin: 20px 15px 0;
}

#lp_contents section#section_form form dl dd input[type="text"], #lp_contents section#section_form form dl dd input[type="tel"], #lp_contents section#section_form form dl dd input[type="email"], #lp_contents section#section_form form dl dd textarea {
  border: #6d6d6d solid 1px;
  padding: 10px;
  width: 100%;
  font-size: inherit;
  display: block;
  box-sizing: border-box;
}

#lp_contents section#section_form form dl dd textarea {
  height: 10em;
}

#lp_contents section#section_form form dl dd label {
  margin-top: 20px;
  font-weight: bold;
  display: block;
}

#lp_contents section#section_form form dl dd label input {
  background-color: #fff;
  border: #6d6d6d solid 1px;
  margin-right: 10px;
  width: 1.66em;
  height: 1.66em;
  font-size: inherit;
  vertical-align: middle;
  box-sizing: border-box;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

#lp_contents section#section_form form dl dd label input[type="radio"] {
  border-radius: 50%;
}

#lp_contents section#section_form form dl dd label input:checked {
  background-color: #fc2727;
}

#lp_contents section#section_form form dl dd label.select_box {
  position: relative;
}

#lp_contents section#section_form form dl dd label.select_box::after {
  content: '';
  border-color: #333 transparent transparent transparent;
  border-style: solid;
  border-width: 10px 7px 0 7px;
  margin: auto 0;
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  pointer-events: none;
  display: block;
}

#lp_contents section#section_form form dl dd label.select_box select {
  background-color: transparent;
  border: #6d6d6d solid 1px;
  border-radius: 0;
  padding: 10px;
  width: 100%;
  font-size: inherit;
  box-sizing: border-box;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

#lp_contents section#section_form form dl dd .error {
  margin-top: 10px;
  line-height: 1.4;
  color: red;
}

#lp_contents section#section_form form dl + p {
  margin-top: 30px;
  font-size: 1.07rem;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}

#lp_contents section#section_form form #btn_submit {
  margin: 30px 10px 0;
}

#lp_contents section#section_form form #btn_submit button {
  background-color: #fc2727;
  border: none;
  border-radius: 40px;
  padding: 20px 10px;
  width: 100%;
  font-size: 1.42rem;
  font-weight: bold;
  line-height: 1.1;
  text-align: center;
  color: #fff;
  display: block;
  box-sizing: border-box;
  box-shadow: 0 5px 0 0 #7f0a0a;
}

#lp_contents section#section_form #privacy_policy {
  border: #bcbcbc solid 1px;
  margin-top: 60px;
  padding: 20px 15px;
  font-size: 0.85rem;
}

#lp_contents section#section_form #privacy_policy h3 {
  border-bottom: #bcbcbc solid 1px;
  padding-bottom: 15px;
  font-size: 1.07rem;
  line-height: 1.2;
  text-align: center;
}

#lp_contents section#section_form #privacy_policy h4 {
  margin-top: 1em;
}

#lp_contents section#section_form #privacy_policy h4 + p {
  margin-top: 0;
}

#lp_contents section#section_form #privacy_policy p {
  margin-top: 1em;
}

#lp_contents section#section_form #privacy_policy ul {
  list-style-type: disc;
  margin-left: 1.5em;
}

#default_contents {
  padding: 40px 10px;
}

#default_contents h2 {
  border-bottom: #17993c solid 1px;
  padding-bottom: 10px;
  font-size: 1.42rem;
  line-height: 1.2;
  text-align: center;
  color: #17993c;
}

#default_contents p {
  margin-top: 1.8em;
}

#default_contents p.error_messe {
  color: red;
}

#default_contents #btn_back {
  margin-top: 30px;
  text-align: center;
}

/* ---------------------------------------------
footer format
--------------------------------------------- */
#site_footer {
  background-color: #17993c;
  padding: 25px 10px 110px;
}

#site_footer small {
  font-size: 0.92rem;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  display: block;
}

#site_footer.no_fixed_cv {
  padding-bottom: 25px;
}

#fixed_cv {
  background-color: #17993c;
  padding: 5px 10px 10px;
  width: 100%;
  position: fixed;
  bottom: -85px;
  left: 0;
  box-sizing: border-box;
}

#fixed_cv h2 {
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
  color: #fff;
}

#fixed_cv ul {
  margin-top: 5px;
  line-height: 1.2;
  text-align: center;
  display: flex;
}

#fixed_cv ul li {
  padding: 0 5px;
  box-sizing: border-box;
}

#fixed_cv ul li a {
  border-radius: 5px;
  padding: 5px 0;
  height: 100%;
  text-decoration: none;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.5);
}

#fixed_cv ul li a b {
  display: inline-block;
}

#fixed_cv ul li:nth-child(1) {
  font-size: 18px;
  width: 62%;
}

#fixed_cv ul li:nth-child(1) a {
  background-color: #f25511;
}

#fixed_cv ul li:nth-child(1) a b {
  background: url(../img/icon_tel.svg) left center no-repeat;
  background-size: 20px auto;
  padding-left: 20px;
}

#fixed_cv ul li:nth-child(1) a b span {
  font-size: 14px;
  display: block;
}

#fixed_cv ul li:nth-child(2) {
  font-size: 14px;
  width: 38%;
}

#fixed_cv ul li:nth-child(2) a {
  background-color: #fc2727;
}

#fixed_cv ul li:nth-child(2) a b {
  background: url(../img/icon_mail.svg) left center no-repeat;
  background-size: 25px auto;
  padding-left: 30px;
}
