@charset "UTF-8";
/*//////////////////////////////////////////////////////////

Copyright (C) apricot-design All Rights Reserved.
------------------------------------------------------------
CSS information
 file name  :  reset.css
 style info :  リセットファイル
 admin info :  apricot-design

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

audio[controls], canvas, video {
  display: inline-block;
  *display: inline;
  zoom: 1;
}

html {
  overflow-y: scroll;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, ul {
  margin: 0;
  padding: 0;
}

body, button, input, select, textarea {
  font-size: 100%;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

pre, code, kbd, samp {
  font-family: monospace, monospace;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

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

small {
  font-size: 75%;
}

sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

ul, ol {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0px;
}

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

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

figure, form {
  margin: 0;
}

fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  *margin-left: -7px;
}

button, input, select, textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

button, input {
  line-height: normal;
  *overflow: visible;
}

button {
  cursor: pointer;
  -webkit-appearance: button;
}

input[type=button], input[type=reset], input[type=submit] {
  cursor: pointer;
  -webkit-appearance: button;
}
input[type=checkbox], input[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

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

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 100%;
}

img, abbr, acronym, fieldset {
  border: 0;
}

li {
  list-style: none;
}

/*画像を縦に並べた時に余白が出ないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
* {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.ie6_error, .no_script {
  background: #F66;
  padding: 100px;
  text-align: center;
  font-size: 150%;
  color: #333;
}

.flt {
  float: left;
}

.flr {
  float: right;
}

.txt_l, td.txt_l, .txt_l td {
  text-align: left;
}

.txt_r, td.txt_r, .txt_r td {
  text-align: right;
}

.txt_c, td.txt_c, .txt_c td {
  text-align: center;
}

.valign_t, td.valign_t, .valign_t td {
  vertical-align: top;
}

.valign_m, td.valign_m, .valign_m td {
  vertical-align: middle;
}

.valign_b, td.valign_b, .valign_b td {
  vertical-align: bottom;
}

.clear {
  clear: both;
}

.clearfix {
  zoom: 1;
}
.clearfix:before {
  content: "";
  display: block;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.img_bd {
  border: solid 1px #E8E8E8;
}

.c_red {
  color: #FF3425;
}

/*
0:セット
------------------------------------------------------------
*/
html {
  width: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  text-align: left;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 15px;
  }
}

a {
  text-decoration: none;
  color: #000;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
a:link, a:active, a:visited {
  text-decoration: none;
}

.opacity {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.opacity:hover {
  opacity: 0.5;
}

img {
  max-width: 100%;
  height: auto;
}
img[src$=".svg"] {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.pc {
  display: inherit;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: inherit;
  }
}

/*
//ベース
------------------------------------------------------------
*/
#container_wrap {
  overflow: hidden;
  min-width: 1000px;
}
@media screen and (max-width: 767px) {
  #container_wrap {
    min-width: 1px;
  }
}

.inner {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: 375px;
  }
}
.inner::after {
  content: "";
  display: block;
  clear: both;
}

/*
//ヘッダー
------------------------------------------------------------
*/
header {
  margin: 0;
}

.header_box {
  max-width: 780px;
  padding: 15px 15px 20px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .header_box {
    padding: 10px 15px;
  }
}

.header_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header_ttl {
  width: 58%;
}

.flat7 {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .flat7 {
    width: 35%;
  }
}

.header_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 15px 0 0;
}
@media screen and (max-width: 767px) {
  .header_bottom {
    display: none;
  }
}

.header_tel_num {
  color: #ff9800;
  font-size: 3.2em;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  padding: 0 0 0 41px;
  margin: 0 0 5px;
  background: url(../images/icon_tel_o.svg) no-repeat left/36px 42px;
}
.header_tel_time {
  font-size: 1.37em;
  font-weight: 700;
  line-height: 1.3;
}
.header_tel_time span {
  font-size: 0.83em;
}
.header_tel_time span.box {
  display: inline-block;
  background: #ff9800;
  color: #fff;
  padding: 0 0.5em;
  margin: 0 0.5em 0 0;
  border-radius: 5px;
}

a.header_button {
  background: url(../images/icon_arrow_w.svg) no-repeat center right 0.4em/12px 20px #ff6c87;
  color: #fff;
  font-size: 1.75em;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  border: 5px solid #ff6c87;
  padding: 0.5em 2em 0.5em 1em;
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
}
a.header_button:hover {
  color: #ff6c87;
  background: url(../images/icon_arrow_p.svg) no-repeat center right 0.4em/12px 20px #fff;
}

/*
//フッター
------------------------------------------------------------
*/
#footer {
  padding: 2em 0;
}
@media screen and (max-width: 767px) {
  #footer {
    padding: 1.5em 0;
  }
}

.footer_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 1em;
}
@media screen and (max-width: 767px) {
  .footer_top {
    margin: 0 0 0.5em;
  }
}
.footer_top .footer_ttl {
  width: 60%;
}
.footer_top .flat7 {
  width: 35%;
}
.footer_tel {
  text-align: center;
  margin: 0 0 2em;
}
@media screen and (max-width: 767px) {
  .footer_tel {
    margin: 0 0 1em;
  }
}
.footer_tel_num {
  display: inline-block;
  color: #ff9800;
  font-size: 3.12em;
  font-weight: 700;
  line-height: 1.1;
  padding: 0 0 0 41px;
  background: url(../images/icon_tel_o.svg) no-repeat center left/36px 42px;
}
@media screen and (max-width: 767px) {
  .footer_tel_num {
    font-size: 1.75em;
    padding: 0 0 0 20px;
    background-size: 18px 21px;
    margin: 0 0 0.2em;
  }
}
.footer_tel_num a {
  color: #ff9800;
}
.footer_tel_time {
  font-size: 1.75em;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .footer_tel_time {
    font-size: 0.83em;
  }
}
.footer_tel_time span {
  font-size: 0.75em;
}
.footer_tel_time span.box {
  display: inline-block;
  background: #ff9800;
  color: #fff;
  padding: 0 0.5em;
  margin: 0 0.5em 0 0;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .footer_tel_time span.box {
    border-radius: 2px;
  }
}
.footer_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer_bottom a.button.pink {
  width: 45%;
  background: url(../images/icon_arrow_w.svg) no-repeat center right 0.5em/22px 20px #ff6c87;
}
@media screen and (max-width: 767px) {
  .footer_bottom a.button.pink {
    font-size: 0.81em;
    padding: 1em 1em 1em 0.5em;
    border: none;
    background: url(../images/icon_arrow_w.svg) no-repeat center right 0.5em/11px 10px #ff6c87;
  }
}
@media screen and (min-width: 768px) {
  .footer_bottom a.button.pink:hover {
    background: url(../images/icon_arrow_p.svg) no-repeat center right 0.5em/22px 20px #fff;
  }
}

.copy {
  padding: 0.5em 0;
  background: #e2e3e3;
  color: #727171;
  font-size: 1.62em;
  text-align: center;
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.15) inset;
          box-shadow: 0 5px 5px rgba(0, 0, 0, 0.15) inset;
}
@media screen and (max-width: 767px) {
  .copy {
    font-size: 0.87em;
    padding: 1em 0 1.5em;
    margin: 0 0 57px;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15) inset;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15) inset;
  }
  .copy.bottom {
    margin: 0;
  }
}

.list_fixed_menu {
  display: none;
}
@media screen and (max-width: 767px) {
  .list_fixed_menu {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: fixed;
    bottom: 0;
    z-index: 2;
    background: #fff;
  }
  .list_fixed_menu li {
    width: 50%;
  }
  .list_fixed_menu li a {
    display: block;
  }
}

/*
10：装飾
------------------------------------------------------------
*/
.bg_gray {
  background: #ccc;
}
.bg_white {
  background: #fff;
}
.bg_black {
  background: #000;
}

.txt_clr_gray {
  color: #ccc;
}
.txt_clr_white {
  color: #fff;
}
.txt_clr_black {
  color: #000;
}

/*
11:ボタン系
------------------------------------------------------------
*/
#page_top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 2;
  width: 46px;
  height: 48px;
  background: url(../images/page_top.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  #page_top {
    width: 35px;
    height: 36px;
    bottom: 21vw;
    right: 10px;
  }
}

a.button {
  display: block;
  background: #000;
  color: #fff;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  padding: 0.4em 0.8em 0.4em 0.4em;
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  a.button {
    font-size: 1em;
    max-width: 200px;
    border-radius: 5px;
    -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
            box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
  }
}
a.button.pink {
  background: url(../images/icon_arrow_w.svg) no-repeat center right 1em/22px 20px #ff6c87;
  border: 5px solid #ff6c87;
  width: 60%;
  position: relative;
}
@media screen and (max-width: 767px) {
  a.button.pink {
    background: url(../images/icon_arrow_w.svg) no-repeat center right 0.5em/11px 10px #ff6c87;
  }
}
@media screen and (min-width: 768px) {
  a.button.pink:hover {
    color: #ff6c87;
    background: url(../images/icon_arrow_p.svg) no-repeat center right 1em/22px 20px #fff;
  }
}
a.button.yellow {
  color: #4682d2;
  background: url(../images/icon_arrow_b.svg) no-repeat center right 1em/22px 20px #ffff00;
  border: 5px solid #ffff00;
  width: 60%;
  position: relative;
}
@media screen and (max-width: 767px) {
  a.button.yellow {
    width: 90%;
    font-size: 1.25em;
    line-height: 1.2;
    background: url(../images/icon_arrow_b.svg) no-repeat center right 0.5em/11px 10px #ffff00;
  }
}
@media screen and (min-width: 768px) {
  a.button.yellow:hover {
    color: #fff;
    background: url(../images/icon_arrow_w.svg) no-repeat center right 1em/22px 20px #4682d2;
    border-color: #4682d2;
  }
}
a.button.yellow.pink {
  color: #ff3e98;
  background: url(../images/icon_arrow_p.svg) no-repeat center right 1em/22px 20px #ffff00;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 767px) {
  a.button.yellow.pink {
    background: url(../images/icon_arrow_p.svg) no-repeat center right 0.5em/11px 10px #ffff00;
  }
}
@media screen and (min-width: 768px) {
  a.button.yellow.pink:hover {
    color: #fff;
    background: url(../images/icon_arrow_w.svg) no-repeat center right 1em/22px 20px #ff3e98;
    border-color: #ff3e98;
  }
}
a.button.orange {
  color: #ff7606;
  background: url(../images/icon_arrow_o.svg) no-repeat center right 1em/22px 20px #ffff00;
  border: 5px solid #ffff00;
  width: 60%;
  position: relative;
}
@media screen and (max-width: 767px) {
  a.button.orange {
    width: 90%;
    font-size: 1.25em;
    line-height: 1.2;
    background: url(../images/icon_arrow_o.svg) no-repeat center right 0.5em/11px 10px #ffff00;
  }
}
@media screen and (min-width: 768px) {
  a.button.orange:hover {
    color: #fff;
    background: url(../images/icon_arrow_w.svg) no-repeat center right 1em/22px 20px #ff9800;
    border-color: #ff9800;
  }
}
a.button.line {
  width: 53%;
  background: url(../images/icon_arrow_w.svg) no-repeat center right 0.3em/22px 20px #00b900;
}
@media screen and (min-width: 768px) {
  a.button.line {
    border: 5px solid #00b900;
  }
  a.button.line:hover {
    color: #00b900;
    background: url(../images/icon_arrow_g.svg) no-repeat center right 0.3em/22px 20px #fff;
  }
}
@media screen and (max-width: 767px) {
  a.button.line {
    font-size: 0.81em;
    padding: 1em 1em 1em 0.5em;
    background-size: 11px 10px;
  }
}

/*
13:コンタクトフォーム
------------------------------------------------------------
*/
.table_contactform {
  margin: 0 0 1em;
  width: 100%;
}
.table_contactform tr {
  font-size: 1.87em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .table_contactform tr {
    font-size: 1em;
  }
}
.table_contactform tr th {
  display: block;
  width: 100%;
  font-weight: 700;
  text-align: left;
  padding: 0 0 0.3em;
}
.table_contactform tr th span {
  display: inline-block;
  color: #fff;
  font-size: 0.7em;
  padding: 0 0.5em;
  margin: 0 0 0 0.5em;
  border-radius: 2px;
  background: #ff6c87;
}
.table_contactform tr td {
  display: block;
  width: 100%;
  padding: 0 0 1em;
  margin: 0 0 1em;
  border-bottom: 2px solid #b5b5b6;
}

.contact_note {
  color: #444;
  font-size: 0.8em;
  margin: 0.25em 0 0;
}

label {
  display: inline-block;
  margin: 5px 10px 5px 0;
}

input, textarea, select {
  width: 100%;
  padding: 8px;
  border-radius: 5px;
  border: 2px solid #ccc;
  line-height: 1.3;
}

input[type=checkbox], input[type=radio] {
  width: auto;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  margin: 0 10px 0 0;
}
@media screen and (max-width: 767px) {
  input[type=checkbox], input[type=radio] {
    width: 16px;
    height: 16px;
    margin: 0 5px 0 0;
  }
}

textarea {
  height: 200px;
}

.scrollbox {
  width: 100%;
  height: 200px;
  padding: 1em;
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 5px;
  font-size: 0.6em;
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  .scrollbox {
    font-size: 1em;
  }
}

.submit_box {
  text-align: center;
}

.submit, .back {
  max-width: 340px;
  width: 45%;
  margin: 0 2%;
  padding: 0.8em;
  display: inline-block;
  font-size: 2em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
  background: url(../images/icon_arrow_w.svg) no-repeat center right 0.5em/22px 20px #ff6c87;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .submit, .back {
    font-size: 1em;
    padding: 1em;
    background: url(../images/icon_arrow_w.svg) no-repeat center right 0.5em/11px 10px #ff6c87;
    -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
            box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
  }
}

.back {
  background: #666;
}

.submit:hover, .back:hover {
  opacity: 0.8;
}

.section_mail {
  padding: 3em 0;
  background: url(../images/bg_05.png);
}
@media screen and (max-width: 767px) {
  .section_mail {
    padding: 2em 0;
    background-size: 24px;
  }
}

.contact_box {
  padding: 2em;
  margin: 0 0 2em;
  font-size: 1.25em;
  text-align: center;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .contact_box {
    padding: 1em;
    font-size: 1em;
  }
}

.error_messe {
  color: #d80000;
}

.txt_check {
  font-size: 1.12em;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 1em;
}

.table_contactcheck {
  word-break: break-all;
}
.table_contactcheck th {
  width: 10em;
  color: #ff3e98;
  font-weight: 700;
  text-align: left;
  vertical-align: top;
  padding: 0.5em;
}
@media screen and (max-width: 767px) {
  .table_contactcheck th {
    display: block;
    width: 100%;
    padding: 0;
  }
}
.table_contactcheck td {
  text-align: left;
  vertical-align: top;
  padding: 0.5em;
}
@media screen and (max-width: 767px) {
  .table_contactcheck td {
    display: block;
    width: 100%;
    padding: 0 0 1em;
  }
}

@media screen and (max-width: 767px) {
  .txt_thanks {
    text-align: left;
  }
}

/*
-------------------------------------------*/
.kv {
  background: url(../images/bg_01.png);
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1) inset;
          box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1) inset;
}
@media screen and (max-width: 767px) {
  .kv {
    background-size: 24px;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) inset;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) inset;
  }
}
.kv .inner {
  position: relative;
}
.kv_txt_01 {
  width: 100%;
  position: absolute;
  top: 13%;
  left: 0;
  z-index: 1;
}
.kv_txt_02 {
  width: 100%;
  position: absolute;
  top: 26%;
  left: 0;
  z-index: 1;
}
.kv_txt_03 {
  width: 100%;
  position: absolute;
  top: 46%;
  left: 0;
  z-index: 1;
}
.kv_img {
  margin: 0 -15px;
}
@media screen and (max-width: 767px) {
  .kv_img {
    margin: 0 -7%;
  }
}

.section_01 {
  background: #ffc3bc;
  padding: 2em 0 2.5em;
}
@media screen and (max-width: 767px) {
  .section_01 {
    padding: 1em 0 1.2em;
  }
}
.section_01 .inner {
  max-width: 600px;
  position: relative;
}
.section_01 .txt_01 {
  color: #ff3e98;
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.1em;
}
@media screen and (max-width: 767px) {
  .section_01 .txt_01 {
    font-size: 1.25em;
  }
}
.section_01 .list_check {
  margin: 0 auto;
  padding: 0 0 0 2em;
}
@media screen and (max-width: 767px) {
  .section_01 .list_check {
    max-width: 280px;
    padding: 0;
  }
}
.section_01 .list_check li {
  font-size: 1.87em;
  font-weight: 700;
  padding: 0 0 0 45px;
  background: url(../images/icon_check.svg) no-repeat center left/38px 38px;
}
@media screen and (max-width: 767px) {
  .section_01 .list_check li {
    font-size: 1em;
    padding: 0 0 0 22px;
    background: url(../images/icon_check.svg) no-repeat center left/19px 19px;
  }
}

.section_02 {
  background: url(../images/img_01.png) no-repeat right top 140px #ffc3bc;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section_02 {
    background-position: right top 65px;
    background-size: 141px;
  }
}
.section_02 .txt_wrap {
  background: #ffff00;
  color: #ff3e98;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  padding: 1em 0;
  margin: 0 0 1.5em;
  position: relative;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .section_02 .txt_wrap {
    font-size: 1.25em;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
}
.section_02 .txt_wrap::before {
  content: "";
  width: 40px;
  height: 40px;
  background: url(../images/tri_y.png) no-repeat center/contain;
  position: absolute;
  bottom: -39px;
  left: 0;
  right: 0;
  z-index: 1;
  margin: 0 auto;
  -webkit-filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 767px) {
  .section_02 .txt_wrap::before {
    width: 20px;
    height: 20px;
    bottom: -19px;
    -webkit-filter: drop-shadow(0 5px 2px rgba(0, 0, 0, 0.2));
            filter: drop-shadow(0 5px 2px rgba(0, 0, 0, 0.2));
  }
}
.section_02_box {
  position: relative;
}
.section_02_box_right {
  width: 50%;
  position: absolute;
  right: 2em;
  bottom: 2em;
}
@media screen and (max-width: 767px) {
  .section_02_box_right {
    right: 4%;
    bottom: 7%;
  }
}
.section_02_box .list_section_02 {
  position: relative;
}
.section_02_box .list_section_02 li {
  color: #faee00;
  font-size: 2.37em;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 0.3em;
}
@media screen and (max-width: 767px) {
  .section_02_box .list_section_02 li {
    font-size: 1.12em;
  }
}

.section_03 {
  background: url(../images/bg_02.png) repeat bottom;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section_03 {
    background-size: 24px;
  }
}
.section_03::before {
  content: "";
  width: 100%;
  height: 50px;
  background: url(../images/bg_01.png) repeat bottom;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .section_03::before {
    height: 25px;
    background-size: 24px;
  }
}
.section_03 .txt_wrap {
  background: #ffff00;
  color: #ff3e98;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  padding: 1em 0;
  position: relative;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .section_03 .txt_wrap {
    font-size: 1.25em;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
}
.section_03 .txt_wrap::before {
  content: "";
  width: 40px;
  height: 40px;
  background: url(../images/tri_y.png) no-repeat center/contain;
  position: absolute;
  bottom: -39px;
  left: 0;
  right: 0;
  z-index: 1;
  margin: 0 auto;
  -webkit-filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 767px) {
  .section_03 .txt_wrap::before {
    width: 20px;
    height: 20px;
    bottom: -19px;
    -webkit-filter: drop-shadow(0 5px 2px rgba(0, 0, 0, 0.2));
            filter: drop-shadow(0 5px 2px rgba(0, 0, 0, 0.2));
  }
}
@media screen and (max-width: 767px) {
  .section_03 .img_01 {
    margin: 0 -15px;
  }
}

.section_04 {
  background: #ff6c87;
  padding: 1em 0;
  color: #fff;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section_04 {
    font-size: 1.25em;
  }
}
.section_04 .txt_01 span {
  color: #ffff00;
  font-size: 1.17em;
}

.section_contact {
  padding: 3em 0 11em;
  background: url(../images/img_02.png) no-repeat top right, url(../images/bg_01.png) repeat top;
}
@media screen and (max-width: 767px) {
  .section_contact {
    padding: 1.5em 0 5.5em;
    background-size: 175px, 24px;
  }
}
.section_contact .inner {
  position: relative;
}
.section_contact .inner::before {
  content: "";
  width: 500px;
  height: 352px;
  background: url(../images/img_p_03.png) no-repeat bottom right/contain;
  position: absolute;
  bottom: -11em;
  right: 0;
}
@media screen and (max-width: 767px) {
  .section_contact .inner::before {
    width: 65%;
    height: 160px;
    bottom: -5.5em;
    right: 0;
  }
}
.section_contact .txt_01 {
  color: #4682d2;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 0.5em;
}
@media screen and (max-width: 767px) {
  .section_contact .txt_01 {
    font-size: 1.25em;
  }
}
.section_contact .txt_wrap {
  background: #ff9800;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  position: relative;
}
@media screen and (max-width: 767px) {
  .section_contact .txt_wrap {
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
}
.section_contact .txt_wrap::before {
  content: "";
  width: 40px;
  height: 40px;
  background: url(../images/tri_o.png) no-repeat center/contain;
  position: absolute;
  bottom: -39px;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 767px) {
  .section_contact .txt_wrap::before {
    width: 20px;
    height: 20px;
    bottom: -19px;
    -webkit-filter: drop-shadow(0 5px 2px rgba(0, 0, 0, 0.2));
            filter: drop-shadow(0 5px 2px rgba(0, 0, 0, 0.2));
  }
}
@media screen and (max-width: 767px) {
  .section_contact a.button {
    width: 68%;
    max-width: 300px;
  }
}
.section_contact a.button:not(:last-child) {
  margin-bottom: 0.5em;
}

.section_contact_02 {
  padding: 0 0 3em;
  background: url(../images/img_01.png) no-repeat top 184px right, url(../images/bg_04.png) repeat-x top, url(../images/bg_01.png);
}
@media screen and (max-width: 767px) {
  .section_contact_02 {
    padding: 0 0 1.5em;
    background-position: top 85px right, center, center;
    background-size: 141px, 225px, 24px;
  }
}
.section_contact_02 .inner {
  position: relative;
}
.section_contact_02 .inner::before {
  content: "";
  width: 286px;
  height: 292px;
  background: url(../images/img_p_08.png) no-repeat bottom right/contain;
  position: absolute;
  bottom: -3em;
  left: 0;
}
@media screen and (max-width: 767px) {
  .section_contact_02 .inner::before {
    width: 33%;
    height: 180px;
    bottom: -1.5em;
  }
}
.section_contact_02 .txt_wrap {
  background: #ffff00;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  position: relative;
}
@media screen and (max-width: 767px) {
  .section_contact_02 .txt_wrap {
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
}
.section_contact_02 .txt_wrap::before {
  content: "";
  width: 40px;
  height: 40px;
  background: url(../images/tri_y.png) no-repeat center/contain;
  position: absolute;
  bottom: -39px;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 767px) {
  .section_contact_02 .txt_wrap::before {
    width: 20px;
    height: 20px;
    bottom: -19px;
    -webkit-filter: drop-shadow(0 5px 2px rgba(0, 0, 0, 0.2));
            filter: drop-shadow(0 5px 2px rgba(0, 0, 0, 0.2));
  }
}
.section_contact_02 .txt_01 {
  color: #ff3e98;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  padding: 1em 0;
  margin: 0 0 1.5em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section_contact_02 .txt_01 {
    font-size: 1.25em;
    margin: 0 0 1.2em;
  }
}
.section_contact_02 .txt_01 span {
  color: #000;
  font-size: 0.75em;
}
.section_contact_02_wrap {
  padding: 2em;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .section_contact_02_wrap {
    padding: 10px;
  }
}
.section_contact_02 .txt_02 {
  color: #ff3e98;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 0.5em 18%;
}
@media screen and (max-width: 767px) {
  .section_contact_02 .txt_02 {
    font-size: 1.25em;
  }
}
.section_contact_02 .contact_tel {
  width: 60%;
  margin: 0 0 15px auto;
}
@media screen and (max-width: 767px) {
  .section_contact_02 .contact_tel {
    width: 68%;
    margin: 0 0 0 auto;
  }
}
.section_contact_02 .contact_tel_num {
  color: #ff3e98;
  font-size: 3.12em;
  font-weight: 700;
  line-height: 1;
  padding: 0 0 0 41px;
  margin: 0 0 0.2em auto;
  background: url(../images/icon_tel_p.svg) no-repeat left/36px 42px;
}
@media screen and (max-width: 767px) {
  .section_contact_02 .contact_tel_num {
    font-size: 1.7em;
    padding: 0 0 0 22px;
    background-size: 18px 21px;
  }
}
.section_contact_02 .contact_tel_num a {
  color: #ff3e98;
}
.section_contact_02 .contact_tel_time {
  color: #ff3e98;
  font-size: 1.75em;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 1em auto;
}
@media screen and (max-width: 767px) {
  .section_contact_02 .contact_tel_time {
    font-size: 0.83em;
  }
}
.section_contact_02 .contact_tel_time span {
  font-size: 0.83em;
}
.section_contact_02 .contact_tel_time span.box {
  display: inline-block;
  background: #ff3e98;
  color: #fff;
  padding: 0 0.5em;
  margin: 0 0.5em 0 0;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .section_contact_02 .contact_tel_time span.box {
    border-radius: 2px;
  }
}
.section_contact_02 a.button {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 767px) {
  .section_contact_02 a.button {
    width: 68%;
    max-width: 300px;
  }
}
.section_contact_02 a.button:not(:last-child) {
  margin-bottom: 0.5em;
}

.section_05 {
  padding: 3em 0 0;
  background: url(../images/bg_03.png);
}
@media screen and (max-width: 767px) {
  .section_05 {
    padding: 2em 0 0;
    background-size: 24px;
  }
}
.section_05_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.section_05 .txt_01 {
  width: 68%;
  margin: 0 0 8% -14%;
}
.section_05 .txt_02 {
  width: 46%;
}
.section_05 .list_point {
  margin: 0 0 4em;
}
@media screen and (max-width: 767px) {
  .section_05 .list_point {
    margin: 0 0 2em;
  }
}
.section_05 .list_point li {
  background: #fff;
  padding: 2em;
  margin: 0 0 3em;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section_05 .list_point li {
    padding: 1em;
    margin: 0 0 1.5em;
  }
}
.section_05 .list_point li:last-child {
  margin: 0;
}
.section_05 .list_point_ttl {
  color: #ff6c87;
  font-size: 2.25em;
  font-weight: 700;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 0.8em;
  padding: 0 0 0 150px;
  min-height: 120px;
}
@media screen and (max-width: 767px) {
  .section_05 .list_point_ttl {
    font-size: 1em;
    padding: 0 0 0 20%;
    min-height: 60px;
  }
}
.section_05 .list_point_ttl .num {
  position: absolute;
  top: -3px;
  left: 30px;
}
@media screen and (max-width: 767px) {
  .section_05 .list_point_ttl .num {
    width: 15%;
    top: -2px;
    left: 15px;
  }
}
.section_05 .list_point_txt {
  font-size: 1.87em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .section_05 .list_point_txt {
    font-size: 0.93em;
  }
}
.section_05 .txt_wrap {
  background: #ff6c87;
  padding: 1em 0;
  color: #fff;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section_05 .txt_wrap {
    font-size: 1.25em;
  }
}
.section_05 .txt_03 {
  background: url(../images/img_04.png) no-repeat top 20px right 42%;
}
@media screen and (max-width: 767px) {
  .section_05 .txt_03 {
    background-position: top right 42%;
    background-size: 19%;
  }
}
.section_05 .txt_03 .img {
  display: inline-block;
  vertical-align: bottom;
  width: 204px;
  margin: 0 20px 0 0;
}
@media screen and (max-width: 767px) {
  .section_05 .txt_03 .img {
    width: 20%;
    margin: 0 3% 0 0;
  }
}
.section_05 .txt_03 .txt_l {
  font-size: 1.17em;
}
.section_05 .txt_03 .line {
  display: inline-block;
  margin: 0 5px 0 0;
  padding: 0 0 10px;
  background: url(../images/img_03.png) no-repeat bottom left/contain;
}
@media screen and (max-width: 767px) {
  .section_05 .txt_03 .line {
    padding: 0 0 5px;
  }
}

.section_06 .car {
  background: url(../images/bg_01.png);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section_06 .car {
    background-size: 24px;
  }
}
.section_06 .car .inner {
  position: relative;
}
.section_06 .car .txt_01 {
  width: 59%;
  position: absolute;
  top: 5.5%;
  left: 19%;
}
.section_06 .img_01, .section_06 .img_02 {
  margin: 0 -15px;
}
.section_06 .img_02 {
  padding: 1em 0;
}
.section_06 .car_used {
  background: url(../images/bg_02.png);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section_06 .car_used {
    background-size: 24px;
  }
}
.section_06 .car_used .inner {
  padding: 0;
}
.section_06 .car_used .car_02 {
  position: relative;
}
.section_06 .car_used .txt_01 {
  width: 62.4%;
  position: absolute;
  top: 24%;
  left: 22%;
}
.section_06 .car_used .car_03 {
  position: relative;
}
.section_06 .car_used .txt_02 {
  width: 58.6%;
  position: absolute;
  top: 5%;
  left: 22%;
}
.section_06 .plan {
  padding: 3em 0 1em;
  background: url(../images/bg_01.png);
}
@media screen and (max-width: 767px) {
  .section_06 .plan {
    padding: 1.5em 0 0.5em;
    background-size: 24px;
  }
}
.section_06 .list_plan li {
  position: relative;
  margin: 0 0 6em;
}
@media screen and (max-width: 767px) {
  .section_06 .list_plan li {
    margin: 0 0 3em;
  }
}
.section_06 .list_plan a.button {
  max-width: 400px;
  border: 4px solid #ff6c87;
  background-color: #ffff00;
  background-repeat: no-repeat;
  background-position: center right 0.5em;
  background-size: 22px 20px;
  position: absolute;
  bottom: -42px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .section_06 .list_plan a.button {
    width: 80%;
    border-width: 2px;
    background-size: 11px 10px;
    bottom: -20px;
  }
}
@media screen and (min-width: 768px) {
  .section_06 .list_plan a.button:hover {
    color: #fff;
  }
}
.section_06 .list_plan a.button_plan_01 {
  border-color: #ff6c87;
  color: #ff6c87;
  background-image: url(../images/icon_arrow_p.svg);
}
@media screen and (min-width: 768px) {
  .section_06 .list_plan a.button_plan_01:hover {
    background-color: #ff6c87;
    background-image: url(../images/icon_arrow_w.svg);
  }
}
.section_06 .list_plan a.button_plan_02 {
  border-color: #4682d2;
  color: #4682d2;
  background-image: url(../images/icon_arrow_b.svg);
}
@media screen and (min-width: 768px) {
  .section_06 .list_plan a.button_plan_02:hover {
    background-color: #4682d2;
    background-image: url(../images/icon_arrow_w.svg);
  }
}
.section_06 .list_plan a.button_plan_03 {
  border-color: #ff9800;
  color: #ff7606;
  background-image: url(../images/icon_arrow_o.svg);
}
@media screen and (min-width: 768px) {
  .section_06 .list_plan a.button_plan_03:hover {
    background-color: #ff9800;
    background-image: url(../images/icon_arrow_w.svg);
  }
}

.section_07 {
  padding: 0 0 3em;
  background: url(../images/bg_02.png);
}
@media screen and (max-width: 767px) {
  .section_07 {
    padding: 0 0 2em;
    background-size: 24px;
  }
}
.section_07 .txt_wrap {
  background: #ff6c87;
  margin: 0 0 4em;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  position: relative;
}
@media screen and (max-width: 767px) {
  .section_07 .txt_wrap {
    margin: 0 0 2em;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
}
.section_07 .txt_wrap::before {
  content: "";
  width: 40px;
  height: 40px;
  background: url(../images/tri_p.png) no-repeat center/contain;
  position: absolute;
  bottom: -39px;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 767px) {
  .section_07 .txt_wrap::before {
    width: 20px;
    height: 20px;
    bottom: -19px;
    -webkit-filter: drop-shadow(0 5px 2px rgba(0, 0, 0, 0.2));
            filter: drop-shadow(0 5px 2px rgba(0, 0, 0, 0.2));
  }
}
.section_07 .txt_01 {
  color: #fff;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  padding: 1em 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section_07 .txt_01 {
    font-size: 1.25em;
  }
}
.section_07_wrap {
  padding: 2em 0 3em;
  background: url(../images/img_p_05.png) no-repeat right bottom/contain;
}
@media screen and (max-width: 767px) {
  .section_07_wrap {
    padding: 1em 0 1.5em;
    background-size: 38%;
  }
}
.section_07 .txt_02 {
  color: #4682d2;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.4;
  padding: 2em 0 1em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section_07 .txt_02 {
    font-size: 1.25em;
  }
}
.section_07 .txt_02::before {
  content: "";
  width: 260px;
  height: 4px;
  background: #4682d2;
  position: absolute;
  top: 35px;
  left: 40px;
  -webkit-transform: rotate(10deg);
      -ms-transform: rotate(10deg);
          transform: rotate(10deg);
}
@media screen and (max-width: 767px) {
  .section_07 .txt_02::before {
    width: 130px;
    height: 2px;
    top: 12px;
    left: 20px;
  }
}
.section_07 .txt_02::after {
  content: "";
  width: 200px;
  height: 4px;
  background: #4682d2;
  position: absolute;
  bottom: 15px;
  left: 200px;
  -webkit-transform: rotate(-10deg);
      -ms-transform: rotate(-10deg);
          transform: rotate(-10deg);
}
@media screen and (max-width: 767px) {
  .section_07 .txt_02::after {
    width: 100px;
    height: 2px;
    bottom: 7px;
    left: 100px;
  }
}
.section_07 .txt_02b {
  color: #4682d2;
  font-size: 2.3em;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin: 0 0 1em;
}
@media screen and (max-width: 767px) {
  .section_07 .txt_02b {
    font-size: 1.5em;
  }
}
.section_07 .ryu_bnr {
  text-align: center;
}

.section_08 {
  padding: 0 0 5em;
  background: #f8c200;
}
@media screen and (max-width: 767px) {
  .section_08 {
    padding: 0 0 3em;
  }
}
.section_08 .txt_wrap {
  background: #ff6c87;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  position: relative;
}
@media screen and (max-width: 767px) {
  .section_08 .txt_wrap {
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
}
.section_08 .txt_wrap::before {
  content: "";
  width: 40px;
  height: 40px;
  background: url(../images/tri_p.png) no-repeat center/contain;
  position: absolute;
  bottom: -39px;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 767px) {
  .section_08 .txt_wrap::before {
    width: 20px;
    height: 20px;
    bottom: -19px;
    -webkit-filter: drop-shadow(0 5px 2px rgba(0, 0, 0, 0.2));
            filter: drop-shadow(0 5px 2px rgba(0, 0, 0, 0.2));
  }
}
.section_08 .txt_01 {
  color: #fff;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  padding: 1em 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section_08 .txt_01 {
    font-size: 1.25em;
  }
}
.section_08 .txt_wrap_02 {
  padding: 3.5em 0 2em;
  margin: 0 0 4em;
  background: url(../images/bg_01.png);
}
@media screen and (max-width: 767px) {
  .section_08 .txt_wrap_02 {
    padding: 2em 0 1.5em;
    margin: 0 0 2em;
    background-size: 24px;
  }
}
.section_08 .txt_02 {
  color: #ff3e98;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 0 44%;
}
@media screen and (max-width: 767px) {
  .section_08 .txt_02 {
    font-size: 1.25em;
  }
}
.section_08 .list_voice {
  position: relative;
}
.section_08 .list_voice::before {
  content: "";
  width: 334px;
  height: 282px;
  background: url(../images/img_p_06.png) no-repeat bottom/contain;
  position: absolute;
  top: -282px;
  left: -15px;
}
@media screen and (max-width: 767px) {
  .section_08 .list_voice::before {
    width: 48%;
    height: 143px;
    top: -143px;
  }
}
.section_08 .list_voice li {
  background: #fff;
  padding: 4em 2em 2em;
  margin: 0 0 4em;
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  position: relative;
}
@media screen and (max-width: 767px) {
  .section_08 .list_voice li {
    padding: 2em 1em 1em;
    margin: 0 0 2em;
    border-radius: 5px;
    -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
            box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  }
}
.section_08 .list_voice li:last-child {
  margin: 0;
}
.section_08 .list_voice li::before {
  content: "";
  width: 52px;
  height: 74px;
  background: url(../images/img_05.png) no-repeat center/contain;
  position: absolute;
  top: -25px;
  right: 5px;
}
@media screen and (max-width: 767px) {
  .section_08 .list_voice li::before {
    width: 26px;
    height: 37px;
    top: -12px;
  }
}
.section_08 .list_voice_num {
  position: absolute;
  top: -35px;
  left: -20px;
}
@media screen and (max-width: 767px) {
  .section_08 .list_voice_num {
    width: 128px;
    top: -20px;
    left: -10px;
  }
}
.section_08 .list_voice_ttl {
  font-size: 2.37em;
  font-weight: 700;
  line-height: 1.4;
  padding: 0 0 0.5em;
  margin: 0 0 0.5em;
  border-bottom: 3px solid #4682d2;
}
@media screen and (max-width: 767px) {
  .section_08 .list_voice_ttl {
    font-size: 1.12em;
    border-bottom: 2px solid #4682d2;
  }
}
.section_08 .list_voice_ttl span {
  font-size: 0.7em;
}
.section_08 .list_voice_txt {
  font-size: 1.87em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .section_08 .list_voice_txt {
    font-size: 0.93em;
  }
}

.section_09 {
  background: url(../images/bg_03.png);
  padding: 0 0 2em;
}
@media screen and (max-width: 767px) {
  .section_09 {
    background-size: 24px;
  }
}
.section_09 .txt_wrap {
  background: #ff6c87;
  color: #fff;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  padding: 1em 0;
  margin: 0 0 1.5em;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .section_09 .txt_wrap {
    font-size: 1.25em;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
}
.section_09 .txt_wrap::before {
  content: "";
  width: 40px;
  height: 40px;
  background: url(../images/tri_p.png) no-repeat center/contain;
  position: absolute;
  bottom: -39px;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 767px) {
  .section_09 .txt_wrap::before {
    width: 20px;
    height: 20px;
    bottom: -19px;
    -webkit-filter: drop-shadow(0 5px 2px rgba(0, 0, 0, 0.2));
            filter: drop-shadow(0 5px 2px rgba(0, 0, 0, 0.2));
  }
}
.section_09 .txt_wrap .inner {
  position: relative;
}
.section_09 .txt_wrap .inner::before {
  content: "";
  width: 318px;
  height: 290px;
  background: url(../images/img_p_07.png) no-repeat bottom/contain;
  position: absolute;
  bottom: -1em;
  right: 0;
}
@media screen and (max-width: 767px) {
  .section_09 .txt_wrap .inner::before {
    width: 40%;
    height: 163px;
  }
}
.section_09 .txt_wrap .txt_01 {
  margin: 0 20% 0 0;
  background: url(../images/img_06.png) no-repeat left/contain;
}
@media screen and (max-width: 767px) {
  .section_09 .txt_wrap .txt_01 {
    background-size: 20%;
  }
}
.section_09 .list_faq {
  background: #fff;
  padding: 0 1em;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .section_09 .list_faq {
    border-radius: 10px;
  }
}
.section_09 .list_faq li {
  padding: 2em 1em;
  border-bottom: 4px dotted #b5b5b6;
}
@media screen and (max-width: 767px) {
  .section_09 .list_faq li {
    padding: 1em 0.5em;
    border-bottom: 2px dotted #b5b5b6;
  }
}
.section_09 .list_faq li:last-child {
  margin: 0;
  border: none;
}
.section_09 .list_faq_q {
  color: #4682d2;
  font-size: 1.87em;
  font-weight: 700;
  line-height: 1.4;
  padding: 10px 0 0 60px;
  margin: 0 0 0.5em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section_09 .list_faq_q {
    font-size: 0.93em;
    padding: 5px 0 0 30px;
    margin: 0 0 0.5em;
  }
}
.section_09 .list_faq_q::before {
  content: "Q";
  color: #4682d2;
  font-size: 1.6em;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
}
.section_09 .list_faq_a {
  font-size: 1.87em;
  line-height: 1.4;
  padding: 0 0 0 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section_09 .list_faq_a {
    font-size: 0.93em;
    padding: 0 0 0 30px;
  }
}
.section_09 .list_faq_a::before {
  content: "A";
  color: #ff6c87;
  font-size: 1.33em;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 5px;
}
@media screen and (max-width: 767px) {
  .section_09 .list_faq_a::before {
    left: 2px;
  }
}

.section_10 {
  padding: 0 0 8em;
  background: url(../images/bg_04.png) repeat top, url(../images/bg_02.png);
}
@media screen and (max-width: 767px) {
  .section_10 {
    padding: 0 0 4em;
    background-size: 225px, 24px;
  }
}
.section_10 .txt_wrap {
  background: #ff6c87;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  position: relative;
}
@media screen and (max-width: 767px) {
  .section_10 .txt_wrap {
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
}
.section_10 .txt_wrap::before {
  content: "";
  width: 40px;
  height: 40px;
  background: url(../images/tri_p.png) no-repeat center/contain;
  position: absolute;
  bottom: -39px;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 767px) {
  .section_10 .txt_wrap::before {
    width: 20px;
    height: 20px;
    bottom: -19px;
    -webkit-filter: drop-shadow(0 5px 2px rgba(0, 0, 0, 0.2));
            filter: drop-shadow(0 5px 2px rgba(0, 0, 0, 0.2));
  }
}
.section_10 .txt_01 {
  color: #fff;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  padding: 1em 0;
  margin: 0 0 1.5em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section_10 .txt_01 {
    font-size: 1.25em;
  }
}
.section_10 .txt_box {
  background: #fff;
  padding: 1.5em;
  margin: 0 0 3em;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .section_10 .txt_box {
    padding: 1em;
    margin: 0 0 1.5em;
  }
}
.section_10 .txt_02 {
  font-size: 1.87em;
  line-height: 1.5;
  margin: 0 0 2em;
}
@media screen and (max-width: 767px) {
  .section_10 .txt_02 {
    font-size: 0.93em;
  }
}
.section_10 .list_shop_info li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
  font-size: 1.75em;
  line-height: 1.5;
  border-bottom: 4px dotted #b5b5b6;
}
@media screen and (max-width: 767px) {
  .section_10 .list_shop_info li {
    font-size: 0.93em;
    border-bottom: 2px dotted #b5b5b6;
  }
}
.section_10 .list_shop_info li:last-child {
  border: none;
}
.section_10 .list_shop_info_left {
  width: 7em;
  text-align: center;
}
.section_10 .list_shop_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 5%;
}
.section_10 .list_shop_img li:first-child {
  width: 100%;
  margin: 0 0 2%;
}
.section_10 .list_shop_img li:nth-child(2) {
  width: 49%;
  margin: 0 2% 0 0;
}
.section_10 .list_shop_img li:nth-child(3) {
  width: 49%;
}
.section_10 .map {
  position: relative;
}
.section_10 .map::before {
  content: "";
  display: block;
  padding: 50% 0 0;
}
@media screen and (max-width: 767px) {
  .section_10 .map::before {
    padding: 66% 0 0;
  }
}
.section_10 .map > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section_11 {
  padding: 0 0 3em;
  margin: -2.5em 0 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section_11 {
    padding: 0;
    margin: -5.5% 0 0;
  }
}
.section_11 a.line_banner {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .section_11 a.line_banner {
    margin: 0 -15px;
  }
}
@media screen and (min-width: 768px) {
  .section_11 a.line_banner:hover {
    opacity: 0.8;
  }
}

.section_form {
  background: url(../images/bg_05.png);
  padding: 0 0 3em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section_form {
    background-size: 24px;
    padding: 0 0 2em;
  }
}
.section_form .txt_wrap {
  background: #ffff00;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  position: relative;
}
@media screen and (max-width: 767px) {
  .section_form .txt_wrap {
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
}
.section_form .txt_wrap::before {
  content: "";
  width: 40px;
  height: 40px;
  background: url(../images/tri_y.png) no-repeat center/contain;
  position: absolute;
  bottom: -39px;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 767px) {
  .section_form .txt_wrap::before {
    width: 20px;
    height: 20px;
    bottom: -19px;
    -webkit-filter: drop-shadow(0 5px 2px rgba(0, 0, 0, 0.2));
            filter: drop-shadow(0 5px 2px rgba(0, 0, 0, 0.2));
  }
}
.section_form .txt_01 {
  color: #ff3e98;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  padding: 1em 0;
  margin: 0 0 1.5em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section_form .txt_01 {
    font-size: 1.25em;
  }
}

/*
animation
------------------------------------------------------------
*/
.kv_01, .kv_02, .kv_03, .kv_04, .big, .fade, .fade_up {
  opacity: 0;
}

.kv_01.loaded {
  -webkit-animation: fade_up 0.8s forwards;
          animation: fade_up 0.8s forwards;
}

.kv_02.loaded {
  -webkit-animation: fade_up 0.8s 0.4s forwards;
          animation: fade_up 0.8s 0.4s forwards;
}

.kv_03.loaded {
  -webkit-animation: big 0.8s 0.8s forwards;
          animation: big 0.8s 0.8s forwards;
}

.kv_04.loaded {
  -webkit-animation: fade 0.8s forwards;
          animation: fade 0.8s forwards;
}

.big.loaded {
  -webkit-animation: big 0.8s forwards;
          animation: big 0.8s forwards;
}

.fade.loaded {
  -webkit-animation: fade 0.8s forwards;
          animation: fade 0.8s forwards;
}

.fade_up.loaded {
  -webkit-animation: fade_up 0.8s forwards;
          animation: fade_up 0.8s forwards;
}

@-webkit-keyframes big {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes big {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade_up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fade_up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}