@charset "UTF-8";
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

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

fieldset,
img {
  border: 0;
}

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

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

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

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

abbr,
acronym {
  border: 0;
}

/*iosのフォームボタンリセット*/
input[type=submit],
input[type=button],
input[type=reset] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus,
input[type=reset]::focus {
  outline-offset: -2px;
}

html {
  font-size: 10px;
  -webkit-text-size-adjust: 100%;
}

@media screen and (max-width: 1500px) {
  html {
    font-size: 0.6666666667vw;
  }
}
@media screen and (max-width: 750px) {
  html {
    font-size: 1.3333333333vw;
  }
}
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.6s;
}
a img {
  transition: 0.6s;
}
a:hover {
  opacity: 0.7;
}
a:hover p:hover {
  opacity: 0.7;
}

body {
  color: #000;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
  letter-spacing: 0.05em;
  font-feature-settings: "palt" 1;
}
body p {
  font-feature-settings: initial;
}

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

.js-fade {
  opacity: 0;
  transition-duration: 1.1s;
  transform: translateY(50px);
}
.js-fade.is-active {
  transform: translate(0, 0);
  opacity: 1;
}

.l-container {
  width: 120rem;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .l-container {
    width: 90%;
  }
}
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  transition: 0.6s;
}
.l-header__Inner {
  width: 138rem;
  padding: 4.3rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  transition: 0.6s;
}
.l-header__Logo {
  width: 29.8rem;
}
.l-header__Nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.8rem;
}
.l-header__Nav li a {
  line-height: 1;
  font-size: 1.4rem;
  font-weight: 600;
}
.l-header__Nav li.-contact a {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.7rem;
  width: 20.2rem;
  color: #fff;
  background: #311B00;
  border-radius: 2.6rem;
}
.l-header__Nav li.-contact a:before {
  margin-right: 1rem;
  content: "";
  width: 1.7rem;
  height: 1.3rem;
  background: url("./../img/icon_mail.png");
  background-size: cover;
}
.l-header.-fixed {
  background: #FAF8EF;
}
.l-header.-fixed .l-header__Inner {
  padding: 2rem 0;
}

@media screen and (max-width: 767px) {
  .l-header__Inner {
    width: 100%;
    padding: 2rem;
  }
  .l-header__Logo {
    width: 29.8rem;
  }
  .l-header__Nav {
    transform: translateX(100%);
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    padding: 10rem;
    transition: 0.6s;
  }
  .l-header__Nav.-op {
    transform: translateX(0);
  }
  .l-header__Nav ul {
    display: block;
  }
  .l-header__Nav li {
    text-align: left;
    margin-bottom: 5rem;
  }
  .l-header__Nav li a {
    font-size: 3.2rem;
  }
  .l-header__Nav li.-contact a {
    height: 10rem;
    width: 100%;
    border-radius: 5rem;
    font-size: 2.4rem;
  }
  .l-header__Nav li.-contact a:before {
    margin-right: 3rem;
    width: 3.4rem;
    height: 2.6rem;
  }
  .l-header__Openbtn {
    position: absolute;
    width: 4rem;
    height: 3rem;
    top: 3rem;
    right: 3rem;
    cursor: pointer;
    z-index: 1000;
  }
  .l-header__Openbtn span {
    width: 100%;
    height: 0.4rem;
    background: #000;
    display: block;
    position: absolute;
    left: 0;
    transition: 0.6s;
  }
  .l-header__Openbtn span:nth-child(1) {
    top: 0;
  }
  .l-header__Openbtn span:nth-child(2) {
    top: 50%;
  }
  .l-header__Openbtn span:nth-child(3) {
    top: 100%;
  }
  .l-header__Openbtn.-op span:nth-child(1) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .l-header__Openbtn.-op span:nth-child(2) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .l-header__Openbtn.-op span:nth-child(3) {
    opacity: 0;
  }
  .l-header.-fixed .l-header__Inner {
    padding: 2rem;
  }
}
.l-footer {
  margin-top: -15.4rem;
  padding: 21.5rem 0 0;
  position: relative;
}
.l-footer:after {
  width: 150rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #FAF8EF;
  border-radius: 3rem 3rem 0 0;
  content: "";
  z-index: -1;
}
.l-footer__Inner {
  display: flex;
  justify-content: space-between;
  padding-bottom: 6rem;
}
.l-footer__Left-Logo {
  width: 29.8rem;
  margin-bottom: 3rem;
}
.l-footer__Left-Logo a {
  display: block;
}
.l-footer__Left-Address {
  font-size: 1.2rem;
  line-height: 2rem;
}
.l-footer__Right {
  display: flex;
  gap: 6rem;
}
.l-footer__Right-Item {
  margin-bottom: 2rem;
}
.l-footer__Right-Item a {
  font-size: 1.4rem;
  font-weight: bold;
}
.l-footer__Copy {
  background: #311B00;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  padding: 1.3rem;
}

@media screen and (max-width: 767px) {
  .l-footer:after {
    width: 100%;
  }
  .l-footer__Inner {
    display: block;
  }
  .l-footer__Left {
    margin-bottom: 5rem;
  }
  .l-footer__Left-Logo {
    width: 35rem;
  }
  .l-footer__Left-Address {
    font-size: 2.4rem;
    line-height: 4.2rem;
  }
  .l-footer__Right-Item a {
    font-size: 2rem;
  }
  .l-footer__Copy {
    padding: 2rem;
    font-size: 1.6rem;
  }
}
.c-service__List {
  display: flex;
  justify-content: space-between;
  counter-reset: number 0;
  flex-wrap: wrap;
  gap: 5.5rem 2.4rem;
  width: 123.7rem;
}
.c-service__Item {
  width: 39.625rem;
  position: relative;
}
.c-service__Item:nth-child(3n+2) {
  transition-delay: 0.3s;
}
.c-service__Item:nth-child(3n+3) {
  transition-delay: 0.6s;
}
.c-service__Item:before {
  counter-increment: number 1;
  content: counter(number) " ";
  font-size: 7rem;
  color: #EFAA50;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  position: absolute;
  top: -1.5rem;
  left: 2rem;
}
.c-service__Item-Thum {
  margin-bottom: 1.5rem;
}
.c-service__Item-Ttl {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 3.6rem;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}
.c-service__Item-Txt {
  width: 36rem;
  text-align: justify;
  font-size: 1.4rem;
  line-height: 2.4rem;
  letter-spacing: 0.05em;
}

.p-top .c-service__Item:nth-child(n+4) {
  display: none;
}

@media screen and (max-width: 767px) {
  .c-service__List {
    display: block;
    width: 100%;
  }
  .c-service__Item {
    width: 100%;
    margin-top: 6rem;
  }
  .c-service__Item:nth-child(3n+2) {
    transition-delay: 0s;
  }
  .c-service__Item:nth-child(3n+3) {
    transition-delay: 0s;
  }
  .c-service__Item-Thum {
    margin-bottom: 1.5rem;
  }
  .c-service__Item-Ttl {
    font-size: 3.2rem;
    line-height: 4.8rem;
  }
  .c-service__Item-Txt {
    width: 100%;
    font-size: 2.4rem;
    line-height: 4.2rem;
  }
  .p-top .c-service__Item:nth-child(n+4) {
    display: none;
  }
}
.c-support {
  padding: 12rem 0 28rem;
  position: relative;
  counter-reset: mycounter 0;
}
.c-support::after {
  width: 150rem;
  height: 188.4rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #FAF8EF;
  border-radius: 10rem 10rem 0 0;
  content: "";
  z-index: -1;
}
.c-support__Inner {
  position: relative;
}
.c-support__Ttl {
  text-align: center;
  font-size: 3.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 6.7rem;
}
.c-support__Ttl span {
  margin-bottom: 2rem;
  display: block;
  font-size: 1.4rem;
}
.c-support__Box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6rem;
  position: relative;
}
.c-support__Box-Thum {
  width: 55rem;
}
.c-support__Box-Detail {
  width: 54rem;
  padding-left: 8rem;
  position: relative;
}
.c-support__Box-Detail:before {
  counter-increment: mycounter 1;
  content: counter(mycounter, decimal-leading-zero);
  width: 6.1rem;
  height: 6.1rem;
  line-height: 6.1rem;
  text-align: center;
  font-size: 2.4rem;
  color: #fff;
  font-weight: 500;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
}
.c-support__Box-Detail:after {
  width: 0.4rem;
  height: calc(100% - 8rem);
  border-radius: 0.6rem;
  content: "";
  position: absolute;
  left: 3rem;
  bottom: 0;
}
.c-support__Box-Detail.-no01:before, .c-support__Box-Detail.-no01:after {
  background: #D0908B;
}
.c-support__Box-Detail.-no02:before, .c-support__Box-Detail.-no02:after {
  background: #7EC6E0;
}
.c-support__Box-Detail.-no03:before, .c-support__Box-Detail.-no03:after {
  background: #A8D081;
}
.c-support__Box-Detail-Ttl {
  font-size: 2.4rem;
  line-height: 4rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  margin-bottom: 3rem;
}
.c-support__Box-Detail-Txt {
  font-size: 1.4rem;
  line-height: 2.6rem;
  letter-spacing: 0.05em;
  text-align: justify;
  margin-bottom: 3rem;
}
.c-support__Box-Detail-Btn {
  font-size: 1.4rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.c-support__Box-Detail-Btn:after {
  margin-left: 2rem;
  content: "";
  width: 3.5rem;
  height: 3.5rem;
  background: url("./../img/icon_arrow_blk.svg");
  background-size: cover;
}
.c-support__Box:last-of-type {
  margin-bottom: 0;
}
.c-support__Box.-reverse {
  flex-direction: row-reverse;
}
.c-support__Btn {
  margin: 6rem auto 0;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5.6rem;
  width: 30.9rem;
  color: #fff;
  background: #311B00;
  border-radius: 2.6rem;
}
.c-support__Btn:before {
  margin-right: 1rem;
  content: "";
  width: 1.7rem;
  height: 1.3rem;
  background: url(./../img/icon_mail.png);
  background-size: cover;
}

.p-top .c-support__Btn {
  display: none;
}

.p-flow .c-support {
  padding-bottom: 12rem;
}
.p-flow .c-support:after {
  display: none;
}

@media screen and (max-width: 767px) {
  .c-support::after {
    width: 100%;
  }
  .c-support__Ttl span {
    font-size: 1.8rem;
  }
  .c-support__Box {
    display: block;
  }
  .c-support__Box-Thum {
    width: 100%;
  }
  .c-support__Box-Detail {
    width: 100%;
    margin-top: 5rem;
  }
  .c-support__Box-Detail-Ttl {
    font-size: 3.2rem;
    line-height: 4.8rem;
  }
  .c-support__Box-Detail-Txt {
    font-size: 2.4rem;
    line-height: 4.2rem;
  }
  .c-support__Box-Detail-Btn {
    font-size: 2.4rem;
  }
  .c-support__Btn {
    font-size: 2.4rem;
    height: 10rem;
    width: 80%;
    border-radius: 5rem;
  }
  .c-support__Btn:before {
    margin-right: 2rem;
    width: 3.4rem;
    height: 2.6rem;
  }
  .p-flow .c-support {
    padding-bottom: 12rem;
  }
  .p-flow .c-support:after {
    display: none;
  }
}
.c-servicelinks {
  margin-bottom: 12rem;
}
.c-servicelinks__Inner {
  position: relative;
}
.c-servicelinks__Ttl {
  text-align: center;
  font-size: 3.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 6.7rem;
}
.c-servicelinks__Ttl span {
  margin-bottom: 2rem;
  display: block;
  font-size: 1.4rem;
}
.c-servicelinks__List {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
}
.c-servicelinks__Item {
  width: 38rem;
}
.c-servicelinks__Item:nth-child(3n+2) {
  transition-delay: 0.3s;
}
.c-servicelinks__Item:nth-child(3n+3) {
  transition-delay: 0.6s;
}
.c-servicelinks__Item-Thum {
  margin-bottom: 2rem;
}
.c-servicelinks__Item-Ttl {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2.4rem;
  padding-left: 2.2rem;
  position: relative;
}
.c-servicelinks__Item-Ttl:before {
  position: absolute;
  left: 0.2rem;
  top: 0.25em;
  width: 1.2rem;
  height: 1.2rem;
  background: #EFAA50;
  border-radius: 50%;
  content: "";
}

@media screen and (max-width: 767px) {
  .c-servicelinks__Ttl span {
    font-size: 1.8rem;
  }
  .c-servicelinks__List {
    display: block;
  }
  .c-servicelinks__Item {
    width: 100%;
    margin-bottom: 5rem;
  }
  .c-servicelinks__Item:nth-child(3n+2) {
    transition-delay: 0s;
  }
  .c-servicelinks__Item:nth-child(3n+3) {
    transition-delay: 0s;
  }
  .c-servicelinks__Item-Ttl {
    font-size: 2.4rem;
    line-height: 4.2rem;
  }
  .c-servicelinks__Item-Ttl:before {
    top: 0.5em;
  }
}
.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2.8rem;
  font-size: 1.4rem;
  font-weight: bold;
  background: #311B00;
  color: #fff;
  position: relative;
}
.c-btn:after {
  position: absolute;
  right: 0.8rem;
  content: "";
  width: 3.5rem;
  height: 3.5rem;
  background: url(./../img/icon_arrow_wht_blk.svg);
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .c-btn {
    font-size: 2.4rem;
  }
  .c-btn:after {
    right: 1.8rem;
    width: 6.5rem;
    height: 6.5rem;
  }
}
.breadcrumb {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  z-index: 10;
  background: #fff;
  border-radius: 10rem 0 0 0;
  padding: 2rem 0 5rem 0;
}
.breadcrumb ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: calc(100% - 6rem);
  gap: 1.5rem;
}
.breadcrumb ul li {
  font-size: 1.4rem;
  font-weight: bold;
  padding-left: 2rem;
  position: relative;
}
.breadcrumb ul li:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1rem;
  height: 1.5rem;
  background-size: cover;
  background-image: url("./../img/icon_breadcrumb_arrow.svg");
  content: "";
}
.breadcrumb ul li a {
  font-size: 1.4rem;
  font-weight: bold;
}
.breadcrumb ul li.-home:before {
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("./../img/icon_breadcrumb_home.svg");
}

@media screen and (max-width: 767px) {
  .breadcrumb ul li {
    font-size: 2.4rem;
    padding-left: 4rem;
  }
  .breadcrumb ul li:before {
    width: 2rem;
    height: 3rem;
  }
  .breadcrumb ul li a {
    font-size: 2.4rem;
  }
  .breadcrumb ul li.-home:before {
    width: 3rem;
    height: 3rem;
  }
}
.p-company__Vision {
  margin-bottom: 12rem;
}
.p-company__Vision-Inner {
  flex-direction: row-reverse;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-company__Vision-Left {
  width: 54rem;
}
.p-company__Vision-Ttl {
  font-size: 3.6rem;
  font-weight: bold;
  margin-bottom: 6rem;
}
.p-company__Vision-Ttl span {
  font-size: 1.4rem;
  display: block;
}
.p-company__Vision-Txt {
  font-size: 1.4rem;
  line-height: 3.2rem;
}
.p-company__Vision-Right {
  width: 55rem;
  height: 54rem;
  position: relative;
}
.p-company__Vision-Right:before {
  position: absolute;
  border-radius: 3rem 0 0 3rem;
  top: 0;
  left: 0;
  width: 50vw;
  height: 54rem;
  content: "";
  background: url("./../img/img_company_vision.png");
  background-size: cover;
}
.p-company__Info {
  margin-bottom: 12rem;
}
.p-company__Info-Inner {
  padding: 12rem 0;
  position: relative;
}
.p-company__Info-Inner:before {
  position: absolute;
  content: "";
  z-index: -1;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  background: #FAF8EF;
  border-radius: 3rem;
}
.p-company__Info-Ttl {
  text-align: center;
  font-size: 3.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 5.8rem;
}
.p-company__Info-Ttl span {
  margin-bottom: 2rem;
  display: block;
  font-size: 1.4rem;
}
.p-company__Info-Wrap {
  width: 90rem;
  margin: 0 auto 6rem;
}
.p-company__Info-Wrap table {
  width: 100%;
}
.p-company__Info-Wrap table th {
  font-size: 1.6rem;
  padding: 3rem;
  width: 22rem;
  border-bottom: 0.1rem solid #EFAA50;
}
.p-company__Info-Wrap table td {
  font-size: 1.6rem;
  padding: 3rem;
  margin-left: 0.5rem;
  width: calc(100% - 22rem);
  border-bottom: 0.1rem solid #ccc;
}
.p-company__Info-Map {
  margin: 0 auto 6rem;
  width: 90rem;
}
.p-company__Info-Map-Box {
  position: relative;
  width: 100%;
  height: 43rem;
}
.p-company__Info-Map-Box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-company__Info-Map-Btn {
  margin-top: 2.8rem;
  text-align: right;
}
.p-company__Info-Map-Btn a {
  font-size: 1.4rem;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
}
.p-company__Info-Map-Btn a:after {
  margin-left: 2rem;
  content: "";
  width: 3.5rem;
  height: 3.5rem;
  background: url(./../img/icon_arrow_blk.svg);
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .p-company__Vision-Inner {
    display: block;
  }
  .p-company__Vision-Left {
    width: 100%;
    margin-top: 3rem;
  }
  .p-company__Vision-Ttl {
    margin-bottom: 3rem;
  }
  .p-company__Vision-Ttl span {
    font-size: 1.8rem;
    display: block;
  }
  .p-company__Vision-Txt {
    font-size: 2.4rem;
    line-height: 4.2rem;
  }
  .p-company__Vision-Right {
    width: 100%;
    height: 54rem;
    border-radius: 5rem;
    overflow: hidden;
  }
  .p-company__Vision-Right:before {
    position: absolute;
    border-radius: 3rem 0 0 3rem;
    top: 0;
    left: 0;
    width: 100%;
    height: 54rem;
    content: "";
    background: url("./../img/img_company_vision.png");
    background-size: cover;
  }
  .p-company__Info {
    background: #FAF8EF;
  }
  .p-company__Info-Inner:before {
    display: none;
  }
  .p-company__Info-Ttl span {
    font-size: 1.8rem;
  }
  .p-company__Info-Wrap {
    width: 100%;
    margin: 0 auto 6rem;
  }
  .p-company__Info-Wrap table {
    width: 100%;
  }
  .p-company__Info-Wrap table th {
    font-size: 2.4rem;
    line-height: 4.2rem;
    vertical-align: top;
    width: 40%;
  }
  .p-company__Info-Wrap table td {
    font-size: 2.4rem;
    line-height: 4.2rem;
    width: 60%;
  }
  .p-company__Info-Map {
    width: 100%;
  }
  .p-company__Info-Map-Btn a {
    font-size: 2.4rem;
  }
}
.p-contact {
  width: 138rem;
  margin: auto;
  background: #EFAA50;
  border-radius: 3rem;
  position: relative;
  z-index: 10;
}
.p-contact__Inner {
  display: flex;
  justify-content: space-between;
}
.p-contact__Detail {
  width: 72rem;
  padding: 8.5rem 0;
  color: #fff;
}
.p-contact__Detail-Ttl {
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 2.6rem;
  line-height: 1;
}
.p-contact__Detail-Ttl span {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 2rem;
}
.p-contact__Detail-Txt {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2.2rem;
}
.p-contact__Tel {
  width: 33rem;
  border-left: 0.1rem solid #fff;
  border-right: 0.1rem solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.p-contact__Tel-Thum {
  margin: 0 auto 2rem;
  width: 5.1rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  position: relative;
}
.p-contact__Tel-Thum:before {
  position: absolute;
  bottom: 0;
  width: 3rem;
  height: 0.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: #AD7225;
  content: "";
}
.p-contact__Tel-Ttl {
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 1.3rem;
}
.p-contact__Tel-Txt {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.p-contact__Tel-Txt span {
  font-size: 1.2rem;
}
.p-contact__Spflex {
  display: flex;
}
.p-contact__Mail {
  width: 33rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-contact__Mail-Thum {
  margin: 0 auto 2rem;
  width: 5.1rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  position: relative;
}
.p-contact__Mail-Thum:before {
  position: absolute;
  bottom: 0;
  width: 3rem;
  height: 0.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: #AD7225;
  content: "";
}
.p-contact__Mail-Btn {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.p-contact__Mail-Btn:after {
  display: inline-block;
  margin-left: 2rem;
  content: "";
  width: 3.5rem;
  height: 3.5rem;
  background: url("./../img/icon_arrow_wht_yellow.svg");
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .p-contact {
    width: 95%;
  }
  .p-contact__Inner {
    flex-flow: column;
  }
  .p-contact__Detail {
    width: 100%;
    padding: 5rem 0;
  }
  .p-contact__Detail-Ttl {
    font-size: 3.6rem;
  }
  .p-contact__Detail-Ttl span {
    font-size: 1.8rem;
  }
  .p-contact__Detail-Txt {
    font-size: 2.4rem;
    line-height: 4.2rem;
  }
  .p-contact__Spflex {
    border-top: 0.1rem solid #fff;
    padding-bottom: 5rem;
  }
  .p-contact__Tel {
    padding: 5rem 0;
    width: 50%;
    border-right: 0.1rem solid #fff;
    border-left: none;
  }
  .p-contact__Tel-Thum {
    width: 10rem;
  }
  .p-contact__Tel-Thum:before {
    width: 6rem;
  }
  .p-contact__Tel-Ttl {
    font-size: 3.2rem;
  }
  .p-contact__Tel-Txt {
    font-size: 2.4rem;
  }
  .p-contact__Tel-Txt span {
    font-size: 2rem;
  }
  .p-contact__Mail {
    padding: 5rem 0;
    width: 50%;
  }
  .p-contact__Mail-Thum {
    width: 10rem;
  }
  .p-contact__Mail-Thum:before {
    width: 6rem;
  }
  .p-contact__Mail-Btn {
    margin-bottom: 6rem;
    font-size: 2.4rem;
  }
}
.p-inquiry__Inner {
  margin-bottom: 20rem;
}
.p-inquiry__Form {
  margin: 3.3333333333vw;
}
@media screen and (max-width: 767px) {
  .p-inquiry__Form {
    margin: 6.6666666667vw 0;
  }
}
.p-inquiry__Form_Ttl {
  text-align: center;
  font-size: 3.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 6.7rem;
}
.p-inquiry__Form_Desc {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 2vw;
}
@media screen and (max-width: 767px) {
  .p-inquiry__Form_Desc {
    font-size: 3.2vw;
    margin-bottom: 4vw;
  }
}
.p-inquiry__Form__Content {
  width: 56vw;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-inquiry__Form__Content {
    width: 100%;
    margin-top: 8vw;
  }
}
.p-inquiry__Form__Content__Dl {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2vw;
}
@media screen and (max-width: 767px) {
  .p-inquiry__Form__Content__Dl {
    flex-direction: column;
    margin-bottom: 4vw;
  }
}
.p-inquiry__Form__Content__Dt {
  width: 11.3333333333vw;
  font-size: 1.0666666667vw;
}
@media screen and (max-width: 767px) {
  .p-inquiry__Form__Content__Dt {
    width: 100%;
    font-size: 3.4666666667vw;
  }
}
.p-inquiry__Form__Content__Dd {
  width: 42vw;
  font-size: 1.0666666667vw;
}
@media screen and (max-width: 767px) {
  .p-inquiry__Form__Content__Dd {
    width: 100%;
    font-size: 3.4666666667vw;
  }
}
.p-inquiry__Form__Content__Dd input[type=text],
.p-inquiry__Form__Content__Dd input[type=email],
.p-inquiry__Form__Content__Dd input[type=tel],
.p-inquiry__Form__Content__Dd textarea {
  width: 100%;
  padding: 0.6666666667vw;
  border: 1px solid #ccc;
  font-size: 1.0666666667vw;
  margin-top: 0.6666666667vw;
}
@media screen and (max-width: 767px) {
  .p-inquiry__Form__Content__Dd input[type=text],
  .p-inquiry__Form__Content__Dd input[type=email],
  .p-inquiry__Form__Content__Dd input[type=tel],
  .p-inquiry__Form__Content__Dd textarea {
    padding: 2.6666666667vw;
    font-size: 3.4666666667vw;
  }
}
.p-inquiry__Form__Content__Dd .mwform-radio-field label {
  display: block;
  font-size: 1.0666666667vw;
}
@media screen and (max-width: 767px) {
  .p-inquiry__Form__Content__Dd .mwform-radio-field label {
    font-size: 3.4666666667vw;
  }
}
.p-inquiry__Form__Content__Dd .error {
  margin-top: 0.6666666667vw;
  font-size: 1.0666666667vw !important;
}
@media screen and (max-width: 767px) {
  .p-inquiry__Form__Content__Dd .error {
    margin-top: 2.6666666667vw;
    font-size: 3.4666666667vw !important;
  }
}
.p-inquiry__Form__Content .Required {
  color: red;
  font-size: 1.0666666667vw;
  margin-top: 0.6666666667vw;
  margin-bottom: 1.3333333333vw;
}
@media screen and (max-width: 767px) {
  .p-inquiry__Form__Content .Required {
    font-size: 3.4666666667vw;
  }
}
.p-inquiry__Form__Content__Privacy {
  text-align: center;
  font-size: 0.9333333333vw;
}
@media screen and (max-width: 767px) {
  .p-inquiry__Form__Content__Privacy {
    font-size: 3.2vw;
  }
}
.p-inquiry__Form__Content__Privacy .error {
  margin-top: 0.6666666667vw;
  font-size: 1.0666666667vw !important;
}
@media screen and (max-width: 767px) {
  .p-inquiry__Form__Content__Privacy .error {
    margin-top: 2.6666666667vw;
    font-size: 3.4666666667vw !important;
  }
}
.p-inquiry__Form__Content__Link {
  text-align: center;
  font-size: 0.9333333333vw;
  margin-bottom: 1.3333333333vw;
}
@media screen and (max-width: 767px) {
  .p-inquiry__Form__Content__Link {
    font-size: 3.2vw;
  }
}
.p-inquiry__Form__Content__Link a {
  color: #EFAA50;
  font-weight: bold;
}
.p-inquiry__Form__Content__confirm {
  text-align: center;
  margin-top: 1.3333333333vw;
  margin-bottom: 1.3333333333vw;
}
@media screen and (max-width: 767px) {
  .p-inquiry__Form__Content__confirm {
    margin-top: 4vw;
    margin-bottom: 4vw;
  }
}
.p-inquiry__Form__Content__confirm input[type=submit] {
  background: #EFAA50;
  border: 1px solid #EFAA50;
  color: #fff;
  font-size: 1.0666666667vw;
  padding: 1.3333333333vw 1.3333333333vw;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  width: 21.3333333333vw;
  max-width: 100%;
  margin: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-inquiry__Form__Content__confirm input[type=submit] {
    font-size: 3.4666666667vw;
    padding: 3.3333333333vw;
    max-width: 100%;
    width: 100%;
  }
}
.p-inquiry__Form__Content__confirm input[type=submit]:hover {
  border: 1px solid #EFAA50;
  background: #fff;
  color: #EFAA50;
}
.p-inquiry__Form__TopBtn {
  width: 100%;
  max-width: 21.3333333333vw;
  text-align: center;
  display: block;
  border: 1px solid #000;
  padding: 1vw 0;
  color: #000;
  font-size: 0.9333333333vw;
  font-weight: bold;
  margin: 1.3333333333vw auto;
  transition: 0.6s;
}
@media screen and (max-width: 767px) {
  .p-inquiry__Form__TopBtn {
    font-size: 3.2vw;
    max-width: 100%;
  }
}
.p-inquiry__Form__TopBtn:hover {
  border: 1px solid #000;
  background-color: #000;
  color: #fff;
  opacity: 1;
}
.p-inquiry__Complete {
  display: flex;
  justify-content: space-between;
  gap: 3.3333333333vw;
  margin: 3.3333333333vw 0;
}
.p-inquiry__Complete li h3 {
  font-size: 1.3333333333vw;
  color: #000;
  margin: 1.3333333333vw 0;
}
@media screen and (max-width: 767px) {
  .p-inquiry__Complete li h3 {
    font-size: 4vw;
  }
}
.p-inquiry__Complete li p {
  font-size: 0.9333333333vw;
  color: #000;
  margin: 0.6666666667vw 0;
}
@media screen and (max-width: 767px) {
  .p-inquiry__Complete li p {
    font-size: 3.2vw;
  }
}

.p-faq {
  padding: 12rem 0 10rem;
}
.p-faq__Inner {
  position: relative;
}
.p-faq__Ttl {
  text-align: center;
  font-size: 3.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 5.8rem;
  margin-bottom: 6.7rem;
}
.p-faq__Ttl span {
  margin-bottom: 2rem;
  display: block;
  line-height: 1;
  font-size: 1.4rem;
}
.p-faq__Dl {
  width: 100rem;
  margin: 0 auto 2rem;
  background: #FAFCF9;
  border-radius: 0.6rem;
  position: relative;
}
.p-faq__Dl:before {
  position: absolute;
  width: 2.5rem;
  height: 0.3rem;
  background: #B5C481;
  content: "";
  top: 3.5rem;
  right: 2.7rem;
}
.p-faq__Dl:after {
  position: absolute;
  height: 2.5rem;
  width: 0.3rem;
  background: #B5C481;
  content: "";
  top: 2.4rem;
  right: 3.8rem;
  transition: 0.3s;
}
.p-faq__Dl.-op:after {
  opacity: 0;
}
.p-faq__Dt {
  font-size: 1.6rem;
  padding: 2.2rem 8rem 2.2rem 10rem;
  font-weight: 500;
  color: #333;
  position: relative;
  cursor: pointer;
}
.p-faq__Dt:before {
  border-radius: 0.6rem 0 0 0;
  position: absolute;
  width: 7.4rem;
  height: 100%;
  background: #B5C481;
  content: "Q";
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  color: #fff;
  font-size: 2.8rem;
}
.p-faq__Dd {
  border-top: 0.1rem solid #ccc;
  font-size: 1.4rem;
  line-height: 2.4rem;
  padding: 2rem 8rem 2rem 10rem;
  font-weight: 500;
  color: #333;
  position: relative;
  display: none;
}
.p-faq__Dd:before {
  border-radius: 0.6rem 0 0 0;
  position: absolute;
  color: #B5C481;
  content: "A";
  top: 2rem;
  left: 5.8rem;
  font-size: 2.8rem;
}
.p-faq__Btn {
  margin: 4rem auto 0;
  width: 27.1rem;
  height: 5.6rem;
}

@media screen and (max-width: 767px) {
  .p-faq__Ttl span {
    font-size: 1.8rem;
  }
  .p-faq__Dl {
    width: 100%;
  }
  .p-faq__Dt {
    font-size: 2.4rem;
  }
  .p-faq__Dd {
    font-size: 2.4rem;
    line-height: 3.6rem;
    padding-right: 4rem;
  }
  .p-faq__Dd:before {
    left: 3rem;
  }
  .p-faq__Btn {
    height: 10rem;
    width: 80%;
    border-radius: 5rem;
  }
}
.p-flow__Main-Inner {
  position: relative;
}
.p-flow__Main-Ttl {
  text-align: center;
  background: #EFAA50;
  color: #fff;
  font-size: 2.8rem;
  line-height: 1;
  padding: 2rem 0;
  border-radius: 1rem;
  margin-bottom: 2rem;
}
.p-flow__Main-Item {
  padding: 3rem 0;
  border-radius: 1rem;
  background: #FAF8EF;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  color: #EFAA50;
  text-align: center;
  margin-bottom: 5.6rem;
  position: relative;
}
.p-flow__Main-Item span {
  font-weight: 400;
  margin-top: 1rem;
  display: block;
  font-size: 1.4rem;
  color: #000;
}
.p-flow__Main-Item:before {
  position: absolute;
  content: "";
  bottom: -5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border: 3.15rem solid transparent;
  border-top: 1.6rem solid #EFAA50;
  border-bottom: 1.6rem solid transparent;
}
.p-flow__Main-Item.-noarrow:before {
  display: none;
}
.p-flow__Main-Item.-choice {
  background: none;
  padding: 0;
  margin-bottom: 2rem;
}
.p-flow__Main-Item.-choice:before {
  display: none;
}
.p-flow__Main-Item.-last {
  border: 0.4rem solid #EFAA50;
}
.p-flow__Main-Item.-last:before {
  display: none;
}
.p-flow__Main-Box {
  margin-bottom: 2rem;
  background: #F2F2F2;
  border-radius: 1rem;
  padding: 5.2rem 0;
}
.p-flow__Main-Box-Inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 93.3rem;
  margin: auto;
}
.p-flow__Main-Box-Ttl {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1;
}
.p-flow__Main-Box-Btns {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.p-flow__Main-Box-Btns a {
  font-size: 1.4rem;
  color: #fff;
  line-height: 1;
  padding: 1.8rem 0;
  text-align: center;
  border-radius: 5rem;
  position: relative;
}
.p-flow__Main-Box-Btns a:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.8rem;
  content: "";
  width: 3.5rem;
  height: 3.5rem;
  background-size: cover;
}
.p-flow__Main-Box-Btns a.-red {
  width: 27.1rem;
  background: #D0908B;
}
.p-flow__Main-Box-Btns a.-red:after {
  background-image: url(./../img/icon_pdf_red.svg);
}
.p-flow__Main-Box-Btns a.-blue {
  width: 27.1rem;
  background: #7EC6E0;
}
.p-flow__Main-Box-Btns a.-blue:after {
  background-image: url(./../img/icon_pdf_blue.svg);
}
.p-flow__Main-Box-Btns a.-blk {
  width: 56.3rem;
  background: #311B00;
}
.p-flow__Main-Box-Btns a.-blk:after {
  background-image: url(./../img/icon_pdf_blk.svg);
}
.p-flow__Main-Btn {
  margin: 6rem auto 0;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5.6rem;
  width: 30.9rem;
  color: #fff;
  background: #311B00;
  border-radius: 2.6rem;
}
.p-flow__Main-Btn:before {
  margin-right: 1rem;
  content: "";
  width: 1.7rem;
  height: 1.3rem;
  background: url(./../img/icon_mail.png);
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .p-flow__Main-Ttl {
    padding: 4rem 0;
    font-size: 3.2rem;
  }
  .p-flow__Main-Item {
    font-size: 2.4rem;
  }
  .p-flow__Main-Item span {
    margin-top: 2rem;
    font-size: 1.8rem;
  }
  .p-flow__Main-Box-Inner {
    display: block;
    width: 90%;
    margin: auto;
  }
  .p-flow__Main-Box-Ttl {
    font-size: 3.6rem;
    text-align: center;
    margin-bottom: 3rem;
  }
  .p-flow__Main-Box-Btns a {
    padding: 3rem 0;
    font-size: 2.2rem;
  }
  .p-flow__Main-Box-Btns a:after {
    right: 1.5rem;
    width: 4.5rem;
    height: 4.5rem;
  }
  .p-flow__Main-Box-Btns a.-red {
    width: 48%;
  }
  .p-flow__Main-Box-Btns a.-blue {
    width: 48%;
  }
  .p-flow__Main-Box-Btns a.-blk {
    width: 100%;
  }
  .p-flow__Main-Btn {
    height: 10rem;
    width: 80%;
    border-radius: 5rem;
    font-size: 2.4rem;
  }
  .p-flow__Main-Btn:before {
    margin-right: 3rem;
    width: 3.4rem;
    height: 2.6rem;
  }
}
.p-mv {
  padding-top: 12.8rem;
  background: #FAF8EF;
  position: relative;
}
.p-mv:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 6rem);
  height: 50rem;
  background-size: cover;
  background-position: right top;
  content: "";
}
.p-mv__Inner {
  position: relative;
}
.p-mv__Ttl {
  font-size: 4rem;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding: 19.2rem 0 25rem;
}
.p-mv.-service:before {
  background-image: url("./../img/img_service_mv.png");
}
.p-mv.-flow:before {
  background-image: url("./../img/img_flow_mv.png");
}
.p-mv.-company:before {
  background-image: url("./../img/img_company_mv.png");
}
.p-mv.-staff:before {
  background-image: url("./../img/img_staff_mv.png");
}

.p-plan {
  padding: 12rem 0 10rem;
}
.p-plan__Inner {
  position: relative;
}
.p-plan__Ttl {
  text-align: center;
  font-size: 3.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 6.7rem;
}
.p-plan__Ttl span {
  margin-bottom: 2rem;
  display: block;
  font-size: 1.4rem;
}
.p-plan__Subttl {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 3rem;
}
.p-plan__Subttl.-mb {
  margin-bottom: 2rem;
}
.p-plan__Txt {
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 3rem;
}
.p-plan__Txt.-mb {
  margin-bottom: 2rem;
}
.p-plan__Box01 {
  width: 100%;
  margin-bottom: 6rem;
}
.p-plan__Box01 table {
  width: 100%;
}
.p-plan__Box01 table th {
  width: 38rem;
  background: #7EC6E0;
  color: #fff;
  font-size: 1.6rem;
  line-height: 2.6rem;
  font-weight: bold;
  border: 0.1rem solid #ccc;
  padding: 3rem;
  vertical-align: top;
}
.p-plan__Box01 table td {
  width: calc(100% - 38rem);
  font-size: 1.4rem;
  line-height: 2.4rem;
  border: 0.1rem solid #ccc;
  padding: 3rem;
  vertical-align: top;
}
.p-plan__Box02 {
  width: 100%;
  margin-bottom: 3rem;
}
.p-plan__Box02 table {
  width: 100%;
}
.p-plan__Box02 table th {
  background: #7EC6E0;
  color: #fff;
  font-size: 1.6rem;
  line-height: 2.6rem;
  font-weight: bold;
  border: 0.1rem solid #ccc;
  padding: 3rem;
  vertical-align: middle;
  width: 25%;
}
.p-plan__Box02 table td {
  font-size: 1.4rem;
  line-height: 2.4rem;
  border: 0.1rem solid #ccc;
  padding: 3rem;
  vertical-align: middle;
  text-align: center;
}
.p-plan__Comment {
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.p-plan__Btn {
  margin: 4.8rem auto 0;
  width: 29.3rem;
  height: 5.6rem;
}

@media screen and (max-width: 767px) {
  .p-plan__Ttl span {
    font-size: 1.8rem;
  }
  .p-plan__Subttl {
    font-size: 2.8rem;
  }
  .p-plan__Txt {
    font-size: 2.4rem;
    line-height: 4.2rem;
  }
  .p-plan__Box01 {
    width: 100%;
    margin-bottom: 6rem;
  }
  .p-plan__Box01 table {
    width: 100%;
  }
  .p-plan__Box01 table th {
    display: block;
    width: 100%;
    padding: 2rem;
    vertical-align: middle;
    font-size: 2.4rem;
    line-height: 4.2rem;
  }
  .p-plan__Box01 table td {
    display: block;
    width: 100%;
    padding: 2rem;
    vertical-align: middle;
    font-size: 2.4rem;
    line-height: 4.2rem;
  }
  .p-plan__Box02 {
    overflow: scroll;
  }
  .p-plan__Box02 table {
    width: 100%;
  }
  .p-plan__Box02 table th {
    padding: 2rem;
    vertical-align: middle;
    font-size: 2.4rem;
    line-height: 4.2rem;
    min-width: 40rem;
  }
  .p-plan__Box02 table td {
    padding: 2rem;
    vertical-align: middle;
    font-size: 2.4rem;
    line-height: 4.2rem;
  }
  .p-plan__Comment {
    font-size: 2.4rem;
    line-height: 4.2rem;
  }
  .p-plan__Btn {
    height: 10rem;
    width: 80%;
    border-radius: 5rem;
  }
}
.p-service__Main {
  padding: 7rem 0 9.6rem;
  background-color: #fff;
  border-radius: 0 0 10rem 10rem;
  position: relative;
}
.p-service__Main:before {
  position: absolute;
  content: "";
  bottom: -10rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border: 10rem solid transparent;
  border-top: 5rem solid #B5C481;
  border-bottom: 5rem solid transparent;
}
.p-service__Main-Inner {
  position: relative;
}
.p-service__Main-Ttl {
  text-align: center;
  font-size: 3.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 6.7rem;
}
.p-service__Main-Ttl span {
  margin-bottom: 2rem;
  display: block;
  font-size: 1.4rem;
}
.p-service__Wrap {
  margin-top: -10rem;
  padding: 22.5rem 0 12rem;
  background-color: #EEF2E2;
  border-radius: 0 0 10rem 0;
}
.p-service__Support-Inner {
  position: relative;
}
.p-service__Support-Flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12rem;
  flex-direction: row-reverse;
}
.p-service__Support-Left {
  width: 59rem;
}
.p-service__Support-Right {
  width: 55rem;
}
.p-service__Support-Ttl {
  font-size: 3.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 5.8rem;
  margin-bottom: 4rem;
}
.p-service__Support-Subttl {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 4rem;
}
.p-service__Support-Txt {
  font-size: 1.4rem;
  line-height: 2.6rem;
  margin-bottom: 4rem;
}
.p-service__Support-Btn {
  font-size: 1.4rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.p-service__Support-Btn:after {
  margin-left: 2rem;
  content: "";
  width: 3.5rem;
  height: 3.5rem;
  background: url(./../img/icon_arrow_blk.svg);
  background-size: cover;
}
.p-service__Trouble-Inner {
  position: relative;
}
.p-service__Trouble-Ttl {
  text-align: center;
  font-size: 3.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 6.7rem;
}
.p-service__Trouble-Ttl span {
  margin-bottom: 2rem;
  display: block;
  font-size: 1.4rem;
}
.p-service__Trouble-List {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem 2.5rem;
}
.p-service__Trouble-Item {
  width: 28rem;
}
.p-service__Trouble-Item:nth-child(4n+2) {
  transition-delay: 0.3s;
}
.p-service__Trouble-Item:nth-child(4n+3) {
  transition-delay: 0.6s;
}
.p-service__Trouble-Item:nth-child(4n+4) {
  transition-delay: 0.9s;
}
.p-service__Trouble-Item-Thum {
  margin-bottom: 2rem;
}
.p-service__Trouble-Item-Ttl {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2.4rem;
  padding-left: 2.2rem;
  position: relative;
}
.p-service__Trouble-Item-Ttl:before {
  position: absolute;
  left: 0.2rem;
  top: 0.25em;
  width: 1.2rem;
  height: 1.2rem;
  background: #B5C481;
  border-radius: 50%;
  content: "";
}
.p-service__Trouble-Btn {
  margin: 6rem auto 0;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5.6rem;
  width: 30.9rem;
  color: #fff;
  background: #311B00;
  border-radius: 2.6rem;
}
.p-service__Trouble-Btn:before {
  margin-right: 1rem;
  content: "";
  width: 1.7rem;
  height: 1.3rem;
  background: url(./../img/icon_mail.png);
  background-size: cover;
}
.p-service .p-plan__Btn {
  display: none;
}
.p-service__Simulation-Inner {
  padding: 12rem 0;
  position: relative;
}
.p-service__Simulation-Inner:before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: #FAF8EF;
  border-radius: 10rem 0 0 10rem;
}
.p-service__Simulation-Ttl {
  text-align: center;
  font-size: 3.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 4rem;
}
.p-service__Simulation-Subttl {
  width: 96rem;
  margin: auto;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.p-service__Simulation-Txt {
  width: 96rem;
  margin: auto;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.p-service__Simulation-Wrap01 {
  width: 96rem;
  margin: auto;
}
.p-service__Simulation-Wrap01 table {
  width: 100%;
}
.p-service__Simulation-Wrap01 table th {
  background: #EFAA50;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  border: 0.1rem solid #ccc;
  text-align: center;
  padding: 2.5rem 0;
  line-height: 1;
}
.p-service__Simulation-Wrap01 table td {
  width: 33.3333333333%;
  background: #fff;
  font-size: 1.6rem;
  border: 0.1rem solid #ccc;
  text-align: center;
  padding: 2.5rem 0;
  line-height: 1;
}
.p-service__Simulation-Wrap02 {
  width: 96rem;
  margin: auto;
}
.p-service__Simulation-Wrap02 table {
  width: 100%;
}
.p-service__Simulation-Wrap02 table th {
  background: #D0908B;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  border: 0.1rem solid #ccc;
  text-align: center;
  padding: 2.5rem 0;
  line-height: 1;
}
.p-service__Simulation-Wrap02 table td {
  background: #fff;
  font-size: 1.6rem;
  border: 0.1rem solid #ccc;
  text-align: center;
  padding: 2.5rem 0;
  line-height: 1;
}
.p-service__Simulation-Wrap02 table td:nth-child(1) {
  width: 66.6666666667%;
}
.p-service__Simulation-Wrap02 table td:nth-child(2) {
  width: 33.3333333333%;
}
.p-service__Simulation-Btn {
  margin: 4rem auto 0;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5.6rem;
  width: 30.9rem;
  color: #fff;
  background: #311B00;
  border-radius: 2.6rem;
}
.p-service__Simulation-Btn:before {
  margin-right: 1rem;
  content: "";
  width: 1.7rem;
  height: 1.3rem;
  background: url(./../img/icon_mail.png);
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .p-service__Main-Ttl span {
    font-size: 1.8rem;
  }
  .p-service__Support-Flex {
    display: block;
  }
  .p-service__Support-Left {
    width: 100%;
    margin-top: 3rem;
  }
  .p-service__Support-Right {
    width: 100%;
  }
  .p-service__Support-Ttl {
    font-size: 3.6rem;
  }
  .p-service__Support-Subttl {
    font-size: 2.8rem;
  }
  .p-service__Support-Txt {
    font-size: 2.4rem;
    line-height: 4.2rem;
  }
  .p-service__Support-Btn {
    font-size: 2.4rem;
  }
  .p-service__Trouble-Ttl span {
    font-size: 1.8rem;
  }
  .p-service__Trouble-Item {
    width: 48%;
  }
  .p-service__Trouble-Item:nth-child(2n+1) {
    transition-delay: 0s !important;
  }
  .p-service__Trouble-Item:nth-child(2n+2) {
    transition-delay: 0.3s !important;
  }
  .p-service__Trouble-Item-Ttl {
    font-size: 2.4rem;
    line-height: 4.2rem;
  }
  .p-service__Trouble-Btn {
    height: 10rem;
    width: 80%;
    border-radius: 5rem;
    font-size: 2.4rem;
  }
  .p-service__Trouble-Btn:before {
    margin-right: 3rem;
    width: 3.4rem;
    height: 2.6rem;
  }
  .p-service .p-plan__Btn {
    display: none;
  }
  .p-service__Simulation {
    background: #FAF8EF;
  }
  .p-service__Simulation-Inner:before {
    display: none;
  }
  .p-service__Simulation-Subttl {
    width: 100%;
    font-size: 2.8rem;
  }
  .p-service__Simulation-Txt {
    width: 100%;
    font-size: 2.4rem;
    line-height: 4.2rem;
  }
  .p-service__Simulation-Wrap01 {
    width: 100%;
  }
  .p-service__Simulation-Wrap01 table {
    width: 100%;
  }
  .p-service__Simulation-Wrap01 table th {
    font-size: 2.4rem;
    line-height: 4.2rem;
    padding: 2rem;
  }
  .p-service__Simulation-Wrap01 table td {
    font-size: 2.4rem;
    line-height: 4.2rem;
    padding: 2rem;
  }
  .p-service__Simulation-Wrap02 {
    width: 100%;
    margin: auto;
  }
  .p-service__Simulation-Wrap02 table {
    width: 100%;
  }
  .p-service__Simulation-Wrap02 table th {
    font-size: 2.4rem;
    line-height: 4.2rem;
    padding: 2rem;
  }
  .p-service__Simulation-Wrap02 table td {
    font-size: 2.4rem;
    line-height: 4.2rem;
    padding: 2rem;
  }
  .p-service__Simulation-Btn {
    height: 10rem;
    width: 80%;
    border-radius: 5rem;
    font-size: 2.4rem;
  }
  .p-service__Simulation-Btn:before {
    margin-right: 3rem;
    width: 3.4rem;
    height: 2.6rem;
  }
}
.p-staff__Box {
  margin-bottom: 11.2rem;
}
.p-staff__Box-Main {
  position: relative;
  margin-bottom: 10rem;
}
.p-staff__Box-Main-Thum {
  width: 98rem;
}
.p-staff__Box-Main-Profile {
  position: absolute;
  right: 0;
  bottom: -6.2rem;
  width: 60rem;
  background: #F7F7F7;
  padding: 4rem;
}
.p-staff__Box-Main-Profile:before {
  position: absolute;
  width: 10rem;
  height: 1rem;
  content: "";
  top: -0.5rem;
  left: 4rem;
}
.p-staff__Box-Main-Profile.-red:before {
  background: #D0908B;
}
.p-staff__Box-Main-Profile.-orange:before {
  background: #EFAA50;
}
.p-staff__Box-Main-Profile.-blue:before {
  background: #7EC6E0;
}
.p-staff__Box-Main-Profile-Comment {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 4rem;
  margin-bottom: 4rem;
}
.p-staff__Box-Main-Profile-Flex {
  display: flex;
  gap: 4rem;
  align-items: center;
}
.p-staff__Box-Main-Profile-Name {
  font-size: 2rem;
  font-weight: bold;
  padding-right: 4rem;
  border-right: 0.1rem solid #ccc;
}
.p-staff__Box-Main-Profile-Name span {
  display: block;
  font-size: 1.2rem;
}
.p-staff__Box-Main-Profile-Position {
  font-size: 1.2rem;
  font-weight: bold;
}
.p-staff__Box-Flex {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.p-staff__Box-Flex-Thum {
  width: 55rem;
}
.p-staff__Box-Flex-Detail {
  width: 60rem;
}
.p-staff__Box-Flex-Detail-Txt {
  width: 58rem;
  font-size: 1.4rem;
  line-height: 2.6rem;
  margin-bottom: 4rem;
}
.p-staff__Box-Flex-Detail-Thum {
  margin-left: auto;
  width: 38rem;
}
.p-staff__Box.-reverse .p-staff__Box-Main-Thum {
  margin-left: auto;
}
.p-staff__Box.-reverse .p-staff__Box-Main-Profile {
  right: auto;
  left: 0;
}
.p-staff__Box.-reverse .p-staff__Box-Flex {
  flex-direction: initial;
  align-items: center;
}
.p-staff__Box.-reverse .p-staff__Box-Flex-Detail-Thum {
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  .p-staff__Box-Main {
    margin-bottom: 25rem;
  }
  .p-staff__Box-Main-Thum {
    width: 100%;
  }
  .p-staff__Box-Main-Profile {
    bottom: -20rem;
  }
  .p-staff__Box-Main-Profile-Comment {
    font-size: 2.8rem;
  }
  .p-staff__Box-Main-Profile-Comment br {
    display: none;
  }
  .p-staff__Box-Main-Profile-Name {
    font-size: 2.4rem;
  }
  .p-staff__Box-Main-Profile-Name span {
    font-size: 1.8rem;
  }
  .p-staff__Box-Main-Profile-Position {
    font-size: 2.4rem;
  }
  .p-staff__Box-Flex {
    display: block;
  }
  .p-staff__Box-Flex-Thum {
    width: 100%;
  }
  .p-staff__Box-Flex-Detail {
    width: 100%;
  }
  .p-staff__Box-Flex-Detail-Txt {
    margin: 5rem auto;
    width: 100%;
    font-size: 2.4rem;
    line-height: 4.2rem;
  }
  .p-staff__Box-Flex-Detail-Thum {
    width: 80%;
  }
  .p-staff__Box.-reverse .p-staff__Box-Main-Thum {
    margin-left: auto;
  }
  .p-staff__Box.-reverse .p-staff__Box-Main-Profile {
    right: auto;
    left: 0;
  }
  .p-staff__Box.-reverse .p-staff__Box-Flex {
    flex-direction: initial;
    align-items: center;
  }
  .p-staff__Box.-reverse .p-staff__Box-Flex-Detail-Thum {
    margin-left: 0;
  }
}
.p-step {
  padding: 12rem 0 19rem;
  position: relative;
  margin-bottom: 5rem;
}
.p-step:before {
  position: absolute;
  content: "";
  background: url("./../img/bg_step.png");
  background-size: cover;
  width: 112.1rem;
  height: 72.2rem;
  top: 0;
  right: 0;
}
.p-step:after {
  position: absolute;
  content: "";
  background: url("./../img/img_step.png");
  background-size: cover;
  width: 48rem;
  height: 34rem;
  bottom: 0;
  left: 0;
}
.p-step__Inner {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.p-step__Left {
  width: 47rem;
  position: relative;
  z-index: 10;
}
.p-step__Ttl {
  font-size: 3.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 5.8rem;
  margin-bottom: 4.3rem;
}
.p-step__Ttl span {
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
  font-size: 1.4rem;
}
.p-step__Btn {
  width: 32.8rem;
  height: 5.6rem;
}
.p-step__Btn.sp {
  display: none !important;
}
.p-step__Right {
  width: 67rem;
  position: relative;
  z-index: 10;
}
.p-step__Right-Box {
  margin-bottom: 2rem;
  background: #fff;
  border-radius: 0.5rem;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
.p-step__Right-Box-No {
  background: #D0908B;
  color: #fff;
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
  width: 9.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}
.p-step__Right-Box-No span {
  display: block;
  font-size: 1.6rem;
}
.p-step__Right-Box-Dl {
  width: calc(100% - 9.1rem);
  padding: 2rem 3rem;
}
.p-step__Right-Box-Dt {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.p-step__Right-Box-Dd {
  font-size: 1.4rem;
  line-height: 2.6rem;
}

@media screen and (max-width: 767px) {
  .p-step {
    padding: 12rem 0 0;
  }
  .p-step:after {
    display: none;
  }
  .p-step__Inner {
    display: block;
  }
  .p-step__Left {
    width: 100%;
  }
  .p-step__Ttl span {
    font-size: 1.8rem;
  }
  .p-step__Thum {
    border-radius: 5rem;
    overflow: hidden;
  }
  .p-step__Btn {
    height: 10rem;
    width: 80%;
    border-radius: 5rem;
    margin: 5rem auto 0;
  }
  .p-step__Btn.pc {
    display: none !important;
  }
  .p-step__Btn.sp {
    display: flex !important;
  }
  .p-step__Right {
    width: 100%;
    margin-top: 5rem;
  }
  .p-step__Right-Box-Dt {
    font-size: 3.2rem;
  }
  .p-step__Right-Box-Dd {
    font-size: 2.4rem;
    line-height: 4.2rem;
  }
}
.fixBtn {
  position: absolute;
  width: 33rem;
  top: 83rem;
  right: 4rem;
}

.p-top__Mv {
  background: url("./../img/img_top_mv.jpg");
  background-size: cover;
}
.p-top__Mv-Inner {
  height: 100.8rem;
  position: relative;
}
.p-top__Mv-Ttl {
  position: absolute;
  top: 59.5rem;
  right: 0;
  width: 39.3rem;
}
.p-top__Mv-Ttl span {
  display: block;
  font-size: 2.7rem;
  color: #EFAA50;
  font-weight: bold;
  background: #fff;
  padding: 1.8rem;
  line-height: 1;
  border-radius: 1rem;
}
.p-top__Mv-Icon {
  position: absolute;
}
.p-top__Mv-Icon.-icon01 {
  width: 10.8rem;
  top: 46.5rem;
  right: -4rem;
}
.p-top__Mv-Icon.-icon02 {
  width: 9.65rem;
  top: 72.7rem;
  right: -11rem;
}
.p-top__Mv-Icon.-icon03 {
  width: 6.35rem;
  top: 85.7rem;
  left: 0rem;
}
.p-top__Service {
  padding-top: 12rem;
  padding-bottom: 10rem;
  position: relative;
  overflow: hidden;
}
.p-top__Service:before {
  position: absolute;
  top: 15.2rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 153.2rem;
  height: 79.6rem;
  background: url("./../img/bg_top_service.png");
  background-size: cover;
}
.p-top__Service-Inner {
  position: relative;
}
.p-top__Service-Ttl {
  font-size: 2.8rem;
  line-height: 5.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 4rem;
}
.p-top__Service-Txt {
  font-size: 1.4rem;
  line-height: 3.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 9rem;
}
.p-top .p-contact {
  margin-top: -15.5rem;
}

@media screen and (max-width: 767px) {
  .fixBtn {
    display: none;
  }
  .p-top__Mv-Inner {
    height: 80rem;
  }
  .p-top__Mv-Ttl {
    width: 70%;
    top: 44.5rem;
  }
  .p-top__Mv-Ttl span {
    font-size: 3.2rem;
  }
  .p-top__Mv-Icon {
    position: absolute;
  }
  .p-top__Mv-Icon.-icon01 {
    display: none;
  }
  .p-top__Mv-Icon.-icon02 {
    right: 0;
  }
  .p-top__Mv-Icon.-icon03 {
    top: 63.7rem;
  }
  .p-top__Service-Ttl {
    font-size: 3.8rem;
  }
  .p-top__Service-Txt {
    font-size: 2.4rem;
    line-height: 4.2rem;
  }
  .p-top .p-contact {
    margin-top: -15.5rem;
  }
}
.p-privacy__Policy {
  margin: 6.6666666667vw;
  line-height: 1.8;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-privacy__Policy {
    margin: 2.6666666667vw 2.6666666667vw 10.6666666667vw;
  }
}
.p-privacy__Policy_ttl01 {
  font-size: 2.4vw;
  font-weight: bold;
  color: #000;
  margin-bottom: 1.3333333333vw;
  margin-top: 3.3333333333vw;
}
@media screen and (max-width: 767px) {
  .p-privacy__Policy_ttl01 {
    font-size: 6.1333333333vw;
  }
}
.p-privacy__Policy_ttl02 {
  font-size: 1.6vw;
  font-weight: bold;
  color: #000;
  margin-bottom: 1.3333333333vw;
  margin-top: 3.3333333333vw;
}
@media screen and (max-width: 767px) {
  .p-privacy__Policy_ttl02 {
    font-size: 4.5333333333vw;
  }
}
.p-privacy__Policy ol,
.p-privacy__Policy ul {
  padding-left: 1.3333333333vw;
  margin-bottom: 1.3333333333vw;
}
@media screen and (max-width: 767px) {
  .p-privacy__Policy ol,
  .p-privacy__Policy ul {
    padding-left: 4.6666666667vw;
  }
}
.p-privacy__Policy ol li {
  list-style: decimal !important;
  font-size: 1.0666666667vw;
}
@media screen and (max-width: 767px) {
  .p-privacy__Policy ol li {
    font-size: 3.4666666667vw;
  }
}
.p-privacy__Policy ul li {
  list-style: disc !important;
  font-size: 1.0666666667vw;
}
@media screen and (max-width: 767px) {
  .p-privacy__Policy ul li {
    font-size: 3.4666666667vw;
  }
}
.p-privacy__Policy p {
  font-size: 1.0666666667vw;
  margin-bottom: 1.3333333333vw;
}
@media screen and (max-width: 767px) {
  .p-privacy__Policy p {
    font-size: 3.4666666667vw;
  }
}

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

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