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

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

iframe {
  vertical-align: bottom;
}

q, blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

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

.pc {
  display: block !important;
}

.tb {
  display: none !important;
}

.sp {
  display: none !important;
}

.grecaptcha-badge {
  visibility: hidden;
}

.mincho {
  font-family: "Noto Serif JP", serif;
}

.gothic {
  font-family: "YakuHanJP", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", sans-serif;
}

.cmt_grd {
  font-family: "Cormorant Garamond", serif;
}

.fade {
  opacity: 0.1;
  transform: translate(0, 50px);
  transition: all 500ms;
}
.fade.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.topfade {
  opacity: 0;
  animation: topfade 3s ease normal forwards;
}

@keyframes topfade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-target {
  opacity: 0;
  transform: scale(0.8);
}

.animate-pop {
  animation: pop 0.6s ease-out forwards;
}

@keyframes pop {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  60% {
    transform: scale(1.15);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate-fade {
  animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
html, body {
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
}
html img, body img {
  width: 100%;
  line-height: 0;
  vertical-align: bottom;
}

body.noscroll {
  overflow: hidden;
  height: 100vh; /* スマホ対応のため */
}

header {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  width: 90%;
  margin-top: 1rem;
}
header.h_privacy {
  position: static;
  transform: inherit;
  width: auto;
  margin-top: 6rem;
}
header.h_privacy .wrap {
  display: inherit;
}
header.h_privacy .wrap .logo a {
  width: 20rem;
  margin: 0 auto;
}
header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .wrap .logo a {
  display: block;
  width: 16rem;
}
header .wrap .menu .inner ul {
  display: flex;
  justify-content: flex-start;
  padding: 1.5rem 3rem;
  background-color: #FFF;
  border-radius: 9999px;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.1);
}
header .wrap .menu .inner ul li {
  margin-right: 1.5rem;
}
header .wrap .menu .inner ul li:last-of-type {
  margin-right: 0;
}
header .wrap .menu .inner ul li a {
  color: #000;
  text-decoration: none;
}

nav {
  position: fixed;
  z-index: 99;
}
nav .item {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 99;
}
nav .item .trigger {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  position: relative;
  width: 66px;
  height: 66px;
  background-color: #3c3c4a;
  border-radius: 50%;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
nav .item .trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  width: 50%;
  height: 2px;
  margin: 0 auto;
  background-color: #FFF;
  border-radius: 2px;
}
nav .item .trigger span:nth-of-type(1) {
  top: 1.5rem;
}
nav .item .trigger span:nth-of-type(2) {
  top: 2rem;
}
nav .item .trigger span:nth-of-type(3) {
  bottom: 1.5rem;
}
nav .item .menu01.active span:nth-of-type(1) {
  transform: translateY(8px) rotate(-45deg);
}
nav .item .menu01.active span:nth-of-type(2) {
  opacity: 0;
}
nav .item .menu01.active span:nth-of-type(3) {
  transform: translateY(-8px) rotate(45deg);
}
nav .nav_inner {
  display: none;
  position: relative;
  z-index: 98;
  background-color: rgba(240, 240, 230, 0.9);
}
nav .nav_inner .m_logo {
  width: 200px;
  height: auto;
  padding: 1.5rem 1rem;
}
nav .nav_inner ul {
  padding-top: 8rem;
}
nav .nav_inner ul li {
  margin-bottom: 2rem;
  text-align: center;
}
nav .nav_inner ul li a {
  font-size: 32px;
  font-weight: bold;
  color: #3c3c4a;
  text-decoration: none;
}
nav .nav_inner .line a {
  display: flex;
  justify-content: center;
  width: 24rem;
  margin: 0 auto;
  padding: 1rem 0;
  font-size: 22px;
  font-weight: bold;
  align-items: center;
  color: #3c3c4a;
  text-decoration: none;
  border: solid 1px #3c3c4a;
  border-radius: 12px;
  box-sizing: border-box;
}
nav .nav_inner .line a img {
  width: 6rem;
  margin-right: 1rem;
}

.contents .main_visual {
  position: relative;
  z-index: 1;
  height: 800px;
  background: url(../images/mv_bg.jpg) center center;
  background-size: cover;
}
.contents .main_visual h1 {
  position: absolute;
  top: 21%;
  left: 6%;
  font-size: 38px;
  font-weight: bold;
}
.contents .main_visual h1 .ch01 {
  color: #F69400;
  font-size: 52px;
}
.contents .main_visual h1 .ch02 {
  margin-left: 0.5rem;
  font-size: 52px;
  background: linear-gradient(transparent 60%, rgba(246, 148, 0, 0.4) 60%);
}
.contents .main_visual .point {
  position: absolute;
  top: 53%;
  left: 7%;
}
.contents .main_visual .point .wrap {
  display: flex;
  justify-content: flex-start;
}
.contents .main_visual .point .wrap .box {
  position: relative;
  margin-right: 5%;
}
.contents .main_visual .point .wrap .box:last-of-type {
  margin-right: 0;
}
.contents .main_visual .point .wrap .box .num {
  position: absolute;
  top: -3rem;
  left: 0.5rem;
}
.contents .main_visual .point .wrap .box .num p span {
  display: block;
  font-size: 43px;
  font-weight: bold;
  line-height: 1.2;
}
.contents .main_visual .point .wrap .box .detail {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12rem;
  height: 12rem;
  border: solid 2px #666;
  border-radius: 50%;
  box-sizing: border-box;
}
.contents .main_visual .point .wrap .box .detail p {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}
.contents .main_visual .img {
  position: absolute;
  bottom: 0;
  right: 2vw;
  z-index: 2;
  width: 36vw;
}
.contents .main_visual .s_txt {
  position: absolute;
  bottom: 30vw;
  right: 4vw;
  z-index: 4;
  width: 10rem;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.05rem;
  font-family: "Noto Serif JP", "Meiryo", sans-serif, serif;
}
.contents .main_visual .s_txt span {
  display: block;
}
.contents .main_visual .s_txt span .name {
  display: inline-block;
  font-size: 21px;
}
.contents .main_visual .btn {
  position: absolute;
  bottom: 3rem;
  left: 6rem;
}
.contents .main_visual .btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 54px;
  padding: 5px 30px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1rem;
  text-decoration: none;
  background-color: #3c3c4a;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.6s;
}
.contents .main_visual .btn a::after {
  content: "";
  display: block;
  aspect-ratio: 8/14;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  right: 20px;
  background-image: url(../images/icon_arrow_01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.contents .main_visual .btn a:hover {
  background-color: #F69400;
}
.contents .main_visual .scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  font-size: 12px;
  color: #555;
  font-family: sans-serif;
}
.contents .main_visual .scroll .arrow {
  width: 1px;
  height: 20px;
  margin: 6px auto 0;
  background: #555;
  animation: arrow-move 1.5s infinite ease-in-out;
}
@keyframes arrow-move {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(5px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.contents .about-fee {
  position: relative;
  margin-bottom: 12rem;
  padding: 10rem 0 2rem;
  background-color: #f0f0e6;
}
.contents .about-fee::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 180px 50vw 0 50vw;
  border-color: #f0f0e6 #FFF transparent #FFF;
}
.contents .about-fee .wrap {
  display: flex;
  justify-content: flex-start;
  color: #3c3c4a;
}
.contents .about-fee .wrap .box {
  width: 50%;
}
.contents .about-fee .wrap .box:first-of-type h2 {
  margin-left: 10vw;
  font-size: 56px;
}
.contents .about-fee .wrap .box:first-of-type h2 span {
  display: flex;
  align-items: center;
  font-size: 28px;
}
.contents .about-fee .wrap .box:first-of-type h2 span::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  margin-right: 0.5rem;
  background-color: #3c3c4a;
}
.contents .about-fee .wrap .box:last-of-type h3 {
  margin-bottom: 3rem;
  font-size: 32px;
}
.contents .about-fee .wrap .box:last-of-type p {
  width: 42vw;
  font-size: 18px;
  text-align: justify;
  line-height: 2.5;
}
.contents .about-fee .bg {
  position: absolute;
  bottom: 9%;
  left: 5%;
  max-width: 520px;
  min-width: 460px;
  width: 34vw;
}
.contents .struct {
  padding: 5rem 0;
}
.contents .struct h4 {
  margin-bottom: 6rem;
  font-size: 46px;
  text-align: center;
}
.contents .struct .detail {
  position: relative;
  display: flex;
  justify-items: flex-start;
  align-items: flex-start;
  width: 1044px;
  margin: 0 auto 3rem;
}
.contents .struct .detail .arrow_01 {
  position: absolute;
  top: 16rem;
  left: 10.5rem;
  width: 7rem;
  height: 10rem;
  background: none;
  z-index: 1;
  pointer-events: none;
  background: url(../images/arrow_01.svg) center center no-repeat;
  background-size: contain;
}
.contents .struct .detail .arrow_01::before {
  content: "仲介手数料";
  position: absolute;
  top: 3rem;
  left: -6rem;
  width: 8.5rem;
  font-size: 20px;
  font-weight: bold;
}
.contents .struct .detail .arrow_02 {
  position: absolute;
  bottom: 11rem;
  left: 0;
  right: 0;
  width: 16rem;
  height: 5rem;
  margin: 0 auto;
  background: none;
  z-index: 1;
  pointer-events: none;
  background: url(../images/arrow_02.svg) center center no-repeat;
  background-size: contain;
}
.contents .struct .detail .arrow_02::before {
  content: "売買契約";
  position: absolute;
  top: -0.5rem;
  left: 0;
  right: 0;
  width: 5.1rem;
  margin: 0 auto;
  font-size: 20px;
  font-weight: bold;
}
.contents .struct .detail .arrow_03 {
  position: absolute;
  top: 16rem;
  right: 10rem;
  width: 7rem;
  height: 10rem;
  background: none;
  z-index: 1;
  pointer-events: none;
  background: url(../images/arrow_03.svg) center center no-repeat;
  background-size: contain;
}
.contents .struct .detail .arrow_03::before {
  content: "仲介手数料";
  position: absolute;
  top: 3rem;
  right: -8rem;
  width: 8.5rem;
  font-size: 20px;
  font-weight: bold;
}
.contents .struct .detail .icon {
  width: 333.333%;
  height: 410px;
  padding: 2rem;
  background-color: #FFF;
  border-radius: 1.2rem;
  box-shadow: 0 0 5px 0 #999;
  box-sizing: border-box;
}
.contents .struct .detail .icon:first-of-type {
  margin-top: 30rem;
}
.contents .struct .detail .icon:first-of-type .img {
  background: url(../images/detail_icon_03.svg) center 1.2rem no-repeat;
  background-size: contain;
}
.contents .struct .detail .icon:nth-of-type(3) .img {
  background: url(../images/detail_icon_01.svg) center center no-repeat;
  background-size: 7rem;
}
.contents .struct .detail .icon:nth-of-type(6) {
  margin-top: 30rem;
}
.contents .struct .detail .icon:nth-of-type(6) .img {
  background: url(../images/detail_icon_04.svg) center 1.3rem no-repeat;
  background-size: contain;
}
.contents .struct .detail .icon h5 {
  margin-bottom: 0.5rem;
  font-size: 28px;
  text-align: center;
}
.contents .struct .detail .icon .img {
  width: 14rem;
  height: 14rem;
  margin: 0 auto 0.5rem;
  border-radius: 50%;
  border: solid 6px #f1e15e;
  box-sizing: border-box;
}
.contents .struct .detail .icon p {
  font-size: 18px;
  text-align: justify;
  line-height: 2;
}
.contents .features {
  padding: 10rem 0;
  background-color: #FCFBF2;
}
.contents .features .section-title {
  text-align: center;
}
.contents .features .section-title h2 {
  position: relative;
  margin-bottom: 6rem;
  font-size: 46px;
  display: inline-block;
  padding-bottom: 2rem;
}
.contents .features .section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30rem;
  height: 1.4rem;
  background: url(../images/line_01.svg) top center no-repeat;
  background-size: contain;
}
.contents .features .lead {
  margin-bottom: 6rem;
}
.contents .features .lead p {
  width: 42vw;
  margin: 0 auto;
  font-size: 16px;
  text-align: justify;
  line-height: 2;
}
.contents .features .s_catch {
  margin-bottom: 4rem;
  text-align: center;
}
.contents .features .s_catch h3 {
  font-size: 28px;
  text-align: center;
}
.contents .features .s_catch img {
  width: 26vw;
  margin-bottom: 1.5rem;
}
.contents .features .s_catch p {
  margin-bottom: 0.5rem;
  font-size: 60px;
  font-weight: bold;
  text-align: center;
}
.contents .features .merit {
  margin-bottom: 6rem;
}
.contents .features .merit .wrap {
  display: flex;
  justify-content: center;
}
.contents .features .merit .wrap .box {
  position: relative;
  margin-right: 2%;
  padding: 4rem 2rem 2rem;
  background-color: #FFF;
  border-radius: 1.2rem;
  box-shadow: 0 0 4px 0 #999;
  box-sizing: border-box;
}
.contents .features .merit .wrap .box:last-of-type {
  margin-right: 0;
}
.contents .features .merit .wrap .box .num {
  position: absolute;
  top: 1.8rem;
  left: 1.8rem;
  z-index: 2;
}
.contents .features .merit .wrap .box .num p span {
  display: block;
  font-size: 43px;
  font-weight: bold;
  line-height: 1.2;
}
.contents .features .merit .wrap .box .detail {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12rem;
  height: 12rem;
  margin-bottom: 0;
  border: solid 2px #666;
  border-radius: 50%;
  box-sizing: border-box;
}
.contents .features .merit .wrap .box .detail p {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}
.contents .features .detail {
  position: relative;
  display: flex;
  justify-items: flex-start;
  align-items: flex-start;
  width: 1044px;
  margin: 0 auto 6rem;
}
.contents .features .detail .arrow_01 {
  position: absolute;
  top: 16rem;
  left: 10.5rem;
  width: 7rem;
  height: 10rem;
  background: none;
  z-index: 1;
  pointer-events: none;
  background: url(../images/arrow_01.svg) center center no-repeat;
  background-size: contain;
}
.contents .features .detail .arrow_01::before {
  content: "仲介手数料";
  position: absolute;
  top: 3rem;
  left: -6rem;
  width: 8.5rem;
  font-size: 20px;
  font-weight: bold;
}
.contents .features .detail .arrow_02 {
  position: absolute;
  bottom: 11rem;
  left: 0;
  right: 0;
  width: 16rem;
  height: 5rem;
  margin: 0 auto;
  background: none;
  z-index: 1;
  pointer-events: none;
  background: url(../images/arrow_02.svg) center center no-repeat;
  background-size: contain;
}
.contents .features .detail .arrow_02::before {
  content: "売買契約";
  position: absolute;
  top: -0.5rem;
  left: 0;
  right: 0;
  width: 5.1rem;
  margin: 0 auto;
  font-size: 20px;
  font-weight: bold;
}
.contents .features .detail .arrow_03 {
  position: absolute;
  top: 16rem;
  right: 10.5rem;
  width: 7rem;
  height: 10rem;
  background: none;
  z-index: 1;
  pointer-events: none;
  background: url(../images/arrow_03.svg) center center no-repeat;
  background-size: contain;
}
.contents .features .detail .arrow_03::before {
  content: '仲介手数料\a"最大無料"';
  position: absolute;
  top: 3rem;
  right: -7rem;
  width: 8.5rem;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  white-space: pre;
}
.contents .features .detail .icon {
  width: 33.333%;
  height: 410px;
  padding: 2rem;
  background-color: #FFF;
  border-radius: 1.2rem;
  box-shadow: 0 0 5px 0 #999;
  box-sizing: border-box;
}
.contents .features .detail .icon:first-of-type {
  margin-top: 30rem;
}
.contents .features .detail .icon:first-of-type .img {
  background: url(../images/detail_icon_03.svg) center 1.2rem no-repeat;
  background-size: contain;
}
.contents .features .detail .icon:nth-of-type(3) .img {
  background: url(../images/detail_icon_02.svg) center 1.2rem no-repeat;
  background-size: contain;
}
.contents .features .detail .icon:nth-of-type(6) {
  margin-top: 30rem;
}
.contents .features .detail .icon:nth-of-type(6) .img {
  background: url(../images/detail_icon_04.svg) center 1.3rem no-repeat;
  background-size: contain;
}
.contents .features .detail .icon h5 {
  margin-bottom: 0.5rem;
  font-size: 28px;
  text-align: center;
}
.contents .features .detail .icon .img {
  width: 14rem;
  height: 14rem;
  margin: 0 auto 0.5rem;
  border-radius: 50%;
  border: solid 6px #f1e15e;
  box-sizing: border-box;
}
.contents .features .detail .icon p {
  font-size: 18px;
  text-align: justify;
  line-height: 2;
}
.contents .features .portal ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 894px;
  margin: 0 auto 4rem;
  padding: 3rem;
  background-color: #FFF;
  border-radius: 1.2rem;
  box-shadow: 0 0 5px 0 #999;
}
.contents .features .portal ul li {
  width: 266px;
  margin-bottom: 3.5rem;
  font-size: 50px;
  text-align: center;
  line-height: 1.2;
}
.contents .features .portal ul li:first-of-type {
  color: #70be41;
}
.contents .features .portal ul li:nth-of-type(2) {
  color: #ec6001;
}
.contents .features .portal ul li:nth-of-type(3) {
  font-size: 52px;
  color: #cb0045;
}
.contents .features .portal ul li:nth-of-type(4) {
  margin-bottom: 0;
  font-size: 36px;
  color: #fe002f;
}
.contents .features .portal ul li:last-of-type {
  margin-bottom: 0;
  font-size: 36px;
  color: #259300;
}
.contents .features .portal ul li span {
  display: block;
  margin-top: 0.5rem;
  font-size: 18px;
  color: #3c3c4a;
}
.contents .features .portal p {
  width: 823px;
  margin: 0 auto 4rem;
  font-size: 42px;
  font-weight: bold;
  text-align: center;
}
.contents .features .portal .line a {
  display: flex;
  justify-content: center;
  width: 24rem;
  margin: 0 auto;
  padding: 1rem 0;
  font-size: 22px;
  font-weight: bold;
  align-items: center;
  color: #3c3c4a;
  text-decoration: none;
  border: solid 1px #3c3c4a;
  border-radius: 12px;
  box-sizing: border-box;
}
.contents .features .portal .line a img {
  width: 6rem;
  margin-right: 1rem;
}
.contents .inspection {
  position: relative;
  padding-top: 10rem;
  color: #3c3c4a;
}
.contents .inspection h2 {
  margin-bottom: 2.5rem;
  margin-left: 10vw;
  font-size: 56px;
}
.contents .inspection h2 span {
  display: flex;
  align-items: center;
  font-size: 28px;
}
.contents .inspection h2 span::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  margin-right: 0.5rem;
  background-color: #3c3c4a;
}
.contents .inspection .icon {
  position: absolute;
  top: 5.5rem;
  right: 3.5rem;
  width: 14rem;
  height: 14rem;
  background: url(../images/inspection.svg) center 2rem no-repeat;
  background-size: contain;
  border-radius: 50%;
  border: solid 6px #f1e15e;
  box-sizing: border-box;
}
.contents .inspection .icon::before {
  content: '一級建築士が\a"チェック！"';
  position: absolute;
  top: 4rem;
  right: 14rem;
  width: 8.5rem;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  white-space: pre;
}
.contents .inspection .point .wrap {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  min-width: 1080px;
  width: 86%;
  margin: 0 auto 6rem;
}
.contents .inspection .point .wrap .box {
  display: flex;
  flex-direction: column;
  width: 32%;
  margin-right: 2%;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.contents .inspection .point .wrap .box:last-of-type {
  margin-right: 0;
}
.contents .inspection .point .wrap .box .head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 47.37%;
  padding: 1.5rem 0;
  background-color: #f1e15e;
}
.contents .inspection .point .wrap .box .head::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-top: 15px solid #f1e15e;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.contents .inspection .point .wrap .box .head h3 {
  font-size: 22px;
  text-align: center;
}
.contents .inspection .point .wrap .box .head span {
  font-size: 48px;
  font-weight: bold;
  color: #FFF;
  font-family: "Montserrat", sans-serif;
}
.contents .inspection .point .wrap .box .body {
  height: 52.63%;
  padding: 2rem 2rem 1rem;
  background-color: #f0f0e6;
}
.contents .inspection .point .wrap .box .body p {
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  line-height: 1.8;
}
.contents .inspection .lead h3 {
  width: 44vw;
  margin: 0 auto 2.5rem;
  margin-bottom: 3rem;
  font-size: 28px;
  text-align: justify;
}
.contents .inspection .lead p {
  width: 44vw;
  margin: 0 auto 6rem;
  font-size: 18px;
  text-align: justify;
  line-height: 2.5;
}
.contents .flow {
  margin-bottom: 10rem;
  padding-top: 10rem;
}
.contents .flow .section-title {
  text-align: center;
}
.contents .flow .section-title h2 {
  position: relative;
  margin-bottom: 6rem;
  font-size: 46px;
  display: inline-block;
  padding-bottom: 2rem;
}
.contents .flow .section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30rem;
  height: 1.4rem;
  background: url(../images/line_01.svg) top center no-repeat;
  background-size: contain;
}
.contents .flow .step .wrap {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  min-width: 1020px;
  width: 86%;
  margin: 0 auto;
}
.contents .flow .step .wrap .box {
  position: relative;
  width: 32%;
  margin-right: 2%;
  margin-bottom: 5%;
  padding: 3.5rem 2rem;
  background-color: #FFF;
  border-radius: 1.2rem;
  box-shadow: 0 0 5px 0 #999;
  box-sizing: border-box;
}
.contents .flow .step .wrap .box:nth-of-type(3n) {
  margin-right: 0;
}
.contents .flow .step .wrap .box:first-of-type .icon {
  background: url(../images/earp_01.svg) center center no-repeat;
  background-size: 66%;
}
.contents .flow .step .wrap .box:nth-of-type(2) .icon {
  background: url(../images/earp_02.svg) center 8px no-repeat;
  background-size: contain;
}
.contents .flow .step .wrap .box:nth-of-type(3) .icon {
  background: url(../images/earp_03.svg) center 20px no-repeat;
  background-size: 82%;
}
.contents .flow .step .wrap .box:nth-of-type(4) {
  margin-bottom: 0;
}
.contents .flow .step .wrap .box:nth-of-type(4) .icon {
  background: url(../images/earp_04.svg) center 23px no-repeat;
  background-size: 84%;
}
.contents .flow .step .wrap .box:nth-of-type(5) {
  margin-bottom: 0;
}
.contents .flow .step .wrap .box:nth-of-type(5) .icon {
  background: url(../images/earp_05.svg) center 28px no-repeat;
  background-size: 60%;
}
.contents .flow .step .wrap .box:nth-of-type(6) {
  margin-bottom: 0;
}
.contents .flow .step .wrap .box:nth-of-type(6) .icon {
  background: url(../images/earp_06.svg) center 36px no-repeat;
  background-size: 55%;
}
.contents .flow .step .wrap .box .icon {
  width: 10rem;
  height: 10rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  border: solid 4px #f1e15e;
  box-sizing: border-box;
}
.contents .flow .step .wrap .box .num {
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #f1e15e;
}
.contents .flow .step .wrap .box .num p {
  font-size: 14px;
  color: #FFF;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}
.contents .flow .step .wrap .box .num p span {
  display: block;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}
.contents .flow .step .wrap .box .detail h3 {
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  font-size: 22px;
  text-align: center;
  border-bottom: solid 2px #dbdbda;
}
.contents .flow .step .wrap .box .detail p {
  text-align: justify;
  line-height: 1.8;
}
.contents .faq {
  padding: 10rem 0;
  background-color: #FCFBF2;
}
.contents .faq .section-title {
  text-align: center;
}
.contents .faq .section-title h2 {
  position: relative;
  margin-bottom: 6rem;
  font-size: 46px;
  display: inline-block;
  padding-bottom: 2rem;
}
.contents .faq .section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30rem;
  height: 1.4rem;
  background: url(../images/line_01.svg) top center no-repeat;
  background-size: contain;
}
.contents .faq .detail {
  width: 800px;
  margin: 0 auto;
  padding: 3rem;
  border: solid 2px #dbdbda;
  background-color: #FFF;
  border-radius: 1.2rem;
  box-sizing: border-box;
}
.contents .faq .detail .wrap:last-of-type .txt {
  margin-bottom: 0;
}
.contents .faq .detail .wrap .title {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.contents .faq .detail .wrap .title .icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 16px;
  color: white;
  text-align: center;
  line-height: 30px;
  margin-right: 1rem;
  flex-shrink: 0;
  background-color: #ccc;
  font-family: "Montserrat", sans-serif;
}
.contents .faq .detail .wrap .title h3 {
  font-size: 20px;
  text-align: justify;
  color: #252624;
}
.contents .faq .detail .wrap .txt {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
}
.contents .faq .detail .wrap .txt .icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 16px;
  color: white;
  text-align: center;
  line-height: 30px;
  margin-right: 1rem;
  flex-shrink: 0;
  background-color: #F69400;
  font-family: "Montserrat", sans-serif;
}
.contents .faq .detail .wrap .txt p {
  text-align: justify;
  line-height: 1.8;
}
.contents .contact {
  max-width: 1280px;
  margin: 0 auto 10rem;
  padding: 10rem 2rem 0;
  color: #3c3c4a;
}
.contents .contact .wrap {
  display: flex;
  flex-wrap: wrap;
}
.contents .contact .wrap .box:first-of-type {
  width: calc(36.66667% - 40px);
}
.contents .contact .wrap .box:first-of-type .title {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
}
.contents .contact .wrap .box:first-of-type .title h2 {
  font-size: 1.5rem;
  padding-left: 60px;
  padding-top: 20px;
}
.contents .contact .wrap .box:first-of-type .title h2 span {
  display: block;
  font-size: 6.25rem;
  line-height: 1.15;
  font-family: "Montserrat", sans-serif;
}
.contents .contact .wrap .box:first-of-type .line a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 1rem;
  border: solid 1px #3c3c4a;
  border-radius: 12px;
  box-sizing: border-box;
  width: 17.1rem;
  margin-left: 60px;
  margin-top: 1.5rem;
  font-weight: bold;
  color: #3c3c4a;
  text-decoration: none;
}
.contents .contact .wrap .box:first-of-type .line a img {
  width: 4rem;
  margin-right: 1rem;
}
.contents .contact .wrap .box:last-of-type {
  width: 63.33333%;
  padding-top: 45px;
}
.contents .contact .wrap .box:last-of-type .portal ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 762px;
  margin: 0 auto 2rem;
  padding: 3rem;
  background-color: #FFF;
  border-radius: 1.2rem;
  box-shadow: 0 0 5px 0 #999;
}
.contents .contact .wrap .box:last-of-type .portal ul li {
  width: 200px;
  margin-bottom: 2rem;
  font-size: 42px;
  text-align: center;
  line-height: 1.2;
}
.contents .contact .wrap .box:last-of-type .portal ul li:first-of-type {
  color: #70be41;
}
.contents .contact .wrap .box:last-of-type .portal ul li:nth-of-type(2) {
  color: #ec6001;
}
.contents .contact .wrap .box:last-of-type .portal ul li:nth-of-type(3) {
  font-size: 44px;
  color: #cb0045;
}
.contents .contact .wrap .box:last-of-type .portal ul li:nth-of-type(4) {
  margin-bottom: 0;
  font-size: 28px;
  color: #fe002f;
}
.contents .contact .wrap .box:last-of-type .portal ul li:last-of-type {
  margin-bottom: 0;
  font-size: 28px;
  color: #259300;
}
.contents .contact .wrap .box:last-of-type .portal ul li span {
  display: block;
  margin-top: 0.5rem;
  font-size: 18px;
  color: #3c3c4a;
}
.contents .contact .wrap .box:last-of-type .portal p {
  width: auto;
  margin: 0 auto 3rem;
  font-size: 34px;
  font-weight: bold;
  text-align: justify;
}
.contents .contact .wrap .box:last-of-type .form dl {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px dashed #3c3c4a;
}
.contents .contact .wrap .box:last-of-type .form dl:nth-of-type(5) {
  align-items: flex-start;
}
.contents .contact .wrap .box:last-of-type .form dl:last-of-type {
  align-items: flex-start;
}
.contents .contact .wrap .box:last-of-type .form dl dt {
  width: calc(39.47% - 20px);
  font-size: 1.125rem;
  font-weight: bold;
}
.contents .contact .wrap .box:last-of-type .form dl dt .required {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contents .contact .wrap .box:last-of-type .form dl dt .required::after {
  content: "必須";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 26px;
  margin-top: 3px;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  background-color: #f19639;
  color: #fff;
  border-radius: 4px;
}
.contents .contact .wrap .box:last-of-type .form dl dt small {
  display: block;
  margin-top: 0.5rem;
  font-size: 14px;
  color: #fe3737;
}
.contents .contact .wrap .box:last-of-type .form dl dd {
  width: 60.53%;
}
.contents .contact .wrap .box:last-of-type .form dl dd input {
  width: 100%;
  padding: 15px 20px;
  background-color: #f0f0eb;
  border: none;
  box-sizing: border-box;
}
.contents .contact .wrap .box:last-of-type .form dl dd.check_01 .wpcf7-list-item {
  position: relative;
  margin-right: 0.8rem;
}
.contents .contact .wrap .box:last-of-type .form dl dd.check_01 .wpcf7-list-item:last-of-type {
  margin-right: 0;
}
.contents .contact .wrap .box:last-of-type .form dl dd.check_01 .wpcf7-list-item input {
  width: auto;
}
.contents .contact .wrap .box:last-of-type .form dl dd.property textarea {
  width: 100%;
  padding: 15px 20px;
  background-color: #f0f0eb;
  border: none;
  box-sizing: border-box;
}
.contents .contact .wrap .box:last-of-type .form dl dd.txt textarea {
  width: 100%;
  padding: 15px 20px;
  background-color: #f0f0eb;
  border: none;
  box-sizing: border-box;
}
.contents .contact .wrap .box:last-of-type .form .check {
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.8;
}
.contents .contact .wrap .box:last-of-type .form .check a {
  color: #3c3c4a;
}
.contents .contact .wrap .box:last-of-type .form .btn input {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 54px;
  margin: 0 auto;
  padding: 5px 30px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1rem;
  text-decoration: none;
  background-color: #3c3c4a;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.6s;
}
.contents .contact .wrap .box:last-of-type .form .btn input:hover {
  background-color: #F69400;
}

.policy {
  max-width: 1200px;
  min-width: 800px;
  width: 66%;
  margin: 0 auto 6rem;
  padding-top: 6rem;
}
.policy h1 {
  margin-bottom: 3rem;
  font-size: 36px;
  letter-spacing: 0.1rem;
}
.policy .wrap h2 {
  margin-bottom: 1rem;
  font-size: 22px;
}
.policy .wrap p {
  margin-bottom: 4rem;
  line-height: 1.8;
  text-align: justify;
  letter-spacing: 0.1em;
}
.policy .wrap .btn button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 54px;
  margin: 0 auto;
  padding: 5px 30px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1rem;
  text-decoration: none;
  background-color: #3c3c4a;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.6s;
}
.policy .wrap .btn button:hover {
  background-color: #F69400;
}

.c_thanks {
  max-width: 1200px;
  min-width: 800px;
  width: 66%;
  margin: 0 auto 6rem;
  padding-top: 6rem;
}
.c_thanks h1 {
  margin-bottom: 3rem;
  font-size: 36px;
  letter-spacing: 0.1rem;
}
.c_thanks p {
  margin-bottom: 4rem;
  line-height: 1.8;
  text-align: justify;
  letter-spacing: 0.1em;
}
.c_thanks .btn button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 54px;
  margin: 0 auto;
  padding: 5px 30px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1rem;
  text-decoration: none;
  background-color: #3c3c4a;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.6s;
}
.c_thanks .btn button:hover {
  background-color: #F69400;
}

footer {
  padding: 2rem;
  background-color: #EDECE4;
}
footer .wrap .box .copyright {
  font-size: 14px;
  color: rgba(75, 73, 72, 0.6000000238);
  text-align: center;
  line-height: 1;
}

@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
  .tb {
    display: block !important;
  }
  header.h_privacy .wrap .logo a {
    width: 22rem;
  }
  .contents .main_visual {
    height: 760px;
    padding: 10rem 2.5rem 0;
    box-sizing: border-box;
  }
  .contents .main_visual h1 {
    position: static;
    margin: 0 auto 6rem;
    font-size: 42px;
  }
  .contents .main_visual h1 .ch01 {
    font-size: 50px;
  }
  .contents .main_visual h1 .ch02 {
    font-size: 50px;
  }
  .contents .main_visual .point {
    position: static;
  }
  .contents .main_visual .point .wrap .box {
    margin-right: 2%;
  }
  .contents .main_visual .point .wrap .box .num p {
    font-size: 14px;
  }
  .contents .main_visual .point .wrap .box .num p span {
    font-size: 40px;
  }
  .contents .main_visual .point .wrap .box .detail {
    width: 10rem;
    height: 10rem;
  }
  .contents .main_visual .point .wrap .box .detail p {
    font-size: 22px;
  }
  .contents .main_visual .s_txt {
    bottom: 41vw;
    right: 2vw;
  }
  .contents .main_visual .btn {
    position: static;
  }
  .contents .main_visual .btn a {
    margin-top: 4rem;
  }
  .contents .about-fee .wrap {
    display: inherit;
    padding: 0 1rem;
  }
  .contents .about-fee .wrap .box {
    width: auto;
  }
  .contents .about-fee .wrap .box:first-of-type {
    margin-bottom: 4rem;
  }
  .contents .about-fee .wrap .box:first-of-type h2 {
    margin-left: 1rem;
  }
  .contents .about-fee .wrap .box:last-of-type {
    width: 80%;
    margin-left: auto;
  }
  .contents .about-fee .wrap .box:last-of-type h3 {
    width: 29rem;
    margin-left: auto;
    margin-right: 1rem;
  }
  .contents .about-fee .wrap .box:last-of-type p {
    width: auto;
  }
  .contents .about-fee .bg {
    top: 3%;
    right: 3%;
    bottom: inherit;
    left: inherit;
    max-width: inherit;
    min-width: inherit;
    width: 20rem;
  }
  .contents .struct .detail {
    width: auto;
    padding: 0 1rem;
  }
  .contents .struct .detail .icon {
    height: 380px;
  }
  .contents .struct .detail .icon:first-of-type {
    margin-top: 26rem;
  }
  .contents .struct .detail .icon:nth-of-type(3) .img {
    background-size: 6rem;
  }
  .contents .struct .detail .icon:nth-of-type(6) {
    margin-top: 26rem;
  }
  .contents .struct .detail .icon .img {
    width: 12rem;
    height: 12rem;
  }
  .contents .struct .detail .icon p {
    font-size: 16px;
  }
  .contents .struct .detail .arrow_01 {
    top: 15rem;
    left: 9.5rem;
    width: 6rem;
    height: 9rem;
  }
  .contents .struct .detail .arrow_01::before {
    left: -7rem;
  }
  .contents .struct .detail .arrow_02 {
    left: 0;
    right: 0;
    bottom: 10rem;
    width: 15rem;
    height: 4rem;
    margin: 0 auto;
  }
  .contents .struct .detail .arrow_03 {
    top: 15rem;
    right: 9.5rem;
    width: 6rem;
    height: 9rem;
  }
  .contents .struct .detail .arrow_03::before {
    right: -9rem;
  }
  .contents .features .s_catch img {
    width: 50vw;
  }
  .contents .features .s_catch p {
    font-size: 72px;
  }
  .contents .features .lead p {
    width: 80%;
  }
  .contents .features .merit .wrap {
    flex-wrap: wrap;
    width: 80%;
    margin: 0 auto;
  }
  .contents .features .merit .wrap .box {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 4%;
  }
  .contents .features .merit .wrap .box:nth-of-type(2n) {
    margin-right: 0;
  }
  .contents .features .detail {
    width: auto;
    padding: 0 1rem;
  }
  .contents .features .detail .icon {
    height: 380px;
  }
  .contents .features .detail .icon:first-of-type {
    margin-top: 26rem;
  }
  .contents .features .detail .icon:nth-of-type(6) {
    margin-top: 26rem;
  }
  .contents .features .detail .icon .img {
    width: 12rem;
    height: 12rem;
  }
  .contents .features .detail .icon p {
    font-size: 16px;
  }
  .contents .features .detail .arrow_01 {
    top: 15rem;
    left: 9.5rem;
    width: 6rem;
    height: 9rem;
  }
  .contents .features .detail .arrow_01::before {
    left: -7rem;
  }
  .contents .features .detail .arrow_02 {
    left: 0;
    right: 0;
    bottom: 10rem;
    width: 15rem;
    height: 4rem;
    margin: 0 auto;
  }
  .contents .features .detail .arrow_03 {
    top: 15rem;
    right: 9.5rem;
    width: 6rem;
    height: 9rem;
  }
  .contents .features .detail .arrow_03::before {
    right: -9rem;
  }
  .contents .features .portal ul {
    width: 696px;
  }
  .contents .features .portal ul li {
    width: 200px;
    margin-bottom: 3.5rem;
    font-size: 46px;
    text-align: center;
    line-height: 1.2;
  }
  .contents .features .portal ul li:nth-of-type(3) {
    font-size: 48px;
  }
  .contents .features .portal ul li:nth-of-type(4) {
    font-size: 29px;
  }
  .contents .features .portal ul li:last-of-type {
    font-size: 29px;
  }
  .contents .features .portal p {
    width: 80%;
    font-size: 36px;
  }
  .contents .inspection h2 {
    margin-left: 7vw;
    margin-bottom: 6rem;
  }
  .contents .inspection .icon {
    top: 7.5rem;
    right: 2.5rem;
  }
  .contents .inspection .point .wrap {
    flex-wrap: wrap;
    max-width: inherit;
    min-width: inherit;
    width: 92%;
  }
  .contents .inspection .point .wrap .box {
    width: 46%;
    margin-right: 8%;
  }
  .contents .inspection .point .wrap .box:nth-of-type(2) {
    margin-right: 0;
  }
  .contents .inspection .point .wrap .box:last-of-type {
    margin-right: 0;
  }
  .contents .inspection .point .wrap .box .body {
    padding: 1.5rem 2rem 1rem;
  }
  .contents .inspection .lead h3 {
    width: 66%;
  }
  .contents .inspection .lead p {
    width: 66%;
  }
  .contents .flow .step .wrap {
    max-width: inherit;
    min-width: inherit;
    width: auto;
    padding: 0 1rem;
  }
  .contents .flow .step .wrap .box {
    width: 48%;
    margin-right: 4%;
  }
  .contents .flow .step .wrap .box:nth-of-type(2n) {
    margin-right: 0;
  }
  .contents .flow .step .wrap .box:nth-of-type(3) {
    margin-right: 4%;
  }
  .contents .flow .step .wrap .box:nth-of-type(4) {
    margin-bottom: 5%;
  }
  .contents .faq .detail {
    width: 96%;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .contents .contact {
    padding: 10rem 1rem 0;
  }
  .contents .contact .wrap {
    display: inherit;
  }
  .contents .contact .wrap .box:first-of-type {
    width: auto;
  }
  .contents .contact .wrap .box:first-of-type .title {
    display: inherit;
    margin-bottom: 3rem;
  }
  .contents .contact .wrap .box:first-of-type .title h2 {
    padding-top: 0;
    padding-left: 0;
    font-size: 26px;
    text-align: center;
  }
  .contents .contact .wrap .box:first-of-type .title h2 span {
    font-size: 136px;
  }
  .contents .contact .wrap .box:first-of-type .line a {
    justify-content: center;
    width: 24rem;
    margin: 0 auto;
    padding: 1rem 0;
  }
  .contents .contact .wrap .box:first-of-type .line a img {
    width: 6rem;
  }
  .contents .contact .wrap .box:first-of-type .line a span {
    font-size: 22px;
  }
  .contents .contact .wrap .box:last-of-type {
    width: 96%;
    margin-top: 5rem;
    margin: 5rem auto 0;
  }
  .contents .contact .wrap .box:last-of-type .portal p {
    font-size: 40px;
  }
  .policy {
    max-width: inherit;
    min-width: inherit;
    width: 80%;
  }
  .c_thanks {
    max-width: inherit;
    min-width: inherit;
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .tb {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  nav .nav_inner ul li {
    margin-bottom: 1rem;
  }
  nav .nav_inner ul li a {
    font-size: 22px;
  }
  nav .nav_inner .line a {
    width: 16rem;
    padding: 0.8rem 0;
    font-size: 16px;
  }
  nav .nav_inner .line a img {
    width: 3.5rem;
  }
  header.h_privacy {
    margin: 3rem auto 0;
  }
  header.h_privacy .wrap .logo a {
    width: 66%;
  }
  header .wrap .logo a {
    width: 13rem;
  }
  .contents .main_visual {
    overflow: hidden;
    height: 720px;
    padding: 7.5rem 1rem 0;
  }
  .contents .main_visual h1 {
    margin-bottom: 1rem;
    font-size: 6vw;
  }
  .contents .main_visual h1 .ch01 {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 9.6vw;
  }
  .contents .main_visual h1 .ch02 {
    margin-left: 0;
    font-size: 8.7vw;
  }
  .contents .main_visual .point {
    position: absolute;
    top: 23rem;
    left: 1rem;
    z-index: 6;
    margin-bottom: 1.5rem;
  }
  .contents .main_visual .point .wrap {
    display: inherit;
  }
  .contents .main_visual .point .wrap .box {
    margin-right: 0;
  }
  .contents .main_visual .point .wrap .box .num {
    position: static;
    margin-bottom: 0.2rem;
  }
  .contents .main_visual .point .wrap .box .num p {
    font-size: 12px;
  }
  .contents .main_visual .point .wrap .box .num p span {
    display: inline-block;
    margin-left: 0.2rem;
    font-size: 18px;
  }
  .contents .main_visual .point .wrap .box .detail {
    display: inherit;
    width: 12rem;
    height: auto;
    margin-bottom: 0.5rem;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 5px 0 #999;
    background-color: #FFF;
  }
  .contents .main_visual .point .wrap .box .detail p {
    font-size: 14px;
  }
  .contents .main_visual .img {
    bottom: 0;
    right: -35vw;
    width: 91vw;
  }
  .contents .main_visual .s_txt {
    bottom: 104vw;
    right: 0;
    width: 9rem;
    font-size: 10px;
    text-align: center;
    letter-spacing: normal;
  }
  .contents .main_visual .s_txt span.name {
    font-size: 14px;
  }
  .contents .main_visual .btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1rem;
    z-index: 6;
    width: 320px;
    margin: 0 auto;
  }
  .contents .main_visual .btn a {
    position: relative;
    margin-top: 0;
  }
  .contents .main_visual .btn a::after {
    right: 1rem;
  }
  .contents .about-fee {
    margin-bottom: 6rem;
    padding: 6rem 0 2rem;
  }
  .contents .about-fee::after {
    border-width: 100px 50vw 0 50vw;
  }
  .contents .about-fee .wrap .box:first-of-type {
    margin-bottom: 2rem;
  }
  .contents .about-fee .wrap .box:first-of-type h2 {
    margin-left: 0;
    font-size: 12vw;
  }
  .contents .about-fee .wrap .box:last-of-type {
    width: 96%;
  }
  .contents .about-fee .wrap .box:last-of-type h3 {
    width: auto;
    margin-right: 0;
    margin-bottom: 2rem;
    font-size: 5.5vw;
  }
  .contents .about-fee .wrap .box:last-of-type p {
    font-size: 16px;
    line-height: 1.8;
  }
  .contents .struct h4 {
    margin-bottom: 4rem;
    font-size: 9vw;
  }
  .contents .struct .detail {
    display: inherit;
    width: auto;
    padding: 0 0rem;
  }
  .contents .struct .detail .icon {
    width: 80%;
    height: auto;
    padding: 2.5rem;
    box-sizing: border-box;
  }
  .contents .struct .detail .icon:first-of-type {
    margin: 0 auto 2rem;
  }
  .contents .struct .detail .icon:first-of-type .img {
    width: 10rem;
    height: 10rem;
  }
  .contents .struct .detail .icon:nth-of-type(3) {
    margin: 0 auto 2rem;
  }
  .contents .struct .detail .icon:nth-of-type(3) .img {
    width: 10rem;
    height: 10rem;
    background-size: 5rem;
  }
  .contents .struct .detail .icon:nth-of-type(6) {
    margin: 0 auto;
  }
  .contents .struct .detail .icon:nth-of-type(6) .img {
    width: 10rem;
    height: 10rem;
  }
  .contents .struct .detail .icon h5 {
    font-size: 6vw;
  }
  .contents .struct .detail .icon .img {
    width: 10rem;
    height: 10rem;
    border: solid 4px #f1e15e;
  }
  .contents .struct .detail .icon p {
    font-size: 18px;
  }
  .contents .struct .detail .arrow_01 {
    top: 19rem;
    left: 3rem;
    width: 5rem;
    height: 7rem;
    background: url(../images/arrow_05.svg) center center no-repeat;
  }
  .contents .struct .detail .arrow_01::before {
    top: 1.5rem;
    left: -1.6rem;
    width: auto;
    padding: 0.3rem;
    font-size: 14px;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: #f0f0e6;
  }
  .contents .struct .detail .arrow_03 {
    top: 43.5rem;
    right: 2.8rem;
    left: inherit;
    width: 5rem;
    height: 7rem;
    background: url(../images/arrow_03.svg) center center no-repeat;
  }
  .contents .struct .detail .arrow_03::before {
    top: 3.5rem;
    left: 1.4rem;
    width: 100%;
    padding: 0.3rem;
    font-size: 14px;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: #f0f0e6;
  }
  .contents .features {
    padding: 7rem 0;
  }
  .contents .features .section-title h2 {
    margin-bottom: 4rem;
    font-size: 9vw;
  }
  .contents .features .section-title h2::after {
    width: 22rem;
  }
  .contents .features .s_catch {
    margin-bottom: 2rem;
  }
  .contents .features .s_catch h3 {
    font-size: 6vw;
  }
  .contents .features .s_catch img {
    width: 62vw;
  }
  .contents .features .s_catch p {
    font-size: 10vw;
  }
  .contents .features .lead {
    margin-bottom: 4rem;
  }
  .contents .features .lead p {
    width: auto;
    padding: 0 1rem;
  }
  .contents .features .merit {
    margin-bottom: 4rem;
  }
  .contents .features .merit .wrap {
    width: auto;
    padding: 0 1rem;
  }
  .contents .features .merit .wrap .box {
    padding: 3rem 1rem 2rem;
  }
  .contents .features .merit .wrap .box .num {
    top: 1rem;
    left: 1.2rem;
  }
  .contents .features .merit .wrap .box .num p {
    font-size: 12px;
  }
  .contents .features .merit .wrap .box .num p span {
    font-size: 35px;
  }
  .contents .features .merit .wrap .box .detail {
    width: 8rem;
    height: 8rem;
  }
  .contents .features .merit .wrap .box .detail p {
    font-size: 14px;
  }
  .contents .features .detail {
    display: inherit;
    width: auto;
    margin-bottom: 2rem;
    padding: 0 0rem;
  }
  .contents .features .detail .icon {
    width: 80%;
    height: auto;
    padding: 2.5rem;
    box-sizing: border-box;
  }
  .contents .features .detail .icon:first-of-type {
    margin: 0 auto 2rem;
  }
  .contents .features .detail .icon:first-of-type .img {
    width: 10rem;
    height: 10rem;
  }
  .contents .features .detail .icon:nth-of-type(3) {
    margin: 0 auto 2rem;
  }
  .contents .features .detail .icon:nth-of-type(3) .img {
    width: 10rem;
    height: 10rem;
  }
  .contents .features .detail .icon:nth-of-type(6) {
    margin: 0 auto;
  }
  .contents .features .detail .icon:nth-of-type(6) .img {
    width: 10rem;
    height: 10rem;
  }
  .contents .features .detail .icon h5 {
    font-size: 6vw;
  }
  .contents .features .detail .icon .img {
    width: 10rem;
    height: 10rem;
    border: solid 4px #f1e15e;
  }
  .contents .features .detail .icon p {
    font-size: 18px;
  }
  .contents .features .detail .arrow_01 {
    top: 19rem;
    left: 3rem;
    width: 5rem;
    height: 7rem;
    background: url(../images/arrow_05.svg) center center no-repeat;
  }
  .contents .features .detail .arrow_01::before {
    top: 1.5rem;
    left: -1.6rem;
    width: auto;
    padding: 0.3rem;
    font-size: 14px;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: #f0f0e6;
  }
  .contents .features .detail .arrow_03 {
    top: 43.5rem;
    right: 2.8rem;
    left: inherit;
    width: 5rem;
    height: 7rem;
    background: url(../images/arrow_03.svg) center center no-repeat;
  }
  .contents .features .detail .arrow_03::before {
    top: 2.5rem;
    left: 1.4rem;
    width: 100%;
    padding: 0.3rem;
    font-size: 14px;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: #f0f0e6;
  }
  .contents .features .portal ul {
    width: 81%;
    margin: 0 auto 2rem;
    padding: 1.8rem 1.2rem;
  }
  .contents .features .portal ul li {
    width: 50%;
    margin-bottom: 2rem;
    font-size: 28px;
    text-align: center;
    line-height: 1.2;
  }
  .contents .features .portal ul li:nth-of-type(3) {
    font-size: 30px;
  }
  .contents .features .portal ul li:nth-of-type(4) {
    margin-bottom: 2rem;
    font-size: 15px;
  }
  .contents .features .portal ul li:last-of-type {
    font-size: 24px;
  }
  .contents .features .portal ul li span {
    margin-top: 0.3rem;
    font-size: 14px;
  }
  .contents .features .portal p {
    width: auto;
    margin: 0 auto 3rem;
    padding: 0 1rem;
    font-size: 30px;
    text-align: justify;
  }
  .contents .features .portal .line a {
    width: 68vw;
  }
  .contents .features .portal .line a img {
    width: 17vw;
  }
  .contents .features .portal .line a span {
    font-size: 3.5vw;
  }
  .contents .inspection {
    padding: 12rem 0 0;
  }
  .contents .inspection h2 {
    margin-left: 0;
    margin-bottom: 4rem;
    padding: 0 1rem;
    font-size: 12vw;
  }
  .contents .inspection .icon {
    top: 5.5rem;
    right: 0.5rem;
    width: 9rem;
    height: 9rem;
    background: url(../images/inspection.svg) center 1rem no-repeat;
    background-size: 80%;
    border: solid 4px #f1e15e;
  }
  .contents .inspection .icon::before {
    top: 1rem;
    right: 8rem;
    font-size: 16px;
  }
  .contents .inspection .point {
    padding: 0 1rem;
  }
  .contents .inspection .point .wrap {
    display: inherit;
    width: auto;
    margin-bottom: 4rem;
  }
  .contents .inspection .point .wrap .box {
    width: auto;
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .contents .inspection .point .wrap .box .head span {
    font-size: 10vw;
  }
  .contents .inspection .point .wrap .box .body {
    font-size: 4.1vw;
  }
  .contents .inspection .lead {
    padding: 0 1rem;
  }
  .contents .inspection .lead h3 {
    width: auto;
    font-size: 6vw;
  }
  .contents .inspection .lead p {
    width: auto;
    margin: 0 auto 3rem;
    font-size: 16px;
    line-height: 1.8;
  }
  .contents .flow {
    margin-bottom: 7rem;
    padding-top: 7rem;
  }
  .contents .flow .section-title h2 {
    margin-bottom: 4rem;
    font-size: 9vw;
  }
  .contents .flow .section-title h2::after {
    width: 22rem;
  }
  .contents .flow .step .wrap {
    display: inherit;
  }
  .contents .flow .step .wrap .box {
    width: auto;
    margin: 0 auto 3rem;
  }
  .contents .flow .step .wrap .box:nth-of-type(4) {
    margin-bottom: 3rem;
  }
  .contents .flow .step .wrap .box:nth-of-type(5) {
    margin-bottom: 3rem;
  }
  .contents .faq {
    padding: 7rem 1rem;
  }
  .contents .faq .section-title h2 {
    margin-bottom: 4rem;
    font-size: 9vw;
  }
  .contents .faq .section-title h2::after {
    width: 22rem;
  }
  .contents .faq .detail {
    width: auto;
    padding: 2rem;
  }
  .contents .faq .detail .wrap .title h3 {
    font-size: 18px;
  }
  .contents .faq .detail .wrap .txt p {
    font-size: 14px;
  }
  .contents .contact {
    margin-bottom: 7rem;
    padding: 7rem 1rem 0;
  }
  .contents .contact .wrap .box:first-of-type .title {
    margin-bottom: 2rem;
  }
  .contents .contact .wrap .box:first-of-type .title h2 {
    font-size: 5vw;
  }
  .contents .contact .wrap .box:first-of-type .title h2 span {
    font-size: 24vw;
  }
  .contents .contact .wrap .box:first-of-type .line a {
    width: 68vw;
  }
  .contents .contact .wrap .box:first-of-type .line a img {
    width: 17vw;
  }
  .contents .contact .wrap .box:first-of-type .line a span {
    font-size: 3.5vw;
  }
  .contents .contact .wrap .box:last-of-type {
    width: auto;
    margin-top: 3rem;
    padding-top: 0;
  }
  .contents .contact .wrap .box:last-of-type .portal ul {
    width: auto;
    margin: 0 auto 2rem;
    padding: 1.8rem 1.2rem;
  }
  .contents .contact .wrap .box:last-of-type .portal ul li {
    width: 50%;
    margin-bottom: 2rem;
    font-size: 28px;
    text-align: center;
    line-height: 1.2;
  }
  .contents .contact .wrap .box:last-of-type .portal ul li:nth-of-type(3) {
    font-size: 30px;
  }
  .contents .contact .wrap .box:last-of-type .portal ul li:nth-of-type(4) {
    margin-bottom: 2rem;
    font-size: 15px;
  }
  .contents .contact .wrap .box:last-of-type .portal ul li:last-of-type {
    font-size: 24px;
  }
  .contents .contact .wrap .box:last-of-type .portal ul li span {
    margin-top: 0.3rem;
    font-size: 14px;
  }
  .contents .contact .wrap .box:last-of-type .portal p {
    width: auto;
    margin: 0 auto 3rem;
    padding: 0;
    font-size: 26px;
  }
  .contents .contact .wrap .box:last-of-type .form dl {
    display: inherit;
  }
  .contents .contact .wrap .box:last-of-type .form dl dt {
    width: auto;
    margin-bottom: 1rem;
    font-size: 18px;
  }
  .contents .contact .wrap .box:last-of-type .form dl dt .required {
    justify-content: flex-start;
  }
  .contents .contact .wrap .box:last-of-type .form dl dt .required::after {
    margin-left: 1rem;
  }
  .contents .contact .wrap .box:last-of-type .form dl dd {
    width: auto;
  }
  .contents .contact .wrap .box:last-of-type .form dl dd.check_01 .wpcf7-list-item {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 18px;
  }
  .contents .contact .wrap .box:last-of-type .form .check {
    text-align: justify;
  }
  .policy {
    width: auto;
    padding: 3rem 1rem 0;
  }
  .policy h1 {
    font-size: 32px;
  }
  .c_thanks {
    width: auto;
    padding: 3rem 1rem 0;
  }
  .c_thanks h1 {
    font-size: 32px;
  }
  footer {
    padding: 1.5rem;
  }
}/*# sourceMappingURL=style.css.map */