@charset "UTF-8";
/* Vendors - include bootrap
========================================================================== */
/* Helpers - helpers Variable file along with starting point Mixins and Placeholders.
========================================================================== */
/*
 * Variables
 */
/*
 * Function
 */
/*
* mixins
*/
/*
 * Placeholders
 */
/* Base - reset and typography.
========================================================================== */
/*
 * reset
 */
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;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

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

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

button {
  background-color: transparent;
  outline: none;
  border: 0;
  cursor: pointer;
}

/*
 * Typography
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  color: #404460;
  line-height: 1.4;
}

h1 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #000000;
}

h2 {
  font-size: 3.2rem;
  line-height: 1.25;
}

h3 {
  font-size: 2rem;
}

.block-margins {
  margin: 1em 0;
}

.unordered-list {
  list-style-type: disc;
}

.ordered-list {
  list-style: decimal;
}

/* Components - Re-usable site elements.
========================================================================== */
a {
  color: #000000;
  text-decoration: none;
}
a:visited {
  color: #000000;
  text-decoration: none;
}
a:hover,
a:visited:hover {
  color: #b43535;
  text-decoration: none;
}
a:focus {
  outline: none;
  text-decoration: none;
}

.italic {
  font-style: italic;
}

.bold {
  font-weight: 700;
}

.more {
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}

/* Layout - Structure and layout files.
========================================================================== */
/* -------------------->>> COMMON <<<-------------------- */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  font-size: 1.6rem;
  line-height: 1.5;
  overflow-x: hidden;
  font-weight: 400;
  letter-spacing: 0;
  width: 100%;
}
body.is_active {
  height: 100vh;
  overflow: hidden;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
body.is_active::after {
  content: "";
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.33);
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 99;
}

hr {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  border-color: #dbdbdb -moz-use-text-color -moz-use-text-color;
  -o-border-image: none;
  border-image: none;
  border-style: solid none none;
  border-width: 1px 0 0 0;
  margin: 0;
}

.container {
  width: 100%;
  max-width: 103rem;
  padding: 0 1.5rem;
  margin: 0 auto;
}

p {
  margin-bottom: 1.5rem;
}

input:focus {
  outline: none;
}

a > img {
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}
a > img:hover {
  opacity: 0.7;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

.thumb-box a {
  display: block;
}

.thumb-box img {
  width: 100%;
  height: auto;
}

.img-cover figure {
  display: block;
  width: 100%;
  height: 100%;
}

.img-cover img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.thumb-over figure {
  display: block;
  position: relative;
  overflow: hidden;
}
.thumb-over figure::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.thumb-over figure img {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.thumb-over:hover figure::before {
  background: rgba(0, 0, 0, 0.5);
}

.thumb-over:hover figure img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.scrollTop {
  position: fixed;
  bottom: -50px;
  right: 4rem;
  z-index: 10;
  height: 200px;
  text-align: center;
  -webkit-transition: bottom 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: bottom 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  z-index: 999;
  width: 6rem;
}
.scrollTop__main {
  cursor: pointer;
}
.scrollTop__main:hover {
  opacity: 0.7;
}
.scrollTop__main img {
  width: 7.6rem;
}
.scrollTop.active {
  bottom: 0;
  opacity: 1;
}

.w-100 {
  width: 100% !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.d-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.justify-content-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.justify-content-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justify-content-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.align-items-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.align-items-start {
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
}

.align-items-end {
  -webkit-box-align: end;
  -webkit-align-items: end;
  -ms-flex-align: end;
  align-items: end;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.header {
  border-top: 5px solid #404460;
  background: #fff;
  padding: 2rem 0;
  width: 100%;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
}
.header__main .logo {
  font-size: 2.3rem;
  font-weight: 700;
  color: #32354b;
  line-height: 1;
}
.header__main--info .tel {
  width: 23.3rem;
  margin-right: 1.1rem;
}
.header__main--info .line {
  width: 17.9rem;
}

@media (max-width: 991px) {
  .header {
    padding: 1.2rem 0;
  }
  .header__main--info .tel {
    width: 9.6rem;
    margin-right: 0.6rem;
  }
  .header__main--info .line {
    width: 9.6rem;
  }
}

.banner {
  margin-top: 8.5rem;
  background-image: url("../images/banner-bg.webp");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-boot {
  background: #404460;
  padding-bottom: 1.5rem;
}
.banner-boot .container {
  max-width: 84.4rem;
}
.banner-boot__main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 7.1rem;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.head-box {
  margin-bottom: 3.5rem;
  text-align: center;
  position: relative;
  z-index: 9;
  padding-top: 4.5rem;
}
.head-box span {
  font-size: 7.2rem;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
  color: #ffffff;
  opacity: 0.09;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.head-box h2 {
  margin-bottom: 0.5rem;
  color: #fff;
}
.head-box p {
  margin-bottom: 0;
}
.head-box p img {
  width: 100%;
  max-width: 28.4rem;
}

.head-box-des span {
  color: #404460;
}

.head-box-des h2 {
  margin-bottom: 2.5rem;
  color: #404460;
}

.response-box {
  padding: 2.6rem 0;
}
.response-box__main .d-flex {
  margin: 0 -0.8rem;
}
.response-box__main .items {
  width: 25%;
  padding: 0 0.8rem;
}
.response-box__main .items main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  min-height: 8.8rem;
  background-image: url("../images/bg-1.webp");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0.5rem 2rem;
}
.response-box__main .items main .icon {
  margin-right: 1.5rem;
}
.response-box__main .items main .txt-box h4 {
  font-size: 1.6rem;
  line-height: 1;
}
.response-box__main .items main .txt-box h3 {
  font-size: 2.6rem;
}

.contact-box {
  padding: 4rem 0;
  background: #404460;
}
.contact-box .head {
  text-align: center;
  margin-bottom: 3.4rem;
}
.contact-box .head h2 {
  display: inline-block;
  border: 1px solid #ffffff;
  line-height: 6rem;
  border-radius: 41px;
  width: 100%;
  max-width: 47.5rem;
  text-align: center;
  font-size: 1.9rem;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
}
.contact-box .head h2::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 1.5rem solid transparent;
  border-right: 1.5rem solid transparent;
  border-top: 1.5rem solid #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
  -ms-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
}
.contact-box .head h2::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 1.4rem solid transparent;
  border-right: 1.4rem solid transparent;
  border-top: 1.4rem solid #404460;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 90%);
  -ms-transform: translate(-50%, 90%);
  transform: translate(-50%, 90%);
  z-index: 9;
}
.contact-box__main {
  padding-left: 3.7rem;
  padding-right: 3rem;
}
.contact-box__main .text-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: calc(100% - 43rem);
  padding-right: 2.5rem;
  background-image: url("../images/contact-bg.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 38.2rem auto;
  text-align: center;
}
.contact-box__main .text-box h3 {
  font-size: 3.4rem;
  line-height: 1.38235294;
  color: #fff;
}
.contact-box__main .text-box h3 span {
  color: #ffff00;
}
.contact-box__main .more-box {
  width: 43rem;
}
.contact-box__main .more-box h3 {
  text-align: center;
  margin-bottom: 1rem;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}
.contact-box__main .more-box h3 span {
  display: inline-block;
  position: relative;
  padding: 0 2.5rem;
}
.contact-box__main .more-box h3 span::before {
  content: "";
  display: block;
  width: 1px;
  height: 3rem;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) rotate(-30deg);
  -ms-transform: translateY(-50%) rotate(-30deg);
  transform: translateY(-50%) rotate(-30deg);
}
.contact-box__main .more-box h3 span::after {
  content: "";
  display: block;
  width: 1px;
  height: 3rem;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(30deg);
  -ms-transform: translateY(-50%) rotate(30deg);
  transform: translateY(-50%) rotate(30deg);
}
.contact-box__main .more-box .btn {
  margin-bottom: 1.2rem;
}
.contact-box__main .more-box .btn:last-child {
  margin-bottom: 0;
}

.which-box {
  padding: 3.5rem 0 4.5rem;
}
.which-box .container {
  max-width: 81.7rem;
}
.which-box .head {
  margin-bottom: 1.7rem;
}
.which-box .head h2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2.9rem;
}
.which-box .head h2 img {
  width: 3.6rem;
}
.which-box__main .d-flex {
  margin: 0 -1rem;
}
.which-box__main .items {
  width: 50%;
  padding: 0 1rem;
}

.merit-box {
  padding: 4rem 0 8rem;
  background: #404460;
  position: relative;
}
.merit-box::after {
  content: "";
  display: block;
  width: 23.5rem;
  height: 4.4rem;
  background-image: url("../images/arow.webp");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}
.merit-box__main {
  margin-bottom: 3.5rem;
}
.merit-box__main .d-flex {
  margin: 0 -1rem;
}
.merit-box__main .items {
  width: calc(100% / 3);
  padding: 0 1rem;
}
.merit-box__main .items main {
  padding-top: 1.1rem;
  padding-bottom: 1.3rem;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg-2.webp");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.merit-box__main .items main .icon {
  width: 8.7rem;
  text-align: center;
}
.merit-box__main .items main .txt-box {
  width: calc(100% - 8.7rem);
}
.merit-box__main .items main .txt-box h3 {
  font-size: 1.9rem;
  margin-bottom: 0.8rem;
  line-height: 1.26315789;
}
.merit-box__main .items main .txt-box p {
  font-size: 1.4rem;
  margin-bottom: 0;
}
.merit-box__other h3 {
  text-align: center;
  color: #fff;
  margin-bottom: 2.5rem;
  font-size: 2.4rem;
}
.merit-box__other .d-flex {
  margin: 0 -1.1rem;
}
.merit-box__other .items {
  width: calc(100% / 6);
  padding: 0 1.1rem;
}

.risk-box {
  padding: 6rem 0 4rem;
}
.risk-box .container {
  max-width: 81.7rem;
}
.risk-box .head {
  text-align: center;
  position: relative;
  margin-bottom: 7rem;
}
.risk-box .head h2 {
  display: inline-block;
  padding: 0 1rem 1rem;
  position: relative;
}
.risk-box .head h2::after {
  content: "";
  display: block;
  width: 22.5rem;
  height: 1px;
  background: #404460;
  position: absolute;
  right: 0;
  bottom: 0;
}
.risk-box__main .d-flex {
  margin: 0 -0.9rem;
}
.risk-box__main .items {
  width: 50%;
  padding: 0 0.9rem;
}
.risk-box__main .items main {
  display: block;
  width: 100%;
  height: 100%;
  border: 4px solid #404460;
  position: relative;
  padding: 5rem 2.5rem 3rem;
}
.risk-box__main .items .labels {
  width: 100%;
  max-width: 23.2rem;
  height: 5.2rem;
  background: #404460;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-left: 0.5rem;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.risk-box__main .items .labels img {
  margin-right: 1rem;
}
.risk-box__main .items .labels h3 {
  font-size: 2.4rem;
  color: #fff;
  line-height: 5.2rem;
}
.risk-box__main .items ul li {
  padding: 1rem 0 1rem 3.2rem;
  font-size: 1.8rem;
  font-weight: 700;
  border-bottom: 1px dashed #404460;
  position: relative;
  line-height: 1.2;
}
.risk-box__main .items ul li::after {
  content: "";
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  background-image: url("../images/icon-check.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 1rem;
  left: 0;
}
.risk-box__main .items ul li span {
  color: #c14f61;
}

.service-box {
  padding: 5rem 0;
  background: #f5f5f5;
}
.service-box .container {
  max-width: 82rem;
}
.service-box__main .d-flex {
  margin: 0 -1.1rem;
}
.service-box__main .items {
  width:80%;
  padding: 0 1.1rem;
  margin-bottom: 2.5rem;
  margin: 0 auto;
}
.service-box__main .items h3 {
  line-height: 1;
}
.service-box__main .items ul {
  padding: 1.2rem 0.8rem 0.3rem;
  border-left: 3px solid #404460;
  border-right: 3px solid #404460;
  border-bottom: 3px solid #404460;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.service-box__main .items ul li {
  margin-bottom: 0.9rem;
  padding: 0 0.6rem;
  width: 50%;
}
.service-box__main .items ul li span {
  display: block;
  background: #c14f61;
  border-radius: 5px;
  line-height: 4.5rem;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.service-box__negative {
  margin-top: 3rem;
}
.service-box__negative .text-box {
  width: calc(100% - 38.4rem);
  padding-right: 2rem;
}
.service-box__negative .text-box h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}
.service-box__negative .text-box h3 span {
  font-size: 3.2rem;
  color: #b43535;
}
.service-box__negative .text-box p {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.service-box__negative .text-box p span {
  color: #a81d1d;
  font-weight: 700;
}
.service-box__negative .thumb-box {
  width: 38.4rem;
}

.why-box {
  padding: 6rem 0 5rem;
}
.why-box .container {
  max-width: 83.8rem;
}
.why-box .head {
  background: #404460;
  padding: 1.5rem;
  text-align: center;
  position: relative;
}
.why-box .head::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 1.5rem solid transparent;
  border-right: 1.5rem solid transparent;
  border-top: 2.7rem solid #404460;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 90%);
  -ms-transform: translate(-50%, 90%);
  transform: translate(-50%, 90%);
}
.why-box .head h2 {
  display: inline-block;
}
.why-box .head h2 img {
  width: 100%;
  max-width: 40.5rem;
}
.why-box__main {
  background: #f5f5f5;
  padding: 5rem 4.5rem 0.5rem;
}
.why-box__main .d-flex {
  margin: 0 -1rem;
}
.why-box__main .items {
  width: 25%;
  padding: 0 1rem;
  margin-bottom: 4.5rem;
}
.why-box__main .items .thumb-box {
  margin-bottom: 1rem;
}
.why-box__main .items p {
  margin-bottom: 0;
  font-size: 1.4rem;
}

.price-box {
  background: #f5f5f5;
  padding: 6rem 0;
}
.price-box .container {
  max-width: 89.4rem;
}
.price-box .head-box p {
  font-size: 1.4rem;
}
.price-box__main .items {
  background: #fff;
  margin-bottom: 2rem;
}
.price-box__main .items .labels {
  width: 44.4444444444%;
  background: #404460;
  padding: 2rem 2.2rem;
}
.price-box__main .items .labels h3 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.70833333;
}
.price-box__main .items .labels p {
  margin-bottom: 0;
  color: #fff;
  font-size: 1.2rem;
}
.price-box__main .items .info {
  width: 55.5555555556%;
  padding: 2rem 2.5rem;
}
.price-box__main .items .info .lb {
  margin-bottom: 1rem;
}
.price-box__main .items .info .lb span {
  display: inline-block;
  line-height: 2.5rem;
  background: #ff9300;
  border-radius: 15px;
  padding: 0 1.5rem;
  font-size: 1.5rem;
  color: #fff;
}
.price-box__main .items .info .price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.price-box__main .items .info .price span {
  font-size: 5rem;
  line-height: 1;
  color: #b43535;
  font-weight: 700;
}
.price-box__main .items .info .price b {
  font-size: 700;
  font-size: 1rem;
  line-height: 1.4;
}
.price-box__main .items .info .price b spam {
  font-size: 2.1rem;
  margin-top: -0.5rem;
  display: inline-block;
}
.price-box__main .items .info .price p {
  margin-bottom: 0;
  padding-left: 1rem;
  font-size: 1.4rem;
  line-height: 1.4;
}
.price-box__main .items .info h3 {
  margin-top: 1rem;
  font-size: 1.4rem;
  color: #ff9300;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 0.5rem;
}
.price-box__main .items .info p {
  margin-bottom: 2rem;
  font-size: 1.4rem;
}
.price-box__main .items .info p:last-child {
  margin-bottom: 0;
}
.price-box__main .items .info hr {
  border-color: #dbdbdb;
  margin-bottom: 1.5rem;
}
.price-box__main .items:nth-child(5) .labels,
.price-box__main .items:nth-child(6) .labels,
.price-box__main .items:nth-child(7) .labels,
.price-box__main .items:nth-child(8) .labels,
.price-box__main .items:nth-child(9) .labels,
.price-box__main .items:nth-child(10) .labels {
  background: #3a448d;
}
.price-box__des p {
  margin-bottom: 0;
  font-size: 1.4rem;
  position: relative;
  padding-left: 2rem;
}
.price-box__des p::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.flow-box {
  padding: 5rem 0;
}
.flow-box__main {
  overflow: hidden;
}
.flow-box__main .d-flex {
  margin: 0 -1.7rem;
}
.flow-box__main .items {
  width: calc(100% / 3);
  padding: 0 1.7rem;
}
.flow-box__main .items main {
  background: #f8f9ff;
  display: block;
  width: 100%;
  height: 100%;
}
.flow-box__main .items .text-box {
  padding: 1.5rem 1.5rem 2.5rem;
}
.flow-box__main .items .text-box h3 {
  margin-bottom: 0.5rem;
}
.flow-box__main .items .text-box p {
  font-size: 1.4rem;
  margin-bottom: 0;
}

.faq-box {
  padding: 5rem 0;
  background: #404460;
}
.faq-box .container {
  max-width: 78rem;
}
.faq-box__main .items {
  margin-bottom: 1.5rem;
  background: #fff;
  -webkit-box-shadow: 0px 0px 6px #00000012;
  box-shadow: 0px 0px 6px #00000012;
  padding: 1.4rem 0 2.5rem;
}
.faq-box__main .items h3 {
  background: #5a5e7c;
  padding: 2.2rem 5rem;
  font-size: 1.8rem;
  color: #fff;
  -webkit-transform: translateX(-1rem);
  -ms-transform: translateX(-1rem);
  transform: translateX(-1rem);
  margin-bottom: 1rem;
  position: relative;
}
.faq-box__main .items h3::after {
  content: "";
  display: block;
  width: 3.4rem;
  height: 3.4rem;
  background-image: url("../images/icon-q.webp");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.faq-box__main .items p {
  margin-bottom: 0;
  padding: 0 1.5rem;
  font-size: 1.4rem;
}

.lawyer-box {
  padding: 4rem 0 5rem;
}
.lawyer-box .container {
  max-width: 71.8rem;
}
.lawyer-box .head-box {
  margin-bottom: 7rem;
}
.lawyer-box__main .thumb-box {
  width: 26.8rem;
}
.lawyer-box__main .text-box {
  width: calc(100% - 26.8rem);
  padding-left: 3.5rem;
}
.lawyer-box__main .text-box .items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2rem;
}
.lawyer-box__main .text-box .items .labels {
  width: 11.6rem;
  border-bottom: 3px solid #32354b;
  font-size: 1.6rem;
  font-weight: 700;
  color: #32354b;
  padding-bottom: 0.5rem;
}
.lawyer-box__main .text-box .items .info {
  width: calc(100% - 11.6rem);
  border-bottom: 3px solid #dcdff0;
  font-size: 1.6rem;
  color: #32354b;
  padding-bottom: 0.5rem;
}
.lawyer-box__main .text-box .items .info p:last-child {
  margin-bottom: 0;
}

/* self */
.responseself-box {
  padding: 2.5rem 0;
}
.responseself-box__main .d-flex {
  margin: 0 -0.8rem;
}
.responseself-box__main .items {
  width: 50%;
  padding: 0 0.8rem;
}
.responseself-box__main .items main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  background-image: url("../images/bg-3.webp");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  min-height: 7.6rem;
}
.responseself-box__main .items main h3 {
  font-size: 2.5rem;
  color: #fff;
}
.responseself-box__main .items:nth-child(1) main h3,
.responseself-box__main .items:nth-child(2) main h3 {
  font-size: 3.4rem;
}
.responseself-box__main p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-weight: 700;
  color: #404460;
  font-family: "Noto Serif JP", serif;
}

.leaving-box {
  background: #404460;
  padding: 5rem 0 7rem;
  position: relative;
}
.leaving-box::after {
  content: "";
  display: block;
  width: 23.5rem;
  height: 4.4rem;
  background-image: url("../images/arow.webp");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}
.leaving-box .head-box p img {
  max-width: 38.1rem;
}
.leaving-box__main .items {
  margin-bottom: 2rem;
  background-image: url("../images/bg-4.webp");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 2.5rem;
  min-height: 11.3rem;
}
.leaving-box__main .items .thumb-box {
  width: 33.9rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 3rem;
}
.leaving-box__main .items .thumb-box img {
  margin-right: 1.5rem;
  width: 4.8rem;
}
.leaving-box__main .items .text-box {
  width: calc(100% - 33.9rem);
}
.leaving-box__main .items .text-box p {
  margin-bottom: 0;
  font-size: 1.4rem;
}
.leaving-box__main .items:last-child {
  margin-bottom: 0;
}
.leaving-box__main .items:nth-child(2) .thumb-box img {
  width: 3.6rem;
}
.leaving-box__main .items:nth-child(3) .thumb-box img {
  width: 3.8rem;
}
.leaving-box__main .items:nth-child(4) .thumb-box img {
  width: 4.4rem;
}

.early-box {
  padding: 6rem 0 5rem;
}
.early-box .container {
  max-width: 82rem;
}
.early-box .head {
  text-align: center;
  margin-bottom: 2.7rem;
}
.early-box .head .labels {
  margin-bottom: 0.8rem;
}
.early-box .head .labels span {
  display: inline-block;
  position: relative;
  padding: 0 2.5rem;
  font-size: 1.8rem;
}
.early-box .head .labels span::before {
  content: "";
  display: block;
  width: 1px;
  height: 3rem;
  background: #404460;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) rotate(-30deg);
  -ms-transform: translateY(-50%) rotate(-30deg);
  transform: translateY(-50%) rotate(-30deg);
}
.early-box .head .labels span::after {
  content: "";
  display: block;
  width: 1px;
  height: 3rem;
  background: #404460;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(30deg);
  -ms-transform: translateY(-50%) rotate(30deg);
  transform: translateY(-50%) rotate(30deg);
}
.early-box__main .d-flex {
  margin: 0 -1.1rem;
}
.early-box__main .items {
  width: 25%;
  padding: 0 1.1rem;
}
.early-box__main .items .thumb-box {
  margin-bottom: 2rem;
}
.early-box__main .items p {
  margin-bottom: 0;
}

.service-box .container-fluid {
  width: 100%;
  max-width: 98.1rem;
  padding: 0 1.5rem;
  margin: 0 auto;
}

.service-box__self h3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem 0;
  background: #404460;
  color: #fff;
}
.service-box__self h3 img {
  width: 2.5rem;
  margin-right: 0.7rem;
}

.service-box__self .main-box {
  background: #fff;
  border-left: 3px solid #404460;
  border-right: 3px solid #404460;
  border-bottom: 3px solid #404460;
  padding: 2.5rem 2rem;
}

.service-box__self .d-flex {
  margin: 0 -0.8rem;
  justify-content: center;
}

.service-box__self .items {
  width: 40%;
  padding: 0 0.8rem;
  text-align: center;
}
.service-box__self .items main {
  display: block;
  width: 100%;
  height: 100%;
  background: #c14f61;
  border-radius: 5px;
  padding: 1rem 1rem 1.5rem;
}
.service-box__self .items .thumb-box {
  margin-bottom: 1.1rem;
}
.service-box__self .items p {
  font-size: 1.9rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0;
}

.case-box {
  padding: 3.5rem 0;
}
.case-box .container {
  max-width: 76.5rem;
}
.case-box .head {
  padding: 2.2rem 0;
  background: #404460;
  text-align: center;
  position: relative;
}
.case-box .head::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 1.5rem solid transparent;
  border-right: 1.5rem solid transparent;
  border-top: 2.7rem solid #404460;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 90%);
  -ms-transform: translate(-50%, 90%);
  transform: translate(-50%, 90%);
}
.case-box .head h2 {
  font-size: 1.8rem;
  color: #fff;
  line-height: 1.5;
}
.case-box__main {
  padding: 3.5rem 4.2rem;
  background: #f5f5f5;
}
.case-box__main .items {
  padding: 2.5rem 0;
  border-bottom: 1px solid #c1c1c1;
}
.case-box__main .items .labels {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1.4rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #bc1b1b;
}
.case-box__main .items .labels span {
  background: #404460;
  border-radius: 14px;
  line-height: 2.7rem;
  padding: 0 1.2rem;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 700;
  margin-right: 1rem;
}
.case-box__main .items p {
  font-size: 1.4rem;
  margin-bottom: 0;
}
.case-box__main h3 {
  padding-top: 3rem;
  text-align: center;
  font-size: 2.3rem;
  line-height: 1.5;
}
.case-box__main h3 span {
  color: #bc1b1b;
}
.case-box__main h3 b {
  background: #ffff00;
}

.footer {
  text-align: center;
  padding: 1.5rem 0;
}
.footer p {
  margin-bottom: 3rem;
  font-size: 1.4rem;
}
.footer p:last-child {
  margin-bottom: 0;
}

/* layout - Responsive .
========================================================================== */
.sp {
  display: none;
}

@media screen and (max-width: 1200px) and (min-width: 992px) {
  html {
    font-size: 8px;
  }
}

@media screen and (max-width: 1050px) and (min-width: 992px) {
  html {
    font-size: 7px;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 2.41546vw;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  h2 {
    font-size: 3.2rem;
  }
  .container {
    padding: 0 1.5rem;
  }
  .banner {
    margin-top: 6.9rem;
    background: none;
  }
  .banner .container {
    padding: 0;
  }
  .banner__main img {
    width: 100%;
  }
  .response-box {
    padding: 1.2rem 0;
  }
  .response-box__main .d-flex {
    margin: 0 -0.4rem;
  }
  .response-box__main .items {
    padding: 0 0.4rem;
  }
  .response-box__main .items main {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 9rem;
    padding: 0.5rem 0;
    text-align: center;
  }
  .response-box__main .items main .icon {
    margin-right: 0;
    width: 100%;
    min-height: 3.2rem;
    margin-bottom: 0.5rem;
  }
  .response-box__main .items main .icon img {
    width: 3.2rem;
  }
  .response-box__main .items main .txt-box {
    width: 100%;
  }
  .response-box__main .items main .txt-box h4 {
    font-size: 1rem;
  }
  .response-box__main .items main .txt-box h3 {
    font-size: 1.6rem;
  }
  .response-box__main .items:nth-child(2) main .icon img {
    width: 4.2rem;
  }
  .response-box__main .items:nth-child(3) main .icon img {
    width: 2.4rem;
  }
  .response-box__main .items:nth-child(4) main .icon img {
    width: 2.4rem;
  }
  .contact-box {
    padding: 3rem 0 4rem;
  }
  .contact-box .head {
    margin-bottom: 1.5rem;
  }
  .contact-box .head h2 {
    line-height: 2.2rem;
    border-radius: 34px;
    max-width: 100%;
    font-size: 1.6rem;
    padding: 1rem 0;
  }
  .contact-box__main {
    padding-top: 1rem;
    padding-left: 0;
    padding-right: 0;
    background-image: url("../images/contact-bg.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% auto;
  }
  .contact-box__main .text-box {
    width: 100%;
    padding-right: 0;
    background: none;
    margin-bottom: 2.2rem;
  }
  .contact-box__main .text-box h3 {
    font-size: 2.6rem;
  }
  .contact-box__main .more-box {
    width: 100%;
  }
  .contact-box__main .more-box h3 {
    font-size: 1.8rem;
  }
  .contact-box__main .more-box .btn {
    margin-bottom: 1rem;
  }
  .which-box {
    padding: 4rem 0;
  }
  .which-box__main .d-flex {
    margin: 0;
  }
  .which-box__main .items {
    width: 100%;
    padding: 0;
    margin-bottom: 1.5rem;
  }
  .which-box__main .items img {
    width: 100%;
  }
  .which-box__main .items:last-child {
    margin-bottom: 0;
  }
  .merit-box {
    padding: 4rem 0 5rem;
  }
  .merit-box__main {
    margin-bottom: 1.5rem;
  }
  .merit-box__main .d-flex {
    margin: 0;
  }
  .merit-box__main .items {
    width: 100%;
    padding: 0;
    margin-bottom: 1.2rem;
  }
  .merit-box__main .items:last-child {
    margin-bottom: 0;
  }
  .merit-box__main .items main .icon {
    width: 9.2rem;
  }
  .merit-box__main .items main .icon img {
    width: 5.4rem;
  }
  .merit-box__main .items main .txt-box {
    width: calc(100% - 9.2rem);
  }
  .merit-box__main .items main .txt-box h3 {
    font-size: 2rem;
  }
  .merit-box__main .items:nth-child(2) main .icon img {
    width: 5rem;
  }
  .merit-box__main .items:nth-child(3) main .icon img {
    width: 5.2rem;
  }
  .merit-box__other h3 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
  }
  .merit-box__other .d-flex {
    margin: 0 -0.8rem;
  }
  .merit-box__other .items {
    width: calc(100% / 3);
    padding: 0 0.8rem;
    margin-bottom: 1.8rem;
  }
  .risk-box .head h2 {
    padding: 0 0 1rem;
  }
  .risk-box__main .d-flex {
    margin: 0 -0.9rem;
  }
  .risk-box__main .items {
    width: 100%;
    padding: 0;
    margin-bottom: 5rem;
  }
  .risk-box__main .items:last-child {
    margin-bottom: 0;
  }
  .risk-box__main .items main {
    padding: 6rem 2.5rem 3rem;
  }
  .risk-box__main .items .labels {
    height: 5.2rem;
  }
  .risk-box__main .items .labels img {
    margin-right: 1rem;
    width: 4.5rem;
  }
  .risk-box__main .items:last-child {
    margin-bottom: 0;
  }
  .risk-box__main .items:last-child .labels img {
    width: 3.4rem;
  }
  .service-box__main .d-flex {
    margin: 0 -1.1rem;
  }
  .service-box__main .items {
    width: 100%;
    padding: 0;
    margin-bottom: 1.5rem;
  }
  .service-box__main .items h3 {
    line-height: 1;
  }
  .service-box__main .items ul {
    padding: 1.2rem 0.7rem 0.3rem;
  }
  .service-box__negative .text-box {
    width: 100%;
    padding-right: 0;
  }
  .service-box__negative .thumb-box {
    margin-bottom: 1.5rem;
  }
  .why-box {
    padding: 2.5rem 0;
  }
  .why-box .head h2 img {
    max-width: 27rem;
  }
  .why-box__main {
    padding: 3.5rem 1.5rem 0.5rem;
  }
  .why-box__main .d-flex {
    margin: 0 -1rem;
  }
  .why-box__main .items {
    width: 50%;
    padding: 0 1rem;
    margin-bottom: 1.5rem;
  }
  .price-box {
    padding: 4rem 0;
  }
  .price-box .head-box p {
    text-align: left;
  }
  .price-box__main .items {
    margin-bottom: 1.2rem;
  }
  .price-box__main .items .labels {
    width: 100%;
    padding: 2rem;
  }
  .price-box__main .items .info {
    width: 100%;
    padding: 2rem;
  }
  .price-box__main .items .info .lb {
    text-align: center;
  }
  .price-box__main .items .info .price {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .price-box__main .items .info .price p {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
  }
  .flow-box {
    padding: 4rem 0;
  }
  .flow-box__main .d-flex {
    margin: 0;
  }
  .flow-box__main .items {
    width: 100%;
    padding: 0;
    margin-bottom: 1.2rem;
  }
  .flow-box__main .items:last-child {
    margin-bottom: 0;
  }
  .flow-box__main .items main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flow-box__main .items .thumb-box {
    width: 10.6rem;
  }
  .flow-box__main .items .text-box {
    width: calc(100% - 10.6rem);
    padding: 1.5rem 1.2rem 0;
  }
  .flow-box__main .items .text-box p {
    font-size: 1.4rem;
  }
  .faq-box {
    padding: 4rem 0;
  }
  .faq-box .head-box {
    margin-bottom: 4rem;
  }
  .faq-box__main .items {
    margin-bottom: 2rem;
  }
  .faq-box__main .items h3 {
    padding: 2rem 1.2rem 2rem 6rem;
  }
  .lawyer-box {
    padding: 4rem 0;
  }
  .lawyer-box .head-box {
    margin-bottom: 4rem;
  }
  .lawyer-box__main .thumb-box {
    width: 100%;
    text-align: center;
  }
  .lawyer-box__main .thumb-box img {
    width: 26.8rem;
  }
  .lawyer-box__main .text-box {
    width: 100%;
    padding-left: 0;
    padding-top: 3rem;
  }
  /* self */
  .responseself-box {
    padding: 1.5rem 0;
  }
  .responseself-box__main .d-flex {
    margin: 0 -0.3rem;
  }
  .responseself-box__main .items {
    padding: 0 0.3rem;
  }
  .responseself-box__main .items main {
    min-height: 4.8rem;
  }
  .responseself-box__main .items main h3 {
    font-size: 1.6rem;
    color: #fff;
  }
  .responseself-box__main .items:nth-child(1) main h3,
  .responseself-box__main .items:nth-child(2) main h3 {
    font-size: 2.2rem;
  }
  .leaving-box {
    padding: 4rem 0;
  }
  .leaving-box__main .items {
    padding: 3rem 2.5rem;
    min-height: auto;
    background-image: url("../images/bg-4-sp.webp");
  }
  .leaving-box__main .items .thumb-box {
    width: 100%;
    padding-right: 0;
    margin-bottom: 1.5rem;
  }
  .leaving-box__main .items .text-box {
    width: 100%;
  }
  .early-box__main .items {
    width: 50%;
    margin-bottom: 2.5rem;
  }
  .service-box__self .main-box {
    padding: 1.5rem;
  }
  .service-box__self .items {
    width: 50%;
    margin-bottom: 1.2rem;
  }
  .case-box__main {
    padding: 3rem 1.5rem;
  }
  .case-box__main .items {
    padding: 2.5rem 0;
    border-bottom: 1px solid #c1c1c1;
  }
}

/* ipad Portrait */
/* ipad Landscape */
