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

body {
  line-height: 1;
}

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

blockquote, q {
  quotes: none;
}

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

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

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

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

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

del {
  text-decoration: line-through;
}

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

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

th {
  text-align: left;
  vertical-align: top;
  font-weight: normal;
}

td {
  text-align: left;
  vertical-align: top;
}

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

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

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

em {
  font-style: normal;
}

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

/* ========================================
    ■ 必須設定
======================================== */
/* 頻出の色 */
.font_yellow {
  color: #ffff33;
}
.font_orange {
  color: #e1761a;
}
.font_blue {
  color: #003366;
}
.font_red {
  color: #f2001a;
}

/* 関数
----------------------------- */
.kenten, .kenten_half {
  padding: 0.35em 0;
  background-repeat: repeat-x;
  background-size: 1em 0.5em;
  background-position: top left;
  background-image: radial-gradient(0.4rem 0.4rem at center center, #222 50%, transparent 50%);
  font-feature-settings: normal;
}

.kenten_half {
  background-size: 0.65em 0.5em;
}

.is_sp {
  display: block;
}
@media screen and (min-width: 769px) {
  .is_sp {
    display: none;
  }
}

.is_tab {
  display: none;
}
@media screen and (min-width: 769px) {
  .is_tab {
    display: block;
  }
}

.is_pc {
  display: none;
}
@media screen and (min-width: 1001px) {
  .is_pc {
    display: block;
  }
}

img.is_sp,
br.is_sp {
  display: inline-block;
}
@media screen and (min-width: 769px) {
  img.is_sp,
  br.is_sp {
    display: none;
  }
}

img.is_tab,
br.is_tab {
  display: none;
}
@media screen and (min-width: 769px) {
  img.is_tab,
  br.is_tab {
    display: inline-block;
  }
}

img.is_pc,
br.is_pc {
  display: none;
}
@media screen and (min-width: 1001px) {
  img.is_pc,
  br.is_pc {
    display: inline-block;
  }
}

/* ========================================
    ■ General
======================================== */
/* 1px = 0.01remに変換（100px = 1rem）*/
html {
  font-size: 13.0208333333vw;
}
@media screen and (min-width: 769px) {
  html {
    font-size: 10vw;
  }
}
@media screen and (min-width: 1001px) {
  html {
    font-size: 100px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
  line-height: 1.6;
  background: #fff;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt" 1;
  font-size: 0.28rem;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  body {
    font-size: 0.18rem;
  }
}

a {
  color: #0033cc;
  text-decoration: underline;
  transition: 0.2s ease;
}
a::before, a::after {
  transition: 0.2s ease;
}
a:hover {
  text-decoration: none;
  transition: 0.2s ease;
}
a:hover::before, a:hover::after {
  transition: 0.2s ease;
}

img,
video,
object {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  border: none;
}

section {
  position: relative;
}

mark {
  background: none;
  color: inherit;
  font-weight: inherit;
  font-style: normal;
}

/* utility class
----------------------------- */
.wrap {
  position: relative;
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .wrap {
    max-width: 1000px;
  }
}

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

.hover:hover {
  transition: 0.2s ease;
}
.hover:hover:hover {
  transform: scale(0.98, 0.98);
  transition: 0.2s ease;
}

.scrollbar::-webkit-scrollbar {
  background: #ccc;
  width: 0.1rem;
}
.scrollbar::-webkit-scrollbar-thumb {
  background: #aaa;
}

table.tbl_block {
  display: block;
  text-align: left;
}
@media screen and (min-width: 769px) {
  table.tbl_block {
    display: table;
  }
}
table.tbl_block tbody {
  display: block;
  text-align: left;
}
@media screen and (min-width: 769px) {
  table.tbl_block tbody {
    display: table-row-group;
  }
}
table.tbl_block tr {
  display: block;
  text-align: left;
}
@media screen and (min-width: 769px) {
  table.tbl_block tr {
    display: table-row;
  }
}
table.tbl_block th, table.tbl_block td {
  display: block;
  text-align: left;
}
@media screen and (min-width: 769px) {
  table.tbl_block th, table.tbl_block td {
    display: table-cell;
  }
}

.sec09_slide_tit::after, .sec09_tit::after, .sec08_tit::after, .sec07_tit::after, .sec05_trouble > li:nth-of-type(1)::before, .sec04_txt03::before, .sec04_tit::after, .sec02_tit::after {
  content: "";
  display: block;
}

/* マーカー */
mark {
  background: linear-gradient(0deg, #F3F3F3 20%, transparent 20%);
}

.marker_white {
  background: linear-gradient(0deg, #fff 20%, transparent 20%);
}

.underline_orange {
  border-bottom: solid 0.04rem #ff9900;
}

/* ・リスト */
.list_dot > li {
  position: relative;
  padding-left: 1em;
}
.list_dot > li::before {
  content: "・";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}

/* ========================================
    ■ header
======================================== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 9;
  background: #fff;
  box-shadow: 0 0.08rem 0.13rem rgba(0, 0, 0, 0.33);
  padding: 0.05rem 5%;
}
@media screen and (min-width: 769px) {
  header {
    padding: 0.1rem 0.7rem;
  }
}

.header_logo {
  width: 2.3rem;
}
@media screen and (min-width: 769px) {
  .header_logo {
    width: 2.42rem;
  }
}

.header_tel {
  display: block;
  width: 4.38rem;
  position: relative;
}
@media screen and (min-width: 769px) {
  .header_tel {
    width: 5.4rem;
  }
}
.header_tel .header_tel_text {
  position: absolute;
  bottom: 0.1rem;
  right: 0;
  color: #44281b;
  font-size: 0.48rem;
  line-height: 0.48rem;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .header_tel .header_tel_text {
    font-size: 0.4rem;
    line-height: 0.4rem;
    bottom: 0.05rem;
  }
}
.header_tel .header_tel_text a {
  color: #44281b;
}

/* ========================================
    ■ footer
======================================== */
footer {
  background: #e1761a;
  padding: 0.1rem 0 3.55rem;
  color: #fff;
  font-size: 0.12rem;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  footer {
    padding: 0.1rem 0;
  }
}

/* ========================================
    ■ keyv
======================================== */
#keyv {
  background: url(../images/keyv_bg01.png) no-repeat center top;
  background-size: cover;
}
@media screen and (min-width: 769px) {
  #keyv {
    background-image: url(../images/keyv_bg01_tab.png);
    background-size: 15.36rem auto;
  }
}
#keyv .wrap {
  padding: 0.15rem 0 0;
}
@media screen and (min-width: 769px) {
  #keyv .wrap {
    padding: 0.15rem 0 1.75rem;
  }
}

.keyv_card {
  width: 4.52rem;
  margin: 0 0 0 0.35rem;
}
@media screen and (min-width: 769px) {
  .keyv_card {
    width: 6.98rem;
    margin: 0;
  }
}

.keyv_tit {
  margin: 0.3rem 0 0;
}
@media screen and (min-width: 769px) {
  .keyv_tit {
    width: 5rem;
    margin: 0.25rem 0 0 -0.4rem;
  }
}

@media screen and (min-width: 769px) {
  .keyv_txt {
    position: absolute;
    left: 0.5rem;
    bottom: -0.7rem;
    z-index: 9;
    width: 3.96rem;
  }
}
.keyv_point {
  position: absolute;
  left: calc(50% - 3.57rem);
  bottom: -0.9rem;
  z-index: 9;
  width: 7.14rem;
}
@media screen and (min-width: 769px) {
  .keyv_point {
    left: 4.8rem;
    bottom: -0.65rem;
    width: 5.15rem;
  }
}

/* ========================================
    ■ sec01
======================================== */
#sec01 {
  background: linear-gradient(0deg, #fffcf7, #fac457);
}
#sec01 .wrap {
  padding: 1.1rem 0 0.65rem;
}

.sec01_tit {
  width: 6.72rem;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .sec01_tit {
    width: 6.86rem;
  }
}

.sec01_area {
  background: url(../images/sec01_area_bg01.png) no-repeat 2% 98%, url(../images/sec01_area_bg01.png) no-repeat 98% 98%, url(../images/sec01_area_bg01.png) no-repeat 98% 2%, url(../images/sec01_area_bg01.png) no-repeat 2% 2% #fff;
  background-size: 0.28rem auto;
  border-radius: 0.1rem;
  box-shadow: 0 0.03rem 0.24rem rgba(118, 86, 59, 0.26);
  width: 90%;
  margin: 0.2rem auto 0;
  padding: 0.35rem 0.55rem 0.45rem;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .sec01_area {
    padding: 0.25rem 0.6rem 0.35rem;
  }
}

.sec01_area_tit {
  font-size: 0.35rem;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .sec01_area_tit {
    font-size: 0.26rem;
  }
}

.sec01_area_list {
  margin: 0.2rem 0 0;
  letter-spacing: 0.025em;
}
@media screen and (min-width: 769px) {
  .sec01_area_list {
    margin: 0.25rem 0 0;
  }
}

/* ========================================
    ■ cta01
======================================== */
.cta01 {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 999;
  background: #fff;
  width: 100%;
}

.cta01_tit {
  background: url(../images/cta01_tit_pattern01.png);
  padding: 0.1rem 0;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .cta01_tit {
    padding: 0.2rem 0;
    font-size: 0.28rem;
  }
}

.cta01_content .wrap {
  padding: 0.15rem 0 0.2rem;
}
@media screen and (min-width: 769px) {
  .cta01_content .wrap {
    padding: 0.35rem 0 0.45rem;
  }
}

.cta01_content_tit {
  width: 5.12rem;
  margin: 0 auto;
}

.cta01_btn {
  position: relative;
}
.cta01_btn .cta01_btn_text {
  position: absolute;
  bottom: 0.7rem;
  right: 0.9rem;
  color: #fff;
  font-size: 0.475rem;
  line-height: 0.475rem;
  font-weight: 700;
}
.cta01_btn .cta01_btn_text a {
  color: #fff;
}

.cta01_btn_wrap {
  display: flex;
  align-items: center;
  margin: 0 0 0 5%;
}
@media screen and (min-width: 769px) {
  .cta01_btn_wrap {
    margin: 0.15rem 0 0 1.3rem;
  }
}

.cta01_btn_txt {
  flex-shrink: 0;
  width: 2.18rem;
}
@media screen and (min-width: 769px) {
  .cta01_btn_txt {
    width: 2.3rem;
  }
}

/* ========================================
    ■ sec02
======================================== */
.sec02_tit {
  position: relative;
  background: #e1761a;
  padding: 0.25rem 0;
  text-align: center;
}
.sec02_tit::after {
  position: absolute;
  left: 0;
  bottom: -0.58rem;
  z-index: 9;
  width: 0;
  height: 0;
  border-top: solid 0.6rem #e1761a;
  border-right: solid 50vw rgba(255, 255, 255, 0);
  border-left: solid 50vw rgba(255, 255, 255, 0);
}
@media screen and (min-width: 769px) {
  .sec02_tit::after {
    left: calc(50% - 3.8rem);
    border-right-width: 3.8rem;
    border-left-width: 3.8rem;
  }
}
.sec02_tit > img {
  width: 6.73rem;
}

.sec02_content {
  background: url(../images/sec02_content_bg01.png) no-repeat center bottom;
  background-size: cover;
}
.sec02_content .wrap {
  padding: 0.95rem 0 0.75rem;
}

.sec02_content_inner {
  position: relative;
  background: url(../images/sec02_content_inner_pattern01.png);
  border-radius: 0.1rem;
  width: 90%;
  margin: 0 auto;
  padding: 0.25rem 0 0.8rem;
  color: #36231a;
}
@media screen and (min-width: 769px) {
  .sec02_content_inner {
    width: 100%;
    padding: 0.25rem 0 0.7rem;
  }
}

.sec02_pickup {
  width: 6.9rem;
  margin: 0 auto;
}

.sec02_other_tit {
  margin: 0.4rem 0 0;
  font-size: 0.35rem;
  font-weight: bold;
  text-align: center;
}

.sec02_other_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0.35rem 0 0;
}
@media screen and (min-width: 769px) {
  .sec02_other_list {
    margin: 0.25rem 0 0;
  }
}
.sec02_other_list > li {
  background: #fff;
  box-shadow: 0 0 0.1rem rgba(91, 74, 7, 0.2);
  width: 2.8rem;
  margin: 0 0.2rem;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .sec02_other_list > li {
    width: 2.15rem;
    margin: 0 0.07rem;
  }
}
@media screen and (max-width: 768px) {
  .sec02_other_list > li:nth-of-type(n+3) {
    margin-top: 0.4rem;
  }
}

.sec02_other_name {
  padding: 0.15rem 0;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .sec02_other_name {
    padding: 0.1rem 0;
    font-size: 0.22rem;
  }
}

.sec02_other_etc {
  position: absolute;
  right: 0.2rem;
  bottom: 0;
  width: 2rem;
}
@media screen and (min-width: 769px) {
  .sec02_other_etc {
    width: 1.55rem;
  }
}

/* ========================================
    ■ sec03
======================================== */
#sec03 {
  background: url(../images/sec03_bg01.png) no-repeat center center, url(../images/sec03_pattern01.png);
  background-size: 2.6rem auto, 0.57rem auto;
}
#sec03 .wrap {
  padding: 0.7rem 0 0.65rem;
  text-align: center;
}
@media screen and (min-width: 769px) {
  #sec03 .wrap {
    padding: 0.75rem 0 1.15rem;
  }
}

.sec03_img {
  width: 1.46rem;
  margin: 0 auto;
}

.sec03_tit {
  margin: 0.15rem 0 0;
  font-size: 0.35rem;
  font-weight: bold;
}
.sec03_tit strong {
  font-size: 128%;
}

.sec03_txt {
  margin: 0.15rem 0 0;
}
@media screen and (min-width: 769px) {
  .sec03_txt {
    font-size: 0.27rem;
  }
}

/* ========================================
    ■ sec04
======================================== */
.sec04_tit {
  position: relative;
  background: url(../images/sec04_tit_bg01.png) no-repeat 0.2rem center #e1761a;
  background-size: 2.8rem auto;
  padding: 0.35rem 0 0.25rem;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .sec04_tit {
    background-position: 30% center, left top;
    background-size: 2.6rem auto;
    padding: 0.35rem 0 0.5rem;
  }
}
.sec04_tit::after {
  position: absolute;
  left: 0;
  bottom: -0.58rem;
  z-index: 9;
  width: 0;
  height: 0;
  border-top: solid 0.6rem #e1761a;
  border-right: solid 50vw rgba(255, 255, 255, 0);
  border-left: solid 50vw rgba(255, 255, 255, 0);
}
@media screen and (min-width: 769px) {
  .sec04_tit::after {
    left: calc(50% - 3.8rem);
    border-right-width: 3.8rem;
    border-left-width: 3.8rem;
  }
}
.sec04_tit > img {
  width: 6.88rem;
}
@media screen and (min-width: 769px) {
  .sec04_tit > img {
    width: 8.16rem;
  }
}

.sec04_content {
  background: url(../images/sec04_content_bg01.png) no-repeat center bottom;
  background-size: cover;
}
.sec04_content .wrap {
  padding: 1rem 0 0.3rem;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .sec04_content .wrap {
    padding: 1rem 0 0.6rem;
  }
}

.sec04_case {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.sec04_case > li {
  width: 2.8rem;
  margin: 0 0.28rem;
}
@media screen and (min-width: 769px) {
  .sec04_case > li {
    width: 2.3rem;
    margin: 0 0.1rem;
  }
}
@media screen and (max-width: 768px) {
  .sec04_case > li:nth-of-type(n+3) {
    margin-top: 0.2rem;
  }
}

.sec04_txt01 {
  margin: 0.5rem 5% 0;
  font-size: 0.35rem;
}
@media screen and (min-width: 769px) {
  .sec04_txt01 {
    margin: 0.65rem 0 0;
  }
}
.sec04_txt01 > strong {
  font-size: 120%;
}

.sec04_txt02 {
  width: 1.72rem;
  margin: 0.6rem auto 0;
}
@media screen and (min-width: 769px) {
  .sec04_txt02 {
    margin: 0.8rem auto 0;
  }
}

.sec04_txt03 {
  position: relative;
  font-size: 0.4rem;
  font-weight: 900;
}
.sec04_txt03::before {
  position: absolute;
  left: calc(50% - 2.5rem);
  top: -0.75rem;
  background: url(../images/sec04_txt03_bg01.png) no-repeat center center;
  background-size: 100% 100%;
  width: 0.62rem;
  height: 1.05rem;
}
@media screen and (min-width: 769px) {
  .sec04_txt03::before {
    left: calc(50% - 4.35rem);
    top: -0.85rem;
  }
}
@media screen and (min-width: 769px) {
  .sec04_txt03 {
    margin: 0.1rem 0 0;
  }
}
.sec04_txt03 > strong {
  font-size: 125%;
  font-weight: 900;
}

/* ========================================
    ■ sec05
======================================== */
.sec05_trouble > li {
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 5rem;
}
.sec05_trouble > li:nth-of-type(1) {
  background-image: url(../images/sec05_trouble_bg01.png);
}
.sec05_trouble > li:nth-of-type(1)::before {
  position: absolute;
  left: calc(50% - 0.7rem);
  top: -0.02rem;
  width: 0;
  height: 0;
  border-top: solid 0.5rem #bababa;
  border-right: solid 0.7rem rgba(255, 255, 255, 0);
  border-left: solid 0.7rem rgba(255, 255, 255, 0);
}
.sec05_trouble > li:nth-of-type(2) {
  background-image: url(../images/sec05_trouble_bg02.png);
}
.sec05_trouble > li:nth-of-type(3) {
  background-image: url(../images/sec05_trouble_bg03.png);
}
.sec05_trouble > li:nth-of-type(4) {
  background-image: url(../images/sec05_trouble_bg04.png);
}
.sec05_trouble > li > img {
  max-width: 7.68rem;
}

/* ========================================
    ■ sec06
======================================== */
#sec06 {
  background: linear-gradient(0deg, #fff, #fac04b);
}
#sec06 .wrap {
  padding: 0.55rem 0 0.75rem;
}
@media screen and (min-width: 769px) {
  #sec06 .wrap {
    padding: 0.55rem 0 0.65rem;
  }
}

@media screen and (min-width: 769px) {
  .sec06_img {
    width: 9.09rem;
    margin: 0 auto;
  }
}
/* ========================================
    ■ cta02
======================================== */
.cta02 {
  background: #0065b4;
}
.cta02 .wrap {
  padding: 0.5rem 0;
}
@media screen and (min-width: 769px) {
  .cta02 .wrap {
    display: flex;
    flex-direction: row-reverse;
    padding: 0.6rem 0;
  }
}

.cta02_tit {
  width: 6.54rem;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .cta02_tit {
    flex-shrink: 0;
    width: 4.6rem;
    margin: 0;
  }
}

.cta02_txt {
  width: 90%;
  margin: 0.2rem auto 0;
}
@media screen and (min-width: 769px) {
  .cta02_txt {
    width: 4.75rem;
    margin: 0 0.6rem 0 0;
  }
}

.cta02_btn {
  display: block;
  position: absolute;
  left: calc(50% - 3.41rem);
  bottom: 0.6rem;
  width: 6.82rem;
}
@media screen and (min-width: 769px) {
  .cta02_btn {
    left: 5.15rem;
    bottom: 0.5rem;
    width: 4.94rem;
  }
}
.cta02_btn .cta02_btn_text {
  position: absolute;
  bottom: 0.3rem;
  right: 0.65rem;
  color: #fff;
  font-size: 0.475rem;
  line-height: 0.475rem;
  font-weight: 700;
}
.cta02_btn .cta02_btn_text a {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .cta02_btn .cta02_btn_text {
    bottom: 0.4rem;
    right: 0.95rem;
    font-size: 0.625rem;
    line-height: 0.625rem;
  }
}

/* ========================================
    ■ cta03
======================================== */
.cta03 {
  background: linear-gradient(90deg, #ffb341, #ffcc33);
}
.cta03 .wrap {
  padding: 0.7rem 0 0.5rem;
}
@media screen and (min-width: 769px) {
  .cta03 .wrap {
    padding: 0.7rem 0 0.6rem;
  }
}

.cta03_frame {
  position: relative;
  background: url(../images/cta03_frame_bg01.png) no-repeat center center #fff;
  background-size: 2.15rem auto;
  border-radius: 0.1rem;
  width: 90%;
  margin: 0 auto;
  padding: 0.65rem 0.3rem 0.2rem;
}
@media screen and (min-width: 769px) {
  .cta03_frame {
    background-size: 1.95rem auto;
    padding: 0.7rem 0.3rem 0.3rem;
  }
}

.cta03_tit {
  position: absolute;
  left: 0.2rem;
  top: -0.45rem;
  width: 4.96rem;
}
@media screen and (min-width: 769px) {
  .cta03_tit {
    left: calc(50% - 2.48rem);
  }
}

.cta03_txt01 {
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .cta03_txt01 {
    font-size: 0.28rem;
  }
}
.cta03_txt01 strong {
  background: #ffff00;
  font-size: 120%;
}

.cta03_txt02 {
  display: block;
  margin: 0.2rem 0 0;
  color: #333;
  font-size: 0.18rem;
  letter-spacing: -0.05em;
}
@media screen and (min-width: 769px) {
  .cta03_txt02 {
    margin: 0.15rem 0 0;
  }
}

.cta03_medal {
  position: absolute;
  right: -0.15rem;
  top: 0.2rem;
  width: 2.45rem;
}
@media screen and (min-width: 769px) {
  .cta03_medal {
    right: 0.2rem;
    top: 0.3rem;
    width: 2.1rem;
  }
}

/* ========================================
    ■ sec07
======================================== */
.sec07_tit {
  position: relative;
  background: url(../images/sec07_tit_bg01.png) no-repeat center center #e1761a;
  background-size: 3.22rem auto;
  padding: 0.3rem 0;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .sec07_tit {
    padding: 0.3rem 0 0.35rem;
  }
}
.sec07_tit::after {
  position: absolute;
  left: 0;
  bottom: -0.58rem;
  z-index: 9;
  width: 0;
  height: 0;
  border-top: solid 0.6rem #e1761a;
  border-right: solid 50vw rgba(255, 255, 255, 0);
  border-left: solid 50vw rgba(255, 255, 255, 0);
}
@media screen and (min-width: 769px) {
  .sec07_tit::after {
    left: calc(50% - 3.8rem);
    border-right-width: 3.8rem;
    border-left-width: 3.8rem;
  }
}
.sec07_tit > img {
  width: 4.96rem;
}
@media screen and (min-width: 769px) {
  .sec07_tit > img {
    width: 6.14rem;
  }
}

.sec07_pro {
  background: url(../images/sec07_pro_bg01.png) no-repeat center bottom;
  background-size: cover;
}
@media screen and (min-width: 769px) {
  .sec07_pro {
    background-image: url(../images/sec07_pro_bg01_tab.png);
  }
}
.sec07_pro .wrap {
  padding: 1rem 5% 1.45rem;
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .sec07_pro .wrap {
    padding: 0.95rem 5% 2.1rem;
    font-size: 0.28rem;
  }
}
.sec07_pro small {
  display: block;
  margin: 4em 0 0;
  font-size: 64%;
}
@media screen and (min-width: 769px) {
  .sec07_pro small {
    margin: 1.8em 0 0;
  }
}

.sec07_pro_img {
  float: right;
  width: 3rem;
  margin: 0 0 0 0.4rem;
}

.sec07_point {
  background: #fff298;
}
.sec07_point .wrap {
  padding: 0 0 0.7rem;
}
@media screen and (min-width: 769px) {
  .sec07_point .wrap {
    padding: 0 0 0.6rem;
  }
}

.sec07_point_frame {
  position: relative;
  background: #fff;
  border-radius: 0.1rem;
  width: 90%;
  margin: 0 auto;
  padding: 1.75rem 0 0.35rem;
}
@media screen and (min-width: 769px) {
  .sec07_point_frame {
    width: 100%;
  }
}

.sec07_point_tit {
  position: absolute;
  left: calc(50% - 3.22rem);
  top: -0.58rem;
  width: 6.44rem;
}

@media screen and (min-width: 769px) {
  .sec07_point_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.sec07_point_list > li {
  position: relative;
  width: 6.5rem;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .sec07_point_list > li {
    width: 4.45rem;
    margin: 0 0.2rem;
  }
}
@media screen and (max-width: 768px) {
  .sec07_point_list > li:nth-of-type(n+2) {
    margin-top: 0.5rem;
  }
}
@media screen and (min-width: 769px) {
  .sec07_point_list > li:nth-of-type(n+3) {
    margin-top: 0.6rem;
  }
}

.sec07_point_num {
  position: absolute;
  left: 0;
  top: -0.2rem;
  width: 1.32rem;
}

.sec07_point_list_tit {
  background: linear-gradient(0deg, #ff9900, #ff544f);
  padding: 0.1rem 0.1rem 0.1rem 1.45rem;
  color: #fff;
  font-size: 0.45rem;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .sec07_point_list_tit {
    padding: 0.15rem 0.1rem 0.15rem 1.25rem;
    font-size: 0.32rem;
  }
}

.sec07_point_list_txt {
  margin: 0.2rem 0.3rem 0 1.25rem;
  font-size: 0.3rem;
}
@media screen and (min-width: 769px) {
  .sec07_point_list_txt {
    margin: 0.25rem 0 0 1.25rem;
    font-size: 0.2rem;
  }
}

.sec07_point_notes {
  margin: 0.2rem 0 0 1.45rem;
  font-size: 0.18rem;
}
@media screen and (min-width: 769px) {
  .sec07_point_notes {
    margin: 0.35rem 0 0 5.15rem;
    font-size: 0.16rem;
  }
}

/* ========================================
    ■ sec08
======================================== */
.sec08_tit {
  position: relative;
  background: #e1761a;
  padding: 0.7rem 0 0.1rem;
  text-align: center;
}
.sec08_tit::after {
  position: absolute;
  left: 0;
  bottom: -0.58rem;
  z-index: 9;
  width: 0;
  height: 0;
  border-top: solid 0.6rem #e1761a;
  border-right: solid 50vw rgba(255, 255, 255, 0);
  border-left: solid 50vw rgba(255, 255, 255, 0);
}
@media screen and (min-width: 769px) {
  .sec08_tit::after {
    left: calc(50% - 3.8rem);
    border-right-width: 3.8rem;
    border-left-width: 3.8rem;
  }
}
.sec08_tit > img {
  width: 7.12rem;
}

.sec08_content {
  background: url(../images/sec08_content_bg01.png) no-repeat center top #fdf9e8;
  background-size: 100% auto;
  padding: 1rem 0 0.85rem;
}
@media screen and (min-width: 769px) {
  .sec08_content {
    background: url(../images/sec08_content_bg01_tab.png) no-repeat center top #fdf9e8;
    background-size: 100% auto;
    padding: 1.15rem 0 0.85rem;
  }
}

@media screen and (min-width: 769px) {
  .sec08_flow {
    display: flex;
    flex-wrap: wrap;
    width: 10rem;
    margin: 0 auto;
  }
}
.sec08_flow > li {
  display: flex;
  flex-direction: row-reverse;
  background: #fff;
  border-radius: 0.1rem;
  box-shadow: 0 0 0.2rem rgba(153, 102, 0, 0.3);
  overflow: hidden;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .sec08_flow > li {
    flex-direction: column;
    width: 3.14rem;
    margin: 0 0.26rem 0 0;
  }
}
@media screen and (max-width: 768px) {
  .sec08_flow > li:nth-of-type(n+2) {
    margin-top: 0.3rem;
  }
}
@media screen and (min-width: 769px) {
  .sec08_flow > li:nth-of-type(n+4) {
    margin-top: 0.35rem;
  }
  .sec08_flow > li:nth-of-type(3n) {
    margin-right: 0;
  }
}

.sec08_flow_img {
  flex-shrink: 0;
  width: 2.56rem;
  margin: 0 0 0 0.2rem;
}
@media screen and (min-width: 769px) {
  .sec08_flow_img {
    width: 100%;
    margin: 0;
  }
}

.sec08_flow_content {
  flex-grow: 1;
  position: relative;
  padding: 0.35rem 0 0 0.2rem;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .sec08_flow_content {
    padding: 0.25rem 0.15rem 0.2rem;
  }
}

.sec08_flow_num {
  position: absolute;
  left: 0.2rem;
  top: 0.2rem;
  width: 0.73rem;
}
@media screen and (min-width: 769px) {
  .sec08_flow_num {
    left: 0.05rem;
    top: 0.1rem;
    width: 0.6rem;
  }
}

.sec08_flow_tit {
  border-bottom: solid 0.04rem #0075a9;
  margin: 0 0 0 0.65rem;
  padding: 0 0 0 0.2rem;
  color: #003366;
  font-size: 0.35rem;
}
@media screen and (min-width: 769px) {
  .sec08_flow_tit {
    margin: 0 0 0 0.45rem;
    padding: 0 0 0 0.15rem;
    font-size: 0.25rem;
  }
}

.sec08_flow_txt {
  margin: 0.25rem 0 0;
}
@media screen and (min-width: 769px) {
  .sec08_flow_txt {
    margin: 0.2rem 0 0;
    font-size: 0.22rem;
  }
}
.sec08_flow_txt small {
  display: inline-block;
  font-size: 64%;
}

.sec08_foot {
  background: url(../images/sec08_foot_bg01.png) no-repeat center center;
  background-size: cover;
  margin: 0.4rem 0 0;
}
.sec08_foot .wrap {
  background: url(../images/sec08_foot_bg02.png) no-repeat center center;
  background-size: auto 100%;
  padding: 0.2rem 0;
}

.sec08_foot_txt {
  width: 6.95rem;
  margin: 0 auto;
}

/* ========================================
    ■ sec09
======================================== */
#sec09 {
  background: url(../images/sec09_pattern01.png);
}

.sec09_tit {
  position: relative;
  background: #e1761a;
  padding: 0.2rem 0 0.35rem;
  text-align: center;
}
.sec09_tit::after {
  position: absolute;
  left: 0;
  bottom: -0.58rem;
  z-index: 9;
  width: 0;
  height: 0;
  border-top: solid 0.6rem #e1761a;
  border-right: solid 50vw rgba(255, 255, 255, 0);
  border-left: solid 50vw rgba(255, 255, 255, 0);
}
@media screen and (min-width: 769px) {
  .sec09_tit::after {
    left: calc(50% - 3.8rem);
    border-right-width: 3.8rem;
    border-left-width: 3.8rem;
  }
}
.sec09_tit > img {
  width: 7.1rem;
}

.sec09_slide {
  padding: 1rem 0 1.25rem;
  font-size: 0.28rem;
}
@media screen and (min-width: 1001px) {
  .sec09_slide {
    padding: 1rem 0 1.1rem;
    font-size: 0.18rem;
  }
}
.sec09_slide .flickity-button {
  background: #ff6600;
  border-radius: 0.1rem;
  width: 0.6rem;
  height: 0.76rem;
}
.sec09_slide .flickity-button.previous {
  left: calc(50% - 3.25rem);
}
@media screen and (min-width: 1001px) {
  .sec09_slide .flickity-button.previous {
    left: calc(50% - 5.4rem);
  }
}
.sec09_slide .flickity-button.next {
  right: calc(50% - 3.25rem);
}
@media screen and (min-width: 1001px) {
  .sec09_slide .flickity-button.next {
    right: calc(50% - 5.4rem);
  }
}
.sec09_slide .flickity-button-icon {
  fill: #fff;
}
.sec09_slide .flickity-page-dots {
  bottom: 0.7rem;
}
@media screen and (min-width: 1001px) {
  .sec09_slide .flickity-page-dots {
    bottom: 0.6rem;
  }
}
.sec09_slide .flickity-page-dots .dot {
  background: #7d7d7d;
  opacity: 1;
}
.sec09_slide .flickity-page-dots .dot.is-selected {
  background: #ff6600;
}

.sec09_slide_item {
  width: 5.8rem;
  margin: 0 0.35rem;
  padding: 0.5rem 0 0;
}
@media screen and (min-width: 1001px) {
  .sec09_slide_item {
    width: 90%;
    max-width: 10rem;
    margin: 0 0.4rem;
    padding: 0.4rem 0 0;
  }
}
.sec09_slide_item.is-selected .sec09_slide_content {
  border-width: 0.1rem;
}

.sec09_slide_tit {
  position: absolute;
  left: calc(50% - 2.65rem);
  top: 0;
  z-index: 9;
  background: #0066cc;
  border-radius: 0.2rem;
  width: 5.3rem;
  padding: 0.1rem;
}
@media screen and (min-width: 1001px) {
  .sec09_slide_tit {
    left: calc(50% - 4rem);
    width: 8rem;
  }
}
.sec09_slide_tit::after {
  position: absolute;
  left: calc(50% - 0.12rem);
  bottom: -0.18rem;
  z-index: 9;
  width: 0;
  height: 0;
  border-top: solid 0.2rem #0066cc;
  border-right: solid 0.12rem rgba(255, 255, 255, 0);
  border-left: solid 0.12rem rgba(255, 255, 255, 0);
}

.sec09_slide_tit_txt {
  border-top: dotted 0.05rem #fff;
  border-bottom: dotted 0.05rem #fff;
  padding: 0.1rem 0;
  color: #fff;
  font-size: 0.3rem;
  font-weight: 900;
  text-align: center;
}
@media screen and (min-width: 1001px) {
  .sec09_slide_tit_txt {
    font-size: 0.28rem;
  }
}
.sec09_slide_tit_txt br {
  display: inline-block;
}
@media screen and (min-width: 1001px) {
  .sec09_slide_tit_txt br {
    display: none;
  }
}

.sec09_slide_content {
  position: relative;
  background: #fff;
  border: solid 0.04rem #ff6600;
  border-radius: 0.2rem;
  height: 10.1rem;
  padding: 1.3rem 0.4rem 0.7rem;
}
@media screen and (min-width: 1001px) {
  .sec09_slide_content {
    display: flex;
    height: 4.8rem;
    padding: 1rem 0.45rem 0;
  }
}

@media screen and (min-width: 1001px) {
  .sec09_slide_data {
    flex-shrink: 0;
    width: 3.85rem;
    margin: 0 0.35rem 0 0;
  }
}
.sec09_slide_name {
  position: absolute;
  left: 0;
  bottom: 0.2rem;
  width: 100%;
  color: #ff6600;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 1001px) {
  .sec09_slide_name {
    position: relative;
    bottom: 0;
    margin: 0.5rem 0 0;
    font-size: 0.26rem;
  }
}

.sec09_slide_txt {
  margin: 0.15rem 0 0;
}
@media screen and (min-width: 1001px) {
  .sec09_slide_txt {
    margin: 0;
    font-size: 0.2rem;
    line-height: 1.8;
  }
}

/* ========================================
    ■ sec10
======================================== */
#sec10 {
  background: #fff6e7;
}
#sec10 .wrap {
  padding: 0.25rem 0 0.5rem;
}
@media screen and (min-width: 769px) {
  #sec10 .wrap {
    padding: 0.25rem 0 0.75rem;
  }
}

.sec10_tit {
  width: 6.7rem;
  margin: 0 auto;
}

.sec10_faq {
  width: 7.3rem;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .sec10_faq {
    width: 10rem;
  }
}
.sec10_faq > li {
  padding: 0.45rem 0.25rem;
}
@media screen and (min-width: 769px) {
  .sec10_faq > li {
    padding: 0.4rem 0.7rem 0.4rem 0.3rem;
  }
}
.sec10_faq > li:nth-of-type(n+2) {
  border-top: dotted 0.05rem #996633;
}
.sec10_faq > li:nth-of-type(2n) {
  background: #f8edda;
}

.sec10_faq_q {
  background: url(../images/sec10_faq_q_ico01.png) no-repeat left top;
  background-size: 0.8rem auto;
  min-height: 0.8rem;
  padding: 0.2rem 0 0 1.1rem;
  font-size: 0.3rem;
  font-weight: 900;
}
@media screen and (min-width: 769px) {
  .sec10_faq_q {
    padding: 0.2rem 0 0 1.2rem;
  }
}

.sec10_faq_a {
  background: url(../images/sec10_faq_a_ico01.png) no-repeat left top;
  background-size: 0.8rem auto;
  min-height: 0.8rem;
  margin: 0.25rem 0 0;
  padding: 0.2rem 0 0 1.1rem;
  font-size: 0.24rem;
}
@media screen and (min-width: 769px) {
  .sec10_faq_a {
    margin: 0.3rem 0 0;
    padding: 0.2rem 0 0 1.2rem;
  }
}

/* ========================================
    ■ sec11
======================================== */
#sec11 {
  background: url(../images/sec11_bg01.png) no-repeat center top;
  background-size: cover;
}
@media screen and (min-width: 769px) {
  #sec11 {
    background-image: url(../images/sec11_bg01_tab.png);
  }
}
#sec11 .wrap {
  padding: 0.6rem 0 0.3rem;
}
@media screen and (min-width: 769px) {
  #sec11 .wrap {
    padding: 0.75rem 0 0.9rem;
  }
}

/* ========================================
    ■ sec12
======================================== */
#sec12 {
  background: url(../images/sec12_pattern01.png);
}
#sec12 .wrap {
  padding: 0.5rem 0;
}

.sec12_btn {
  display: block;
  border-radius: 0.2rem;
  box-shadow: 0 0.11rem 0.24rem rgba(0, 0, 0, 0.13);
  width: 6.12rem;
  margin: 0 auto;
}