@charset "UTF-8";
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  overflow-x: hidden;
}
body ul li {
  list-style: none;
}
body span .color {
  color: #f08d14;
}
body .header {
  background: #fdf1e8;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  body .header {
    background: #fff;
  }
}
body .header .nav {
  position: relative;
  width: 100%;
  left: 8.333%;
  margin: 0 0 0 auto;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  body .header .nav {
    height: 70px;
    left: 5%;
  }
}
body .header .nav .logo img {
  max-width: 110px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  body .header .nav .logo img {
    max-width: 66px;
  }
}
body .side_nav {
  width: 100%;
}
@media screen and (max-width: 768px) {
  body .side_nav {
    position: fixed;
    z-index: 999;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  body .side_nav.scroll {
    opacity: 1;
    visibility: visible;
  }
}
body .side_nav .nav_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}
body .side_nav .nav_area .nav_box {
  position: fixed;
  bottom: 5px;
  right: 0;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  body .side_nav .nav_area .nav_box {
    width: 100%;
    bottom: 0;
    top: unset;
  }
}
body .side_nav .nav_area .nav_box .nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0px 0px 18px -8px rgba(0, 0, 0, 0.8);
          box-shadow: 0px 0px 18px -8px rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 768px) {
  body .side_nav .nav_area .nav_box .nav_list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
body .side_nav .nav_area .nav_box .nav_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  border-bottom: 1px solid #fff;
  position: relative;
  background: #f08d14;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
body .side_nav .nav_area .nav_box .nav_list li p {
  font-size: 14px;
}
@media screen and (max-width: 1200px) {
  body .side_nav .nav_area .nav_box .nav_list li p {
    font-size: 10px;
  }
}
@media (hover) {
  body .side_nav .nav_area .nav_box .nav_list li:hover {
    opacity: 0.7;
    -webkit-transform: 0.3s;
            transform: 0.3s;
  }
}
@media screen and (max-width: 768px) {
  body .side_nav .nav_area .nav_box .nav_list li {
    background: none;
    height: 60px;
    width: 100%;
    border-right: 1px solid #fff;
  }
}
body .side_nav .nav_area .nav_box .nav_list li::after {
  content: "";
  position: absolute;
  height: auto;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
}
body .side_nav .nav_area .nav_box .nav_list li:nth-child(1) {
  border-radius: 10px 0 0 0;
}
body .side_nav .nav_area .nav_box .nav_list li:nth-child(1) img {
  width: 42%;
}
@media screen and (max-width: 768px) {
  body .side_nav .nav_area .nav_box .nav_list li:nth-child(1) {
    border-radius: 0px;
    border-bottom: none;
  }
  body .side_nav .nav_area .nav_box .nav_list li:nth-child(1) img {
    width: 19.3%;
  }
}
body .side_nav .nav_area .nav_box .nav_list li:nth-child(2) img {
  width: 32.4%;
}
@media screen and (max-width: 768px) {
  body .side_nav .nav_area .nav_box .nav_list li:nth-child(2) {
    border-radius: 0px;
    border-bottom: none;
  }
  body .side_nav .nav_area .nav_box .nav_list li:nth-child(2) img {
    width: 13.7%;
  }
}
body .side_nav .nav_area .nav_box .nav_list li:nth-child(3) {
  border-bottom: none;
  border-radius: 0 0 0 10px;
}
body .side_nav .nav_area .nav_box .nav_list li:nth-child(3) img {
  width: 33.3%;
}
@media screen and (max-width: 768px) {
  body .side_nav .nav_area .nav_box .nav_list li:nth-child(3) {
    border-radius: 0px;
    border-right: none;
  }
  body .side_nav .nav_area .nav_box .nav_list li:nth-child(3) img {
    width: 15%;
  }
}
body .side_nav .nav_area .nav_box .nav_list a {
  font-size: 13px;
  text-decoration: none;
  text-align: center;
  color: #000000;
  padding: 10px;
  font-weight: 500;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 1200px) {
  body .side_nav .nav_area .nav_box .nav_list a {
    padding: 5px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  body .side_nav .nav_area .nav_box .nav_list a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 5px;
    background: #f08d14;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    padding: 10px 0;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) and (hover) {
  body .side_nav .nav_area .nav_box .nav_list a:hover {
    opacity: 0.7;
    -webkit-transform: 0.3s;
            transform: 0.3s;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  body .side_nav .nav_area .nav_box .nav_list a p {
    font-size: 20px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) and (max-width: 768px) {
  body .side_nav .nav_area .nav_box .nav_list a p {
    font-size: 12px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  body .side_nav .nav_area .nav_box .nav_list a img {
    width: 20%;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) and (max-width: 768px) {
  body .side_nav .nav_area .nav_box .nav_list a img {
    width: 19px;
  }
}
body .kv .kv_box_wrap {
  position: relative;
  background: #fdf1e8;
}
@media screen and (max-width: 768px) {
  body .kv .kv_box_wrap {
    background: #fff;
  }
}
@media screen and (max-width: 768px) {
  body .kv .kv_box_wrap {
    padding-left: 0;
  }
}
body .kv .kv_box_wrap h1 {
  position: absolute;
  top: 40px;
  z-index: 10;
  left: 8.333%;
}
@media screen and (max-width: 768px) {
  body .kv .kv_box_wrap h1 {
    margin-bottom: 15px;
    position: static;
    padding-left: 5%;
  }
}
body .kv .kv_box_wrap h1 .h1_main {
  font-size: 35px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1200px) {
  body .kv .kv_box_wrap h1 .h1_main {
    font-size: 35px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 1000px) {
  body .kv .kv_box_wrap h1 .h1_main {
    font-size: 22px;
  }
}
body .kv .kv_box_wrap h1 .h1_main span.line {
  border-bottom: 4px solid #000000;
  padding-bottom: 10px;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  body .kv .kv_box_wrap h1 .h1_main span.line {
    border-width: 3px;
    padding-bottom: 4px;
  }
}
body .kv .kv_box_wrap h1 .h1_main span.big {
  font-size: 45px;
  font-weight: bold;
}
@media screen and (max-width: 1200px) {
  body .kv .kv_box_wrap h1 .h1_main span.big {
    font-size: 45px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 1000px) {
  body .kv .kv_box_wrap h1 .h1_main span.big {
    font-size: 32px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 1000px) and (max-width: 500px) {
  body .kv .kv_box_wrap h1 .h1_main span.big {
    font-size: 26px;
  }
}
body .kv .kv_box_wrap h1 .h1_main span.big_color {
  font-size: 50px;
  font-weight: bold;
  color: #f08d14;
}
@media screen and (max-width: 1200px) {
  body .kv .kv_box_wrap h1 .h1_main span.big_color {
    font-size: 50px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 1000px) {
  body .kv .kv_box_wrap h1 .h1_main span.big_color {
    font-size: 34px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 1000px) and (max-width: 500px) {
  body .kv .kv_box_wrap h1 .h1_main span.big_color {
    font-size: 28px;
  }
}
body .kv .kv_box_wrap h1 .h1_sub {
  font-size: 18px;
  letter-spacing: 0.2rem;
  padding-top: 15px;
}
@media screen and (max-width: 1000px) {
  body .kv .kv_box_wrap h1 .h1_sub {
    font-size: 13px;
    margin: 0 auto;
    padding-top: 10px;
  }
}
@media screen and (max-width: 1000px) and (max-width: 500px) {
  body .kv .kv_box_wrap h1 .h1_sub {
    font-size: 12px;
  }
}
body .kv .kv_box_wrap .kv_Box {
  height: 600px;
  width: 100%;
  margin: 0 0 0 auto;
  background: url(/navi/lp001/index/img/kv.jpg) no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
  background-position-x: right;
}
@media screen and (max-width: 1200px) {
  body .kv .kv_box_wrap .kv_Box {
    height: 450px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  body .kv .kv_box_wrap .kv_Box {
    height: auto;
    width: 100%;
    aspect-ratio: 75/76;
    background: url(/navi/lp001/index/img/kv_sp.png) no-repeat;
    background-size: cover;
  }
}
body .kv .kv_box_wrap .kv_Box .probability {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  gap: 0 1.333vw;
  right: 3%;
  top: 15px;
}
@media screen and (max-width: 768px) {
  body .kv .kv_box_wrap .kv_Box .probability {
    top: 20px;
  }
}
body .kv .kv_box_wrap .kv_Box .probability li img {
  width: 12vw;
  min-width: 120px;
}
@media screen and (max-width: 768px) {
  body .kv .kv_box_wrap .kv_Box .probability li img {
    width: 26vw;
    min-width: 50px;
  }
}
body .kv .float_item {
  position: relative;
  z-index: 5;
  width: 100%;
  margin-top: -235px;
}
@media screen and (max-width: 1200px) {
  body .kv .float_item {
    margin-top: -135px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  body .kv .float_item {
    margin-top: -56%;
  }
}
body .kv .float_item .btn_area {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
body .kv .float_item .btn_area .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 50px;
}
@media screen and (max-width: 1200px) {
  body .kv .float_item .btn_area .btn {
    gap: 0 30px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  body .kv .float_item .btn_area .btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4vw;
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) and (max-width: 500px) {
  body .kv .float_item .btn_area .btn {
    width: 100%;
  }
}
body .kv .float_item .btn_area .btn li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body .kv .float_item .btn_area .btn li:nth-child(1) .btn_link {
  background: #de0000;
}
@media screen and (max-width: 1200px) {
  body .kv .float_item .btn_area .btn li {
    width: 300px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  body .kv .float_item .btn_area .btn li {
    max-width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
  }
}
body .kv .float_item .btn_area .btn li .btn_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fc5f1a;
  width: 380px;
  padding: 0 30px;
  height: 85px;
  border-radius: 10px;
  -webkit-box-shadow: 0 9px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 9px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}
body .kv .float_item .btn_area .btn li .btn_link:hover {
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2);
  position: relative;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}
@media screen and (max-width: 1200px) {
  body .kv .float_item .btn_area .btn li .btn_link {
    height: 70px;
    max-width: 100%;
    padding: 0 20px;
    width: 100%;
  }
}
@media screen and (max-width: 1200px) and (max-width: 500px) {
  body .kv .float_item .btn_area .btn li .btn_link {
    height: 54px;
  }
}
body .kv .float_item .btn_area .btn li .btn_link p {
  font-size: 26px;
  color: #fff;
  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;
  gap: 0 20px;
  text-align: center;
  line-height: 1.24;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1200px) {
  body .kv .float_item .btn_area .btn li .btn_link p {
    font-size: 20px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  body .kv .float_item .btn_area .btn li .btn_link p {
    gap: 10px;
    font-size: 16px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) and (max-width: 500px) {
  body .kv .float_item .btn_area .btn li .btn_link p {
    font-size: 4vw;
  }
}
body .kv .float_item .btn_area .btn li .btn_link p .br_md {
  display: block;
}
@media screen and (max-width: 768px) {
  body .kv .float_item .btn_area .btn li .btn_link p .br_md {
    display: none;
  }
}
body .kv .float_item .btn_area .btn li .btn_link p .arrow {
  width: 25px;
}
@media screen and (max-width: 1200px) {
  body .kv .float_item .btn_area .btn li .btn_link p .arrow {
    width: 20px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  body .kv .float_item .btn_area .btn li .btn_link p .arrow {
    width: 13px;
  }
}
body .kv .float_item .card_area {
  padding-top: 100px;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  body .kv .float_item .card_area {
    padding-top: 30px;
  }
}
body .kv .float_item .card_area .card_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  body .kv .float_item .card_area .card_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
body .kv .float_item .card_area .card_box .card_item {
  border-radius: 10px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  background: #fff;
  -webkit-box-shadow: 0px 0px 18px -8px rgba(0, 0, 0, 0.8);
          box-shadow: 0px 0px 18px -8px rgba(0, 0, 0, 0.8);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  body .kv .float_item .card_area .card_box .card_item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
body .kv .float_item .card_area .card_box .card_item::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #8a6e4b;
  position: absolute;
  top: 5%;
  right: 3%;
}
body .kv .float_item .card_area .card_box .card_item .title {
  width: 100%;
  background: #fdf1e9;
  margin: 0 auto;
  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;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 15px 20px;
}
@media screen and (max-width: 1200px) {
  body .kv .float_item .card_area .card_box .card_item .title {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 20px 15px;
  }
}
body .kv .float_item .card_area .card_box .card_item .title::after {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgb(138, 110, 75);
  background: -webkit-gradient(linear, left top, right top, from(rgb(138, 110, 75)), color-stop(20%, rgb(138, 110, 75)), color-stop(20%, rgb(240, 141, 20)), to(rgb(240, 141, 20)));
  background: -webkit-linear-gradient(left, rgb(138, 110, 75) 0%, rgb(138, 110, 75) 20%, rgb(240, 141, 20) 20%, rgb(240, 141, 20) 100%);
  background: linear-gradient(90deg, rgb(138, 110, 75) 0%, rgb(138, 110, 75) 20%, rgb(240, 141, 20) 20%, rgb(240, 141, 20) 100%);
}
body .kv .float_item .card_area .card_box .card_item .title p {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1200px) {
  body .kv .float_item .card_area .card_box .card_item .title p {
    font-size: 17px;
  }
}
body .kv .float_item .card_area .card_box .card_item .title p .br_md {
  display: block;
}
@media screen and (max-width: 768px) {
  body .kv .float_item .card_area .card_box .card_item .title p .br_md {
    display: none;
  }
}
body .kv .float_item .card_area .card_box .card_item .title p .span_orange {
  color: #f08d14;
}
body .kv .float_item .card_area .card_box .card_item .title p .span_orange b {
  font-size: 34px;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  body .kv .float_item .card_area .card_box .card_item .title p .span_orange b {
    font-size: 24px;
  }
}
body .kv .float_item .card_area .card_box .card_item .title p .span_note {
  font-size: 11px;
}
body .kv .float_item .card_area .card_box .card_item .content {
  background: #fff;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  body .kv .float_item .card_area .card_box .card_item .content {
    padding: 10px 0;
  }
}
body .kv .float_item .card_area .card_box .card_item .content p {
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  height: 100%;
  letter-spacing: 0.1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  body .kv .float_item .card_area .card_box .card_item .content p {
    font-size: 14px;
    padding: 0 15px;
    width: 100%;
  }
}
body .kv .float_item .card_area .card_box .card_item .content p .br_md {
  display: block;
}
@media screen and (max-width: 768px) {
  body .kv .float_item .card_area .card_box .card_item .content p .br_md {
    display: none;
  }
}
body .concept {
  width: 100%;
  margin-top: 100px;
  margin-bottom: 50px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  body .concept {
    margin-top: 70px;
  }
}
body .concept .inner {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
body .concept .inner picture source:nth-child(2) {
  width: 103%;
  max-width: none;
  -webkit-transform: translateX(-13px);
          transform: translateX(-13px);
}
body .concept .inner picture img {
  width: 102%;
  max-width: none;
  -webkit-transform: translateX(-1%);
          transform: translateX(-1%);
}
@media screen and (max-width: 768px) {
  body .concept .inner picture img {
    width: 100%;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
body .concept .inner .text_box {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
}
body .concept .inner .text_box h2 {
  font-size: 38px;
  color: #000000;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  body .concept .inner .text_box h2 {
    font-size: 20px;
  }
}
body .concept .inner .text_box h2 span {
  font-size: 55px;
  color: #f08d14;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  body .concept .inner .text_box h2 span {
    font-size: 24px;
  }
}
body .concept .inner .text_box p {
  width: 55%;
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  body .concept .inner .text_box p {
    width: 90%;
    margin-top: 15px;
    font-weight: 400;
    font-size: 14px;
  }
}
body .concept .inner .text_box p.message {
  margin-top: 20px;
  width: 100%;
  font-size: 30px;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  body .concept .inner .text_box p.message {
    font-size: 18px;
  }
}
body .concept .inner .text_box p.message span {
  color: #f08d14;
  font-weight: 500;
}
body .variety {
  width: 100%;
  background: #fdf1e8;
  padding-bottom: 140px;
}
@media screen and (max-width: 1024px) {
  body .variety {
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 900px) {
  body .variety {
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 900px) and (max-width: 768px) {
  body .variety {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 900px) and (max-width: 768px) and (max-width: 600px) {
  body .variety {
    padding-bottom: 0px;
  }
}
body .variety .bg_triangle_top {
  width: 100%;
  background: #fff;
  height: 65px;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}
@media screen and (max-width: 768px) {
  body .variety .bg_triangle_top {
    height: 30px;
  }
}
body .variety .inner {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
body .variety .inner .top_img {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  body .variety .inner .top_img {
    padding-top: 50px;
  }
}
body .variety .inner .top_img img {
  width: 100%;
  padding-top: 50px;
}
body .variety .inner .note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
body .variety .inner .note p {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 300;
}
body .variety .inner .variety_box {
  width: 100%;
  padding-top: 100px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 768px) {
  body .variety .inner .variety_box {
    gap: 20px;
    padding-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
body .variety .inner .variety_box .variety_item {
  background-color: #fff;
}
body .variety .inner .variety_box .variety_item .title p {
  text-align: center;
  color: #f08d14;
  font-size: 20px;
  font-weight: 700;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  body .variety .inner .variety_box .variety_item .title p {
    font-size: 18px;
  }
}
body .variety .inner .variety_box .variety_item .img_box img {
  width: 100%;
}
body .variety .inner .variety_box .variety_item .text_box {
  padding: 25px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  body .variety .inner .variety_box .variety_item .text_box {
    padding: 20px 15px;
  }
}
body .variety .inner .variety_box .variety_item .text_box .text p {
  padding: 10px 0;
  line-height: 2;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  body .variety .inner .variety_box .variety_item .text_box .text p {
    font-size: 14px;
  }
}
body .variety .inner .variety_box .variety_item .text_box .text p.lead {
  font-size: 18px;
  font-weight: 700;
  padding: 0;
}
@media screen and (max-width: 768px) {
  body .variety .inner .variety_box .variety_item .text_box .text p.lead {
    font-size: 16px;
  }
}
body .variety .inner .variety_box .variety_item .text_box .text p.lead::before {
  content: "●";
  color: #d8aa4e;
}
body .variety .inner .variety_box .variety_item .text_box .text p.lead span {
  color: #f08d14;
  font-weight: 700;
}
body .variety .inner .variety_box .variety_item .text_box .table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
body .variety .inner .variety_box .variety_item .text_box .table .merit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
body .variety .inner .variety_box .variety_item .text_box .table .merit dt {
  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;
  width: 100px;
  height: 35px;
  background: #f08d14;
  color: #fff;
  border-radius: 3px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  body .variety .inner .variety_box .variety_item .text_box .table .merit dt {
    font-size: 14px;
  }
}
body .variety .inner .variety_box .variety_item .text_box .table .merit dd {
  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;
  width: calc(100% - 110px);
  color: #000000;
  font-size: 16px;
  line-height: 1.5625;
}
@media screen and (max-width: 768px) {
  body .variety .inner .variety_box .variety_item .text_box .table .merit dd {
    font-size: 14px;
  }
}
body .variety .inner .variety_box .variety_item .text_box .table .demerit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
body .variety .inner .variety_box .variety_item .text_box .table .demerit dt {
  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;
  width: 100px;
  height: 35px;
  border: 1px solid #000000;
  border-radius: 3px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  body .variety .inner .variety_box .variety_item .text_box .table .demerit dt {
    font-size: 14px;
  }
}
body .variety .inner .variety_box .variety_item .text_box .table .demerit dd {
  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;
  width: calc(100% - 110px);
  color: #000000;
  font-size: 16px;
  line-height: 1.5625;
}
@media screen and (max-width: 768px) {
  body .variety .inner .variety_box .variety_item .text_box .table .demerit dd {
    font-size: 14px;
  }
}
body .variety .inner .feature {
  width: 100%;
  padding-top: 100px;
  padding-bottom: 50px;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  body .variety .inner .feature {
    padding-top: 50px;
    padding-bottom: 30px;
  }
}
body .variety .inner .feature .title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.9444444444;
}
@media screen and (max-width: 768px) {
  body .variety .inner .feature .title {
    font-size: 24px;
    line-height: 1.8;
  }
}
body .variety .inner .feature .title .br_md {
  display: block;
}
@media screen and (max-width: 768px) {
  body .variety .inner .feature .title .br_md {
    display: none;
  }
}
body .variety .inner .feature .title span {
  color: #f08d14;
  font-weight: 700;
  font-size: 42px;
}
@media screen and (max-width: 768px) {
  body .variety .inner .feature .title span {
    font-size: 26px;
  }
}
body .variety .inner .feature .title span.underline {
  z-index: -1;
  color: #000000;
  font-size: 36px;
  font-weight: 700;
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(75%, rgba(255, 255, 255, 0)), color-stop(75%, rgb(239, 194, 83)), to(rgb(239, 194, 83)));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 75%, rgb(239, 194, 83) 75%, rgb(239, 194, 83) 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 75%, rgb(239, 194, 83) 75%, rgb(239, 194, 83) 100%);
}
@media screen and (max-width: 768px) {
  body .variety .inner .feature .title span.underline {
    font-size: 26px;
  }
}
body .variety .inner .feature .title b {
  color: #f08d14;
  font-size: 36px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  body .variety .inner .feature .title b {
    font-size: 26px;
  }
}
body .variety .inner .feature .disc {
  padding-top: 20px;
  padding-inline: 100px;
  font-size: 16px;
  text-align: center;
  line-height: 2.5;
}
@media screen and (max-width: 768px) {
  body .variety .inner .feature .disc {
    padding-inline: 0;
    text-align: left;
    line-height: 2;
    font-size: 14px;
  }
}
body .variety .inner .feature .question {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
@media screen and (max-width: 768px) {
  body .variety .inner .feature .question {
    margin-top: 30px;
  }
}
body .variety .inner .feature .question .img_box {
  width: 94.5%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  body .variety .inner .feature .question .img_box {
    width: 81.6%;
  }
}
body .variety .inner .feature .question .img_box img {
  width: 100%;
}
body .variety .inner .feature .question p {
  margin-top: 150px;
  padding-left: 30%;
  top: 20%;
  right: 0;
  display: inline;
  font-size: 36px;
  font-weight: 700;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  body .variety .inner .feature .question p {
    font-size: 24px;
    text-align: center;
    padding-left: 110px;
    padding-top: 230px;
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) and (max-width: 600px) {
  body .variety .inner .feature .question p {
    padding-top: 200px;
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) and (max-width: 600px) and (max-width: 500px) {
  body .variety .inner .feature .question p {
    padding-top: 160px;
  }
}
body .variety .inner .feature .question p span.underline {
  z-index: -1;
  color: #000000;
  font-size: 36px;
  font-weight: 700;
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(75%, rgba(255, 255, 255, 0)), color-stop(75%, rgb(239, 194, 83)), to(rgb(239, 194, 83)));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 75%, rgb(239, 194, 83) 75%, rgb(239, 194, 83) 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 75%, rgb(239, 194, 83) 75%, rgb(239, 194, 83) 100%);
}
@media screen and (max-width: 768px) {
  body .variety .inner .feature .question p span.underline {
    font-size: 24px;
  }
}
body .bg_triangle_bottom {
  width: 100%;
  background: #fdf1e8;
  height: 65px;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}
@media screen and (max-width: 768px) {
  body .bg_triangle_bottom {
    height: 30px;
  }
}
body .flow {
  width: 100%;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  body .flow {
    margin-top: 50px;
  }
}
body .flow .inner {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
body .flow .inner .title {
  background: #f08d14;
  border-radius: 6px;
  height: 64px;
  width: 100%;
  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;
}
body .flow .inner .title p {
  text-align: center;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  body .flow .inner .title p {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) and (max-width: 600px) {
  body .flow .inner .title p {
    font-size: 16px;
  }
}
body .flow .inner .top_img {
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  body .flow .inner .top_img {
    padding: 30px 0;
  }
}
body .flow .inner .top_img img {
  width: 715px;
}
@media screen and (max-width: 768px) {
  body .flow .inner .top_img img {
    width: 100%;
  }
}
body .flow .inner .flow_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}
body .flow .inner .flow_list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border: 1px solid #f08d14;
  border-radius: 10px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  body .flow .inner .flow_list dl {
    margin-bottom: 30px;
  }
}
body .flow .inner .flow_list dl:nth-child(5) {
  margin-top: 200px;
  position: relative;
}
@media screen and (max-width: 768px) {
  body .flow .inner .flow_list dl:nth-child(5) {
    margin-top: 150px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) and (max-width: 600px) {
  body .flow .inner .flow_list dl:nth-child(5) {
    margin-top: 120px;
  }
}
@media screen and (max-width: 768px) and (max-width: 600px) and (max-width: 400px) {
  body .flow .inner .flow_list dl:nth-child(5) {
    margin-top: 100px;
  }
}
body .flow .inner .flow_list dl:nth-child(5) .img_box {
  position: absolute;
  top: -40px;
  left: 50%;
  width: 56.7%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  min-width: 220px;
}
body .flow .inner .flow_list dl:nth-child(5) .img_box img {
  width: 100%;
}
body .flow .inner .flow_list dl:nth-child(5) dt {
  background: #f08d14;
}
body .flow .inner .flow_list dl:nth-child(5) dt p {
  color: #fff;
}
body .flow .inner .flow_list dl:nth-child(5) dt::after {
  display: none;
}
body .flow .inner .flow_list dl dt {
  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;
  position: relative;
  border-radius: 10px 0 0 10px;
  background: rgb(252, 232, 208);
}
body .flow .inner .flow_list dl dt::after {
  content: "";
  position: absolute;
  background-image: -webkit-linear-gradient(90deg, #f08d14 12px, transparent 8px);
  background-image: linear-gradient(to 90deg, #f08d14 12px, transparent 8px);
  background-size: 3px 20px;
  background-repeat: repeat-y;
  background-position: left bottom;
  width: 100%;
  height: 250px;
  top: 100%;
  left: 50%;
}
body .flow .inner .flow_list dl dt::after:nth-child(4) {
  height: 100%;
  background-image: -webkit-linear-gradient(90deg, #f08d14 3px, transparent 2px);
  background-image: linear-gradient(to 90deg, #f08d14 3px, transparent 2px);
  background-size: 3px 10px;
}
body .flow .inner .flow_list dl dt p {
  font-size: 40px;
  color: #f08d14;
  opacity: 1;
  padding: 75px;
}
@media screen and (max-width: 768px) {
  body .flow .inner .flow_list dl dt p {
    font-size: 24px;
    padding: 15px;
  }
}
body .flow .inner .flow_list dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px 40px;
}
@media screen and (max-width: 768px) {
  body .flow .inner .flow_list dl dd {
    padding: 10px 15px;
  }
}
body .flow .inner .flow_list dl dd.separate {
  border-radius: 0 10px 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  background: rgb(252, 232, 208);
}
@media screen and (max-width: 768px) {
  body .flow .inner .flow_list dl dd.separate {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
body .flow .inner .flow_list dl dd.separate .separate_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
}
@media screen and (max-width: 768px) {
  body .flow .inner .flow_list dl dd.separate .separate_content {
    width: 100%;
  }
}
body .flow .inner .flow_list dl dd.separate .separate_content:nth-child(1) {
  border-right: solid 1px #f08d14;
  margin-right: 25px;
  padding-right: 25px;
}
@media screen and (max-width: 768px) {
  body .flow .inner .flow_list dl dd.separate .separate_content:nth-child(1) {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: solid 1px #f08d14;
  }
}
body .flow .inner .flow_list dl dd p.flow_name {
  font-size: 20px;
  font-weight: 700;
  padding: 10px 0;
  display: inline;
}
@media screen and (max-width: 768px) {
  body .flow .inner .flow_list dl dd p.flow_name {
    font-size: 16px;
    padding: 5px 0;
  }
}
body .flow .inner .flow_list dl dd p.flow_name span.underline {
  z-index: -1;
  color: #000000;
  font-weight: 700;
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(75%, rgba(255, 255, 255, 0)), color-stop(75%, rgb(255, 255, 255)), to(rgb(255, 255, 255)));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 75%, rgb(255, 255, 255) 75%, rgb(255, 255, 255) 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 75%, rgb(255, 255, 255) 75%, rgb(255, 255, 255) 100%);
}
body .flow .inner .flow_list dl dd p.flow_text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  body .flow .inner .flow_list dl dd p.flow_text {
    font-size: 14px;
    line-height: 1.75;
  }
}
body .flow .inner .flow_list dl dd p.note {
  font-size: 13px;
  font-weight: 300;
}
body .example {
  width: 100%;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  body .example {
    margin-top: 60px;
  }
}
body .example .inner {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
body .example .inner .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
body .example .inner .title p {
  font-size: 30px;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 768px) {
  body .example .inner .title p {
    font-size: 24px;
  }
}
body .example .inner .title p::before {
  content: "";
  background-image: url(/navi/lp001/index/img/example_top.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  top: 60%;
  left: -50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
}
body .example .inner .content_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  background-color: #fdf1e8;
}
@media screen and (max-width: 768px) {
  body .example .inner .content_box {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
body .example .inner .content_box .img_box {
  padding: 25px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  body .example .inner .content_box .img_box {
    width: 100%;
    padding: 15px;
  }
  body .example .inner .content_box .img_box img {
    width: 100%;
  }
}
body .example .inner .content_box .img_box ul.note li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
body .example .inner .content_box .img_box ul.note li p {
  font-size: 12px;
  margin-top: 10px;
  font-weight: 300;
}
body .example .inner .content_box .text_box {
  padding: 25px;
  width: 50%;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  body .example .inner .content_box .text_box {
    width: 100%;
    padding: 0;
  }
}
body .example .inner .content_box .text_box p.note {
  font-size: 12px;
  font-weight: 300;
}
body .example .inner .content_box .text_box p:nth-child(1) {
  font-size: 22px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  body .example .inner .content_box .text_box p:nth-child(1) {
    font-size: 16px;
  }
}
body .example .inner .content_box .text_box p:nth-child(1) span {
  color: #f08d14;
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  body .example .inner .content_box .text_box p:nth-child(1) span {
    font-size: 18px;
  }
}
body .example .inner .content_box .text_box p:nth-child(1) span.underline {
  border-bottom: 3px solid #000000;
}
body .example .inner .content_box .text_box p:nth-child(1) span b {
  font-size: 40px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  body .example .inner .content_box .text_box p:nth-child(1) span b {
    font-size: 24px;
  }
}
body .example .inner .content_box .text_box p:nth-child(1) span b:nth-child(2) {
  color: #000000;
  font-size: 25px;
}
@media screen and (max-width: 768px) {
  body .example .inner .content_box .text_box p:nth-child(1) span b:nth-child(2) {
    font-size: 18px;
  }
}
body .example .inner .content_box .text_box p:nth-child(2) {
  font-size: 36px;
}
@media screen and (max-width: 768px) {
  body .example .inner .content_box .text_box p:nth-child(2) {
    font-size: 24px;
  }
}
body .example .inner .content_box .text_box p:nth-child(2) span {
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(75%, rgba(255, 255, 255, 0)), color-stop(75%, rgb(255, 255, 255)), to(rgb(255, 255, 255)));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 75%, rgb(255, 255, 255) 75%, rgb(255, 255, 255) 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 75%, rgb(255, 255, 255) 75%, rgb(255, 255, 255) 100%);
}
body .example .inner .content_box .text_box p:nth-child(2) span b {
  font-size: 60px;
  color: #f08d14;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  body .example .inner .content_box .text_box p:nth-child(2) span b {
    font-size: 30px;
  }
}
body .example .inner .content_box .bg_triangle_bottom {
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: #fdf1e8;
  width: 100%;
  height: 30px;
}
body .example .inner .income {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 50px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  body .example .inner .income {
    margin-top: 30px;
  }
}
body .example .inner .income p {
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  body .example .inner .income p {
    font-size: 18px;
  }
}
body .example .inner .income p span {
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(60%, rgba(255, 255, 255, 0)), color-stop(60%, rgb(253, 241, 233)), to(rgb(253, 241, 233)));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 60%, rgb(253, 241, 233) 60%, rgb(253, 241, 233) 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 60%, rgb(253, 241, 233) 60%, rgb(253, 241, 233) 100%);
}
body .example .inner .income p span b {
  font-size: 46px;
  color: #f08d14;
}
@media screen and (max-width: 768px) {
  body .example .inner .income p span b {
    font-size: 36px;
  }
}
body .example .inner .income .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  body .example .inner .income .content {
    width: 100%;
  }
}
body .example .inner .income .content .decade {
  width: 285px;
  margin-top: 50px;
  background: #f08d14;
  font-size: 25px;
  position: relative;
  text-align: center;
  padding: 10px 0;
  color: #fff;
}
@media screen and (max-width: 768px) {
  body .example .inner .income .content .decade {
    margin-top: 40px;
    width: 100%;
    font-size: 18px;
  }
}
body .example .inner .income .content .decade::after {
  content: "";
  width: 100%;
  height: 20px;
  background: #f08d14;
  position: absolute;
  bottom: 1px;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}
body .example .inner .income .content .total {
  margin-top: 40px;
  font-size: 30px;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 768px) {
  body .example .inner .income .content .total {
    font-size: 24px;
    margin-top: 80px;
  }
}
body .example .inner .income .content .total b {
  color: #f08d14;
  font-size: 64px;
}
@media screen and (max-width: 768px) {
  body .example .inner .income .content .total b {
    font-size: 36px;
  }
}
body .example .inner .income .content img {
  width: 74.8%;
  position: absolute;
  top: 68%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  body .example .inner .income .content img {
    width: 100%;
    top: 80%;
  }
}
@media screen and (max-width: 768px) and (max-width: 600px) {
  body .example .inner .income .content img {
    top: 75%;
  }
}
body .consult {
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  margin-top: 280px;
}
@media screen and (max-width: 768px) {
  body .consult {
    margin-top: 280px;
  }
}
@media screen and (max-width: 768px) and (max-width: 600px) {
  body .consult {
    margin-top: 180px;
  }
}
body .consult .message {
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  body .consult .message {
    margin-bottom: 80px;
  }
}
body .consult .message .message_box {
  width: 100%;
  position: relative;
}
body .consult .message .message_box .inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
body .consult .message .message_box .inner .img_box {
  position: absolute;
  top: -22%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  width: 69%;
}
@media screen and (max-width: 768px) {
  body .consult .message .message_box .inner .img_box {
    width: 61%;
    top: -40%;
  }
}
@media screen and (max-width: 768px) and (max-width: 600px) {
  body .consult .message .message_box .inner .img_box {
    top: -25%;
  }
}
body .consult .message .message_box .inner .img_box img {
  width: 100%;
}
body .consult .message .message_box .inner .comment {
  background: #f08d14;
  margin: 0 calc(50% - 50vw);
}
body .consult .message .message_box .inner .comment p {
  font-size: 25px;
  font-weight: 500;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  body .consult .message .message_box .inner .comment p {
    font-size: 20px;
    padding: 10px 0;
  }
}
body .consult .message .message_box .inner .main {
  background: #fdf1e8;
  margin: 0 calc(50% - 50vw);
}
body .consult .message .message_box .inner .main p {
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  body .consult .message .message_box .inner .main p {
    font-size: 22px;
    padding: 20px 5%;
  }
}
body .consult .message .message_box .inner .main p b {
  color: #f08d14;
  border-bottom: 3px solid #000000;
}
body .consult .message .inner {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
body .consult .message .inner .consult_box {
  width: 100%;
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  body .consult .message .inner .consult_box {
    padding-top: 30px;
  }
}
body .consult .message .inner .consult_box h3 {
  text-align: center;
  font-size: 30px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  body .consult .message .inner .consult_box h3 {
    font-size: 20px;
  }
}
body .consult .message .inner .consult_box h3 span {
  font-weight: 500;
}
body .consult .message .inner .consult_box h3 span.dots {
  background-image: -webkit-radial-gradient(center, circle, #f08d14 20%, transparent 20%);
  background-image: radial-gradient(circle at center, #f08d14 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.5em;
  padding-top: 0.4em;
}
body .consult .message .inner .consult_box h3 span:nth-child(2) {
  font-size: 30px;
  color: #f08d14;
}
@media screen and (max-width: 768px) {
  body .consult .message .inner .consult_box h3 span:nth-child(2) {
    font-size: 24px;
  }
}
body .consult .message .inner .consult_box h3 span:nth-child(2) b {
  font-size: 50px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  body .consult .message .inner .consult_box h3 span:nth-child(2) b {
    font-size: 30px;
  }
}
body .consult .message .inner .consult_box .btn_area {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  body .consult .message .inner .consult_box .btn_area {
    margin-top: 30px;
    margin-bottom: 100px;
  }
}
body .consult .message .inner .consult_box .btn_area .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 50px;
}
@media screen and (max-width: 1200px) {
  body .consult .message .inner .consult_box .btn_area .btn {
    gap: 0 30px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  body .consult .message .inner .consult_box .btn_area .btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4vw;
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) and (max-width: 500px) {
  body .consult .message .inner .consult_box .btn_area .btn {
    width: 100%;
  }
}
body .consult .message .inner .consult_box .btn_area .btn li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body .consult .message .inner .consult_box .btn_area .btn li:nth-child(1) .btn_link {
  background: #de0000;
}
@media screen and (max-width: 1200px) {
  body .consult .message .inner .consult_box .btn_area .btn li {
    max-width: 300px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  body .consult .message .inner .consult_box .btn_area .btn li {
    max-width: 100%;
    width: 100%;
  }
}
body .consult .message .inner .consult_box .btn_area .btn li > p {
  font-size: 16px;
  padding-bottom: 10px;
  font-weight: 500;
}
body .consult .message .inner .consult_box .btn_area .btn li > p span {
  font-weight: 500;
  color: #f08d14;
}
body .consult .message .inner .consult_box .btn_area .btn li .btn_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fc5f1a;
  width: 380px;
  padding: 0 30px;
  height: 85px;
  border-radius: 10px;
  -webkit-box-shadow: 0 9px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 9px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  text-decoration: none;
}
@media screen and (max-width: 1200px) {
  body .consult .message .inner .consult_box .btn_area .btn li .btn_link {
    height: 70px;
    max-width: 100%;
    padding: 0 20px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 500px) {
  body .consult .message .inner .consult_box .btn_area .btn li .btn_link {
    width: 100%;
    height: 60px;
  }
}
body .consult .message .inner .consult_box .btn_area .btn li .btn_link:hover {
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2);
  position: relative;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}
body .consult .message .inner .consult_box .btn_area .btn li .btn_link p {
  font-size: 26px;
  color: #fff;
  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;
  gap: 0 20px;
  text-align: center;
  line-height: 1.24;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1200px) {
  body .consult .message .inner .consult_box .btn_area .btn li .btn_link p {
    font-size: 20px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  body .consult .message .inner .consult_box .btn_area .btn li .btn_link p {
    gap: 10px;
    font-size: 16px;
  }
}
body .consult .message .inner .consult_box .btn_area .btn li .btn_link p .br_md {
  display: block;
}
@media screen and (max-width: 768px) {
  body .consult .message .inner .consult_box .btn_area .btn li .btn_link p .br_md {
    display: none;
  }
}
body .consult .message .inner .consult_box .btn_area .btn li .btn_link p .arrow {
  width: 25px;
}
@media screen and (max-width: 1200px) {
  body .consult .message .inner .consult_box .btn_area .btn li .btn_link p .arrow {
    width: 20px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  body .consult .message .inner .consult_box .btn_area .btn li .btn_link p .arrow {
    width: 13px;
  }
}
body .support {
  width: 100%;
  margin-top: 200px;
}
@media screen and (max-width: 600px) {
  body .support {
    margin-top: 160px;
  }
}
body .support .inner {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
body .support .inner .support_top {
  position: relative;
}
body .support .inner .support_top .img_box {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
body .support .inner .support_top .img_box img {
  padding-top: 30px;
  width: 49.9%;
}
@media screen and (max-width: 768px) {
  body .support .inner .support_top .img_box img {
    width: 100%;
    display: none;
  }
}
body .support .inner .support_top .text_box {
  position: absolute;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  body .support .inner .support_top .text_box {
    width: 100%;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    top: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
body .support .inner .support_top .text_box h2 {
  font-size: 28px;
  font-weight: 500;
  padding-left: 120px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  body .support .inner .support_top .text_box h2 {
    padding-left: 0px;
    width: 100%;
    font-size: clamp(1rem, 6.4vmin, 24px);
  }
  body .support .inner .support_top .text_box h2 .br_md {
    display: block;
  }
}
body .support .inner .support_top .text_box h2::before {
  content: "";
  background-image: url(/navi/lp001/index/img/if_makes.png);
  background-repeat: no-repeat;
  display: block;
  width: 100px;
  height: 100px;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  body .support .inner .support_top .text_box h2::before {
    background-image: url(/navi/lp001/index/img/if_makes_sp.png);
    width: 17.7%;
    min-width: 120px;
    top: -45px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
body .support .inner .support_top .text_box h2 span {
  font-size: 42px;
  color: #f08d14;
}
@media screen and (max-width: 768px) {
  body .support .inner .support_top .text_box h2 span {
    font-size: 24px;
  }
}
body .support .inner .support_top .text_box p {
  padding-left: 10%;
  margin-top: 30px;
  font-size: 16px;
  text-align: center;
  z-index: 2;
  margin-bottom: 30px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  body .support .inner .support_top .text_box p {
    padding-left: 0;
    text-align: left;
    line-height: 1.75;
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  body .support .support_box {
    margin-top: 50px;
  }
}
body .support .support_box .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  body .support .support_box .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 0;
  }
}
body .support .support_box .content .img_box {
  width: 50%;
}
@media screen and (max-width: 768px) {
  body .support .support_box .content .img_box {
    width: 100%;
  }
}
body .support .support_box .content .img_box img {
  width: 100%;
}
body .support .support_box .content .text_box {
  width: calc(50% - 40px);
}
@media screen and (max-width: 768px) {
  body .support .support_box .content .text_box {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  body .support .support_box .content .text_box {
    width: 100%;
    margin-top: 30px;
  }
}
body .support .support_box .content .text_box .title p {
  display: inline-block;
  background-color: #d8aa4e;
  border-radius: 10px;
  padding: 10px 30px;
  font-size: 30px;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  body .support .support_box .content .text_box .title p {
    font-size: 20px;
    padding: 10px 20px;
  }
}
body .support .support_box .content .text_box .title p span {
  font-size: 0.8rem;
  vertical-align: top;
}
body .support .support_box .content .text_box .title p::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #8a6e4b;
  position: absolute;
  top: 10%;
  right: 3%;
}
body .support .support_box .content .text_box .lead {
  margin-top: 20px;
}
body .support .support_box .content .text_box .lead p {
  font-size: 24px;
  color: #000000;
}
@media screen and (max-width: 768px) {
  body .support .support_box .content .text_box .lead p {
    font-size: 18px;
  }
}
body .support .support_box .content .text_box .disc {
  font-size: 16px;
  margin-top: 20px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  body .support .support_box .content .text_box .disc {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 50px;
  }
}
body .support .support_box .content .text_box .disc span {
  font-size: 12px;
  font-weight: 300;
}
body .owner {
  width: 100%;
  background: #fdf1e8;
  padding-top: 70px;
  margin-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  body .owner {
    margin-top: 0;
    padding-bottom: 50px;
  }
}
body .owner .inner {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  body .owner .inner {
    padding: 0;
  }
}
body .owner .inner .owner_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
}
body .owner .inner .owner_area .top_img {
  width: 17%;
  position: absolute;
  top: -80px;
  left: 10%;
}
@media screen and (max-width: 1000px) {
  body .owner .inner .owner_area .top_img {
    width: 20%;
    top: -10%;
  }
}
@media screen and (max-width: 1000px) and (max-width: 768px) {
  body .owner .inner .owner_area .top_img {
    left: 0;
    top: -20px;
  }
}
body .owner .inner .owner_area .top_img img {
  width: 100%;
}
body .owner .inner .owner_area .title {
  text-align: center;
  padding: 20px 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  body .owner .inner .owner_area .title {
    padding: 15px 0 20px;
  }
}
body .owner .inner .owner_area .title p {
  font-size: 42px;
}
@media screen and (max-width: 768px) {
  body .owner .inner .owner_area .title p {
    font-size: 28px;
  }
}
body .owner .inner .owner_area .title p span {
  color: #f08d14;
}
@media screen and (max-width: 768px) {
  body .owner .inner .owner_area .owner_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
body .owner .inner .owner_area .owner_box .owner_item {
  background: #fff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  padding: 30px 40px;
  margin-bottom: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  body .owner .inner .owner_area .owner_box .owner_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
    padding: 15px;
  }
}
body .owner .inner .owner_area .owner_box .owner_item:nth-child(2) {
  margin-left: auto;
}
body .owner .inner .owner_area .owner_box .owner_item .img_box {
  max-width: 120px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  body .owner .inner .owner_area .owner_box .owner_item .img_box {
    width: 100%;
  }
}
body .owner .inner .owner_area .owner_box .owner_item .img_box img {
  width: 100%;
}
body .owner .inner .owner_area .owner_box .owner_item .img_box p {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #8a6e4b;
}
@media screen and (max-width: 768px) {
  body .owner .inner .owner_area .owner_box .owner_item .img_box p {
    font-size: 12px;
  }
}
body .owner .inner .owner_area .owner_box .owner_item .text_box {
  width: calc(100% - 165px);
}
@media screen and (max-width: 768px) {
  body .owner .inner .owner_area .owner_box .owner_item .text_box {
    width: 100%;
  }
}
body .owner .inner .owner_area .owner_box .owner_item .text_box p {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  body .owner .inner .owner_area .owner_box .owner_item .text_box p {
    font-size: 14px;
  }
}
body .owner .inner .owner_area .owner_box .owner_item .text_box p span {
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(75%, rgba(255, 255, 255, 0)), color-stop(75%, rgb(239, 194, 83)), to(rgb(239, 194, 83)));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 75%, rgb(239, 194, 83) 75%, rgb(239, 194, 83) 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 75%, rgb(239, 194, 83) 75%, rgb(239, 194, 83) 100%);
}
body .Achievement {
  width: 100%;
  padding-bottom: 400px;
  padding-top: 100px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  body .Achievement {
    padding-top: 50px;
    padding-bottom: 0;
    margin-top: 0;
    overflow: hidden;
  }
}
body .Achievement .inner {
  margin: auto;
  width: 90%;
  max-width: 1000px;
}
body .Achievement .inner .content_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  body .Achievement .inner .content_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
body .Achievement .inner .content_box .img_box {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-top: 15%;
}
@media screen and (max-width: 768px) {
  body .Achievement .inner .content_box .img_box {
    padding-top: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
}
body .Achievement .inner .content_box .img_box p {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  body .Achievement .inner .content_box .img_box p {
    font-size: 20px;
    text-align: left;
    width: 100%;
  }
}
body .Achievement .inner .content_box .img_box p::before {
  content: "●";
  color: #f08d14;
}
body .Achievement .inner .content_box .img_box img {
  margin-top: 30px;
  width: 65%;
}
body .Achievement .inner .content_box .text_box {
  width: 40%;
  position: relative;
  max-width: 1200px;
}
@media screen and (max-width: 768px) {
  body .Achievement .inner .content_box .text_box {
    width: 100%;
  }
}
body .Achievement .inner .content_box .text_box h2 {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.8888888889;
}
@media screen and (max-width: 768px) {
  body .Achievement .inner .content_box .text_box h2 {
    font-size: 24px;
    margin-top: 30px;
  }
}
body .Achievement .inner .content_box .text_box h2 b {
  color: #f08d14;
  font-weight: 500;
}
body .Achievement .inner .content_box .text_box h2 b span {
  font-weight: 500;
  background-image: -webkit-radial-gradient(center, circle, #f08d14 20%, transparent 20%);
  background-image: radial-gradient(circle at center, #f08d14 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.5em;
  padding-top: 0.4em;
}
body .Achievement .inner .content_box .text_box p {
  margin-top: 30px;
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  body .Achievement .inner .content_box .text_box p {
    margin-top: 20px;
    font-size: 14px;
  }
}
body .Achievement .inner .content_box .text_box p span {
  font-size: 0.8rem;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  body .Achievement .inner .content_box .text_box p span {
    font-size: 0.6rem;
  }
}
body .Achievement .inner .content_box .text_box p.note {
  font-size: 12px;
  font-weight: 300;
}
body .Achievement .inner .content_box .text_box::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  width: 320%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 20px solid #fdf1e8;
  border-radius: 100%;
  z-index: -1;
  aspect-ratio: 1/1;
  overflow: hidden;
}
body .help {
  width: 100%;
}
@media screen and (max-width: 768px) {
  body .help {
    margin-top: 250px;
  }
}
body .help .inner {
  max-width: 1000px;
  margin: 0 auto;
  width: 90%;
}
body .help .inner .content_box {
  width: 100%;
  position: relative;
}
body .help .inner .content_box .img_box {
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-left: calc(50% - 50vw);
  background: #fdf1e8;
}
body .help .inner .content_box .img_box img {
  width: 49.9%;
}
@media screen and (max-width: 768px) {
  body .help .inner .content_box .img_box img {
    width: 100%;
  }
}
body .help .inner .content_box .text_box {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  body .help .inner .content_box .text_box {
    width: 100%;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    top: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-bottom: 50px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
body .help .inner .content_box .text_box h2 {
  margin-top: 20px;
  font-size: 52px;
  font-weight: 500;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  body .help .inner .content_box .text_box h2 {
    margin-top: 10px;
    font-size: clamp(1rem, 6.4vmin, 24px);
    text-align: center;
  }
}
body .help .inner .content_box .text_box h2 span {
  font-size: 52px;
  color: #f08d14;
  border-bottom: 3px solid #000000;
  position: relative;
}
@media screen and (max-width: 768px) {
  body .help .inner .content_box .text_box h2 span {
    font-size: clamp(1rem, 6.4vmin, 24px);
    border-bottom: 2px solid #000000;
  }
}
body .help .inner .content_box .text_box h2 span::before {
  position: absolute;
  content: "メイクス";
  top: -10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 16px;
  font-weight: 700;
  color: #f08d14;
  letter-spacing: 1em;
}
@media screen and (max-width: 768px) {
  body .help .inner .content_box .text_box h2 span::before {
    font-size: 8px;
    top: -15%;
    white-space: nowrap;
    font-size: 10px;
  }
}
body .help .inner .content_box .text_box p {
  z-index: 2;
  font-size: 28px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 768px) {
  body .help .inner .content_box .text_box p {
    font-size: 18px;
  }
}
body .help .inner .content_box .text_box p .sp-b {
  display: none;
}
@media screen and (max-width: 768px) {
  body .help .inner .content_box .text_box p .sp-b {
    display: block;
  }
}
body .contact {
  width: 100%;
  margin-top: 60px;
}
body .contact .contact_box {
  width: 100%;
}
body .contact .contact_box h3 {
  text-align: center;
  font-size: 30px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  body .contact .contact_box h3 {
    font-size: 20px;
  }
}
body .contact .contact_box h3 span {
  font-weight: 500;
}
body .contact .contact_box h3 span.dots {
  background-image: -webkit-radial-gradient(center, circle, #f08d14 20%, transparent 20%);
  background-image: radial-gradient(circle at center, #f08d14 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.5em;
  padding-top: 0.4em;
}
body .contact .contact_box h3 span:nth-child(2) {
  font-size: 30px;
  color: #f08d14;
}
@media screen and (max-width: 768px) {
  body .contact .contact_box h3 span:nth-child(2) {
    font-size: 24px;
  }
}
body .contact .contact_box h3 span:nth-child(2) b {
  font-size: 50px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  body .contact .contact_box h3 span:nth-child(2) b {
    font-size: 30px;
  }
}
body .contact .contact_box .contact_item {
  width: 90%;
  margin-top: 50px;
  max-width: 1000px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  body .contact .contact_box .contact_item {
    max-width: 100%;
    width: 100%;
  }
}
body .contact .contact_box .contact_item .tabcontrol {
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  body .contact .contact_box .contact_item .tabcontrol {
    gap: 10px;
  }
}
body .contact .contact_box .contact_item .tabcontrol li {
  display: grid;
  grid-template-rows: auto 110px;
  width: 100%;
  height: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 1200px) {
  body .contact .contact_box .contact_item .tabcontrol li {
    grid-template-rows: auto 85px;
  }
}
body .contact .contact_box .contact_item .tabcontrol li > p {
  font-size: 16px;
  padding-bottom: 10px;
  font-weight: 500;
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  body .contact .contact_box .contact_item .tabcontrol li > p {
    font-size: 13px;
  }
  body .contact .contact_box .contact_item .tabcontrol li > p .br_md {
    display: block;
  }
}
body .contact .contact_box .contact_item .tabcontrol li > p .br_sm {
  display: none;
}
@media screen and (max-width: 600px) {
  body .contact .contact_box .contact_item .tabcontrol li > p .br_sm {
    display: block;
  }
}
body .contact .contact_box .contact_item .tabcontrol li > p span {
  font-weight: 500;
  color: #f08d14;
}
body .contact .contact_box .contact_item .tabcontrol li .btn_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 4px solid #de0000;
  border-bottom: none;
  width: 100%;
  padding: 0 30px;
  height: 85px;
  border-radius: 10px 10px 0 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
  z-index: 10;
}
body .contact .contact_box .contact_item .tabcontrol li .btn_link.is_active {
  background: #de0000;
  border-bottom: none;
}
body .contact .contact_box .contact_item .tabcontrol li .btn_link.is_active p {
  color: #fff;
}
body .contact .contact_box .contact_item .tabcontrol li .btn_link.is_active p .arrow {
  display: none;
}
@media screen and (max-width: 1200px) {
  body .contact .contact_box .contact_item .tabcontrol li .btn_link {
    height: 70px;
    max-width: 100%;
    padding: 0 20px;
    width: 100%;
  }
}
@media screen and (max-width: 1200px) and (max-width: 500px) {
  body .contact .contact_box .contact_item .tabcontrol li .btn_link {
    height: 60px;
    padding: 0 10px;
  }
}
body .contact .contact_box .contact_item .tabcontrol li .btn_link p {
  font-size: 26px;
  color: #fff;
  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;
  gap: 0 20px;
  line-height: 1.24;
  text-align: center;
  letter-spacing: 0.1em;
  color: #de0000;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  body .contact .contact_box .contact_item .tabcontrol li .btn_link p {
    font-size: 20px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  body .contact .contact_box .contact_item .tabcontrol li .btn_link p {
    line-height: 1.3571428571;
    gap: 10px;
    font-size: 14px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) and (max-width: 500px) {
  body .contact .contact_box .contact_item .tabcontrol li .btn_link p {
    font-size: 12px;
  }
}
body .contact .contact_box .contact_item .tabcontrol li .btn_link p .br_md {
  display: block;
}
body .contact .contact_box .contact_item .tabcontrol li .btn_link p .arrow {
  width: 25px;
}
@media screen and (max-width: 1200px) {
  body .contact .contact_box .contact_item .tabcontrol li .btn_link p .arrow {
    width: 20px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  body .contact .contact_box .contact_item .tabcontrol li .btn_link p .arrow {
    width: 13px;
  }
}
body .contact .contact_box .contact_item .tabbody {
  position: relative;
  border-top: 13px solid #de0000;
  margin-top: -25px;
  margin-bottom: 50px;
  z-index: 12;
}
body .contact .contact_box .contact_item .tabbody .tab {
  display: none;
  padding: 0 35px;
  overflow-y: auto;
}
body .contact .contact_box .contact_item .tabbody .tab:nth-child(2) iframe {
  min-height: 1720px;
}
@media screen and (max-width: 947px) {
  body .contact .contact_box .contact_item .tabbody .tab:nth-child(2) iframe {
    min-height: 2180px;
  }
}
@media screen and (max-width: 600px) {
  body .contact .contact_box .contact_item .tabbody .tab:nth-child(2) iframe {
    min-height: 2350px;
  }
}
body .contact .contact_box .contact_item .tabbody .tab iframe {
  min-height: 740px;
}
@media screen and (max-width: 947px) {
  body .contact .contact_box .contact_item .tabbody .tab iframe {
    min-height: 950px;
  }
}
@media screen and (max-width: 768px) {
  body .contact .contact_box .contact_item .tabbody .tab {
    padding: 0 25px;
  }
}
body .contact .contact_box .contact_item .tabbody .tab.is_active {
  display: block;
  border: 1px solid #eeeae3;
}
@media screen and (max-width: 768px) {
  body .contact .contact_box .contact_item .tabbody .tab.is_active {
    border: none;
  }
}

.required .formHeading:after {
  background: #fff !important;
}

footer .copyright {
  background: #8a6e4b;
  height: 50px;
  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 .copyright p {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
/*# sourceMappingURL=layout.css.map */
