@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: "ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "メイリオ",
    Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: 700;
  color: #1a1a1a;
}

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

h2 {
  font-size: 5rem;
  line-height: 1.7;
}

h3 {
  font-size: 2.4rem;
  line-height: 1.25;
}

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

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

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

/* Components - Re-usable site elements.
========================================================================== */
a {
  color: #1a1a1a;
  text-decoration: none;
}
a:visited {
  color: #1a1a1a;
  text-decoration: none;
}
a:hover,
a:visited:hover {
  color: #4d9b5e;
  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;
}

.more-btn {
  display: inline-block;
  width: 100%;
  max-width: 32.5rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 7rem;
  color: #fff !important;
  border-radius: 4.1rem;
  background: #4d9b5e;
  position: relative;
}
.more-btn::after {
  content: "＞";
  position: absolute;
  right: 2rem;
}
.more-btn:hover {
  background: #000;
}

@media (max-width: 991px) {
  .more-btn {
    max-width: 47.7rem;
    font-size: 2.6rem;
    line-height: 10.3rem;
    border-radius: 5.2rem;
  }
}

.nav-bar-menu {
  background: linear-gradient(0deg, #05582e 50%, #066133 50%);
}
.nav-bar-menu ul {
  display: flex;
}
.nav-bar-menu ul li {
  position: relative;
}
.nav-bar-menu ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24rem;
  height: 10.5rem;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  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;
}
.nav-bar-menu ul li a::after {
  content: "";
  width: 1px;
  height: 90%;
  background: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.nav-bar-menu ul li a:hover {
  background: #ff8900;
  color: #fff;
}
.nav-bar-menu ul li:last-child a::after {
  display: none;
}
.nav-bar-menu ul li .sub-menu {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  display: none;
}
.nav-bar-menu ul li .sub-menu li {
  opacity: 0;
  transform-origin: bottom;
  -webkit-animation: enter 0.2s ease forwards;
  animation: enter 0.2s ease forwards;
  background: linear-gradient(0deg, #05582e 50%, #066133 50%);
}
.nav-bar-menu ul li .sub-menu li a {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.nav-bar-menu ul li .sub-menu li a::after {
  display: none;
}
.nav-bar-menu ul li .sub-menu li:nth-child(1) {
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.nav-bar-menu ul li .sub-menu li:nth-child(2) {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.nav-bar-menu ul li .sub-menu li:nth-child(3) {
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.nav-bar-menu ul li .sub-menu li:hover {
  background: #ff8900;
}
.nav-bar-menu ul li:hover > .sub-menu {
  display: block;
}
.nav-bar-menu ul li.menu-items > a::before {
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

@-webkit-keyframes enter {
  from {
    opacity: 0;
    transform: scaleY(0.98) translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes enter {
  from {
    opacity: 0;
    transform: scaleY(0.98) translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@-webkit-keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.icon-menu {
  width: 7.3rem;
  height: 7.3rem;
  background-image: url("../images/icon-menu.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.icon-menu.is-active {
  background-image: url("../images/icon-menu-close.png");
}

.nav-bar-sp {
  height: 100vh;
  width: 80vw;
  background-color: #066133;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  box-shadow: -6px 3px 6px rgba(0, 0, 0, 0.16);
  overflow-x: hidden;
  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;
  transform: translateX(200%);
  overflow-y: scroll;
  display: none;
}
.nav-bar-sp.is_active {
  transform: translateX(0);
}
.nav-bar-sp .main-box {
  padding: 10.3rem 0 0;
  height: 100%;
  min-height: 50rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.nav-bar-sp ul li {
  border-bottom: 1px solid #fff;
  padding: 0 5.5rem;
}
.nav-bar-sp ul li a {
  display: block;
  padding: 0;
  font-size: 3rem;
  line-height: 11.3rem;
  font-weight: 300;
  color: #fff !important;
  position: relative;
}
.nav-bar-sp ul li a br {
  display: none;
}
.nav-bar-sp ul li a::after {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  position: absolute;
  right: 0;
  top: 50%;
  line-height: 1;
  transform: translateY(-50%);
  font-size: 4rem;
}
.nav-bar-sp ul li .sub::after {
  content: "\f067";
}
.nav-bar-sp ul li .sub.is-active::after {
  content: "\f068";
}
.nav-bar-sp ul li .sub-menu {
  display: none;
  margin: 0 -5.5rem;
}
.nav-bar-sp ul li .sub-menu li {
  padding: 0 5.5rem 0 9rem;
}
.nav-bar-sp .des {
  padding: 6rem;
}
.nav-bar-sp .des p {
  font-size: 3rem;
  color: #fff;
}
.nav-bar-sp .boot {
  width: 100%;
  padding: 0 5.5rem 4rem;
}
.nav-bar-sp .boot img {
  width: 35.5rem;
}

@media (max-width: 991px) {
  .nav-bar-menu {
    display: none;
  }
  .nav-bar-sp {
    display: block;
  }
}

.bx-wrapper {
  margin-bottom: 0 !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

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

html {
  font-size: 10px;
}

body {
  background: url("../images/bg.jpg") repeat 0 0;
  font-family: "ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "メイリオ",
    Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  color: #1a1a1a;
  font-size: 1.8rem;
  line-height: 1.66667;
  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::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

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

.container {
  width: 100%;
  max-width: 123rem;
  padding: 0 15px;
  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;
  transition: 0.3s;
}
.thumb-over figure img {
  transition: 0.3s;
}

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

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

.header {
  background: #fff;
}
.header .container {
  max-width: 100%;
  padding: 0;
}
.header__top {
  min-height: 3.8rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 1.5rem;
  border-bottom: 1px solid #00000029;
}
.header__top span {
  font-size: 1.2rem;
  line-height: 1.16666667;
  font-weight: 600;
}
.header__top a {
  display: block;
  width: 24rem;
  margin-left: 0.7rem;
}
.header__main {
  padding-left: 2.5rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__main .logo {
  width: 39.6rem;
  margin-right: 2rem;
}
.header__text {
  background: #471c0d;
  line-height: 5.5rem;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
}

.head-box {
  text-align: center;
  margin-bottom: 4rem;
}
.head-box p {
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  color: #000;
  font-weight: 600;
}
.head-box h2 {
  color: #066133;
  line-height: 1;
  letter-spacing: 0.5rem;
}

.ellipse {
  width: 100%;
  position: absolute;
  top: 1.5rem;
  padding: 0 2.5rem;
  left: 0;
  display: flex;
  justify-content: space-between;
}
.ellipse::after,
.ellipse::before {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  background: #e5d9d5;
  border-radius: 50%;
}
.ellipse.boot {
  top: auto;
  bottom: 1.5rem;
}

.banner .container {
  max-width: 100%;
  padding: 0;
}

.list-post {
  padding: 3.3rem 0;
  background: #fff;
}
.list-post .container {
  max-width: 100%;
  padding: 0;
}
.list-post__main .items {
  width: 25%;
  padding: 0 0.6rem;
}
.list-post__main .items .thumb-box {
  position: relative;
}
.list-post__main .items .thumb-box span {
  width: 100%;
  height: 5.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #000;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  background: rgba(71, 28, 13, 0.8);
  position: absolute;
  left: 0;
  bottom: 0;
  font-weight: 600;
}

.contact-box .head {
  background-image: url("../images/contact-bg1.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-repeat: repeat-x;
  padding: 2.3rem 0;
}
.contact-box .head img {
  width: 100%;
}

.contact-box__main {
  background-image: url("../images/contact-bg2.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.contact-box__main .main-box {
  padding-bottom: 2.2rem;
  display: flex;
  flex-wrap: wrap;
}
.contact-box__main .main-box .thumb-box {
  width: 33.75%;
  padding-left: 2rem;
  margin-top: -1.5rem;
}
.contact-box__main .main-box .text-box {
  width: 66.25%;
  padding-left: 6.5rem;
  padding-top: 4.5rem;
}
.contact-box__main .main-box .list-items {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem 2.2rem;
}
.contact-box__main .main-box .list-items .items {
  width: 50%;
  padding: 0 0.5rem;
  margin-bottom: 1rem;
}
.contact-box__main .main-box .list-items .items main {
  background: #fff;
  border-radius: 1rem;
  padding: 0.7rem 1.1rem;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  font-size: 2.4rem;
  color: #242424;
  letter-spacing: 0.168rem;
  font-weight: 600;
}
.contact-box__main .main-box .list-items .items span {
  color: #ed642f;
}
.contact-box__main .main-box .list-items .items img {
  min-width: 5.2rem;
  max-width: 5.2rem;
  margin-right: 1.5rem;
}
.contact-box__main .main-box .tel-box {
  margin-bottom: 1rem;
}
.contact-box__main .main-box .info-box {
  display: flex;
  background: #fffde2;
}
.contact-box__main .main-box .info-box p {
  margin-bottom: 0;
  font-size: 1.6rem;
  letter-spacing: 0.16rem;
  color: #242424;
  font-weight: 600;
  padding: 0 1.5rem;
  line-height: 4.4rem;
  display: inline-block;
}
.contact-box__main .main-box .info-box p:first-child {
  background: #ed642f;
  color: #fff;
}
.contact-box__main .main-box .info-box p:last-child {
  display: flex;
  align-items: center;
}
.contact-box__main .main-box .info-box p:last-child::before {
  content: "";
  width: 2.2rem;
  height: 2.2rem;
  background-image: url("../images/contact-icon-5.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-right: 0.5rem;
}

.contact-box.contact-box2 .contact-box__main {
  padding-bottom: 4rem;
}

.contact-box.contact-box2 .card-box {
  max-width: 100%;
}

.problems-box {
  overflow: hidden;
  margin-top: 4rem;
}
.problems-box .head-box-img {
  margin-bottom: 7rem;
  text-align: center;
}
.problems-box .head-box-img img {
  width: 100%;
  max-width: 108.7rem;
}
.problems-box__main {
  background-image: url("../images/bg2.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-repeat: repeat;
  padding: 7rem 5rem 5rem;
  position: relative;
}
.problems-box__main .main-box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -3.8rem;
}
.problems-box__main .main-box .items {
  width: 50%;
  padding: 0 3.8rem;
  margin-bottom: 6.5rem;
}
.problems-box__main .main-box .items .head {
  margin-bottom: 2rem;
  border-bottom: 0.5rem dashed #471c0d;
  padding-bottom: 1rem;
  min-height: 7.5rem;
  display: flex;
  align-items: center;
}
.problems-box__main .main-box .items .head::before {
  content: "";
  width: 3.8rem;
  min-width: 3.8rem;
  height: 3.3rem;
  background-image: url("../images/check.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-right: 1rem;
}
.problems-box__main .main-box .items .thumb-box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.1rem;
  overflow: hidden;
}
.problems-box__main .main-box .items .thumb-box figure {
  width: 50%;
  padding: 0 1.1rem;
  position: relative;
}
.problems-box__main .main-box .items .thumb-box figure::after {
  content: "Before";
  width: 6.4rem;
  height: 6.4rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #8e8e8e;
  border-radius: 50%;
  position: absolute;
  top: 0.8rem;
  left: 1.9rem;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 300;
}
.problems-box__main .main-box .items .thumb-box figure:last-child::after {
  content: "After";
  background: #ed642f;
}
.problems-box .head-items {
  text-align: center;
  margin-bottom: 4.5rem;
  padding-bottom: 1.5rem;
  position: relative;
}
.problems-box .head-items::after {
  content: "";
  display: block;
  width: 9.6rem;
  height: 0.3rem;
  background: #ed642f;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.problems-box .head-items h2 {
  font-size: 3.2rem;
  line-height: 1.4;
  color: #ed642f;
}
.problems-box .list-items {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.6rem;
}
.problems-box .list-items .items {
  padding: 0 0.6rem;
  width: 20%;
  margin-bottom: 1.2rem;
}
.problems-box .list-items .items main {
  display: block;
  position: relative;
}
.problems-box .list-items .items h3 {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  line-height: 4.1rem;
  background: #219a5c;
  width: 100%;
}
.problems-box .list-items .items:nth-child(even) h3 {
  background: #127c46;
}

.estimated-box {
  margin-top: 10rem;
  margin-bottom: 7.3rem;
}
.estimated-box__main {
  padding: 0 4.5rem 8.2rem;
  background-image: url("../images/bg2.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-repeat: repeat;
  position: relative;
}
.estimated-box__main img {
  margin-top: -4rem;
}
.estimated-box__tabs {
  width: 100%;
  margin: 3rem auto 2rem;
  border: 0.3rem solid #066133;
  border-radius: 1rem;
  background: #066133;
}
.estimated-box__tabs .title {
  background: #066133;
  border-radius: 1rem 1rem 0px 0px;
  border: 0.3rem solid #066133;
  text-align: center;
  padding: 1.3rem 0;
}
.estimated-box__tabs .title h3 {
  display: inline-block;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.24rem;
  color: #fff;
  position: relative;
}
.estimated-box__tabs .title h3::after {
  content: "";
  width: 10.55rem;
  height: 8.6rem;
  background-image: url("../images/problems-icon1.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: -4.8rem;
  left: -8.8rem;
}
.estimated-box__tabs .main-box {
  background: #f1faef;
  padding: 3rem 2rem 2rem;
  border-radius: 0 0 1rem 1rem;
  position: relative;
}
.estimated-box__tabs .main-box::after {
  content: "";
  width: 11.1rem;
  height: 16.8rem;
  background-image: url("../images/problems-icon2.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  bottom: 0;
}
.estimated-box__tabs .main-box .list-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.estimated-box__tabs .main-box .list-items .items {
  width: 28.1rem;
  margin-right: 4.5rem;
  position: relative;
}
.estimated-box__tabs .main-box .list-items .items::after {
  content: "";
  width: 1.9rem;
  height: 1.9rem;
  background-image: url("../images/problems-icon3.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: calc(((3.6rem + 1.9rem) / 2) * -1);
  top: 50%;
  webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  transform: translateY(-50%);
}
.estimated-box__tabs .main-box .list-items .items:last-child {
  margin-right: 0;
}
.estimated-box__tabs .main-box .list-items .items:last-child::after {
  display: none;
}
.estimated-box__tabs .main-box .list-items .items span {
  display: block;
  width: 100%;
  background: #066133;
  border-radius: 1rem;
  text-align: center;
  line-height: 6.6rem;
  font-size: 2.2rem;
  letter-spacing: 0.22rem;
  color: #fff;
  font-weight: 700;
}

.card-box {
  width: 100%;
  border: 0.3rem solid #471c0d;
  border-radius: 2rem;
  background: #471c0d;
  overflow: hidden;
}
.card-box .title {
  background: #471c0d;
  border-radius: 2rem 2rem 0px 0px;
  text-align: center;
  border-bottom: 0.3rem solid #471c0d;
  padding: 3rem 1rem;
}
.card-box .title h3 {
  font-size: 2.4rem;
  letter-spacing: 0.24rem;
  color: #fff;
  font-weight: 700;
}
.card-box .main-box {
  background: #fff;
  padding: 2rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-box .main-box::after {
  content: "";
  display: block;
  width: 12.243rem;
  height: 10.759rem;
  background-image: url("../images/estimated-card.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.card-box .main-box .list {
  width: calc(100% - 12.243rem);
  padding-right: 4.45rem;
}
.card-box .main-box .items {
  display: flex;
  align-items: center;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px dashed #471c0d;
}
.card-box .main-box .items span {
  min-width: 21.5rem;
  max-width: 21.5rem;
  padding-right: 1rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: #471c0d;
  letter-spacing: 0.18rem;
}
.card-box .main-box .items img {
  width: 100%;
  max-width: 46rem;
  margin: 0;
}
.card-box .main-box .items:nth-child(2) {
  padding-bottom: 0;
  border-bottom: none;
}
.card-box .main-box .items:nth-child(2) img {
  max-width: 60.5rem;
}
.card-box .main-box p {
  margin-bottom: 0;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  color: #471c0d;
}

.there-box {
  margin-top: 6.3rem;
  position: relative;
  z-index: 9;
  padding-top: 1.5rem;
}
.there-box::before {
  content: "";
  width: 100%;
  height: 31.5rem;
  background: #471c0d;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.there-box .head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.there-box .head img {
  width: 26.3333333%;
}
.there-box .head .text-box {
  width: 73.6666667%;
  padding-left: 4rem;
}
.there-box .head .text-box h2 {
  font-size: 5rem;
  letter-spacing: 0.5rem;
  color: #fff;
  line-height: 1.28;
  margin-bottom: 1rem;
}
.there-box .head .text-box p {
  color: #fff;
  margin-bottom: 3rem;
}
.there-box__main .items {
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 28.75%;
  background-image: url("../images/there1.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
  margin-bottom: 0.7rem;
}
.there-box__main .items .main {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 0 5rem;
}
.there-box__main .items .title {
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  font-size: 6.7rem;
  letter-spacing: 0.67rem;
  font-weight: 700;
  color: #066133;
  line-height: 1;
}
.there-box__main .items .title span {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 8.6rem;
  height: 8.6rem;
  background: #066133;
  margin-right: 1rem;
  color: #fff;
}
.there-box__main .items .title.sp {
  display: none;
}
.there-box__main .items h3 {
  font-size: 2.9rem;
  letter-spacing: 0.29rem;
  margin-bottom: 1.5rem;
}
.there-box__main .items p {
  margin-bottom: 0;
}
.there-box__main .items:nth-child(2) {
  background-image: url("../images/there2.png");
}
.there-box__main .items:nth-child(3) {
  background-image: url("../images/there3.png");
}

.familiar-box {
  margin-top: 4rem;
  margin-bottom: 3rem;
}
.familiar-box .head {
  text-align: center;
  background: #7ecef4;
  padding: 2.5rem 0;
}
.familiar-box .head h2 {
  font-size: 3rem;
  letter-spacing: 0.3rem;
  color: #fff;
  line-height: 1.23333333;
}
.familiar-box .head p {
  margin-bottom: 0;
  font-size: 1.6rem;
}
.familiar-box__main {
  background: #fff;
  border-left: 0.5rem solid #7ecef4;
  border-right: 0.5rem solid #7ecef4;
  border-bottom: 0.5rem solid #7ecef4;
  overflow: hidden;
}
.familiar-box__main .main-box {
  margin: 0 -4.1rem;
  display: flex;
  flex-wrap: wrap;
  padding: 3.5rem 4.5rem 2rem;
}
.familiar-box__main .items {
  margin-bottom: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  width: 50%;
  padding: 0 4.1rem;
}
.familiar-box__main .items .icon {
  width: 11.7rem;
}
.familiar-box__main .items .text-box {
  width: calc(100% - 11.7rem);
  padding-left: 2rem;
}
.familiar-box__main .items .text-box h3 {
  font-size: 2.3rem;
  line-height: 1;
  color: #2061a2;
  margin-bottom: 1.2rem;
}
.familiar-box__main .items .text-box p {
  margin-bottom: 0;
  color: #262626;
}

.worries-box {
  margin-top: 2.5rem;
}
.worries-box .head-box-img {
  margin-bottom: 6rem;
}
.worries-box .head-box-img img {
  width: 100%;
  height: auto;
}
.worries-box__main {
  padding: 7.5rem 5.5rem 11.5rem;
  position: relative;
  background-image: url("../images/bg2.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-repeat: repeat;
}
.worries-box__main .items {
  background: #ffffff;
  box-shadow: 0px 0px 0.6rem #00000029;
  margin-bottom: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  padding: 2.5rem;
}
.worries-box__main .items .thumb-box {
  width: 21.1rem;
  min-width: 21.1rem;
}
.worries-box__main .items .text-box {
  width: calc(100% - 21.1rem);
  padding-right: 6rem;
}
.worries-box__main .items .text-box .head {
  display: flex;
  align-items: center;
  padding-bottom: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 9;
}
.worries-box__main .items .text-box .head::before {
  content: "";
  width: 5.8rem;
  min-width: 5.8rem;
  height: 5.8rem;
  background-image: url("../images/worries-labels-1.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: auto 100%;
  margin-right: 1.5rem;
}
.worries-box__main .items .text-box .head::after {
  content: "";
  width: 100%;
  max-width: 72.1rem;
  height: 0;
  padding-top: 5.11%;
  background-image: url("../images/bd.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.worries-box__main .items .text-box .head h3 span {
  font-size: 3.6rem;
  color: #066133;
}
.worries-box__main .items .text-box .head p {
  margin-bottom: 0;
}
.worries-box__main .items:nth-child(2) .text-box .head::before {
  background-image: url("../images/worries-labels-2.png");
}
.worries-box__main .items:nth-child(3) .text-box .head::before {
  background-image: url("../images/worries-labels-3.png");
}
.worries-box__main .items:nth-child(4) .text-box .head::before {
  background-image: url("../images/worries-labels-4.png");
}
.worries-box__main .items:last-child {
  margin-bottom: 0;
}

.professionals-box {
  margin-top: 9rem;
  background-image: url("../images/professionals-bg.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-repeat: repeat;
  background-size: 100% auto;
  padding: 9rem 0 6rem;
  position: relative;
}
.professionals-box::after {
  content: "";
  width: 26rem;
  height: 50.3rem;
  background-image: url("../images/professionals-after.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  bottom: 0;
  left: 0;
}
.professionals-box .head {
  margin-bottom: 6rem;
  position: relative;
  text-align: center;
  padding: 4rem 0;
  border-top: 0.5rem solid #ffffff;
  border-bottom: 0.5rem solid #ffffff;
}
.professionals-box .head::after {
  content: "";
  width: 28.1rem;
  height: 23.3rem;
  background-image: url("../images/professionals-head.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  bottom: 0;
  right: 5rem;
}
.professionals-box .head h2 {
  font-size: 3.6rem;
  letter-spacing: 0.36rem;
  line-height: 1.27777778;
  color: #fff;
}
.professionals-box .head h2 span {
  color: #ffe200;
}
.professionals-box__main {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 9;
}
.professionals-box__main .items {
  width: 33.33333333%;
  padding: 0 0.85rem;
}
.professionals-box__main .items .text-box {
  background: #ffffff;
  border: 0.3rem solid #471c0d;
  border-radius: 2rem;
  margin: -4.5rem auto 0;
  position: relative;
  z-index: 9;
  padding: 3.5rem 0 2rem;
  width: 100%;
  max-width: 34.5rem;
  min-height: 22.4rem;
}
.professionals-box__main .items .text-box::after,
.professionals-box__main .items .text-box::before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.professionals-box__main .items .text-box::after {
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: #fff;
  border-width: 1.5rem;
  margin-left: -1.5rem;
}
.professionals-box__main .items .text-box::before {
  border-color: rgba(194, 225, 245, 0);
  border-bottom-color: #471c0d;
  border-width: 1.9rem;
  margin-left: -1.9rem;
}
.professionals-box__main .items .text-box h3 {
  text-align: center;
  color: #471c0d;
  margin-bottom: 2.5rem;
}
.professionals-box__main .items .text-box p {
  margin-bottom: 0;
  padding: 0 2rem;
  font-weight: 300;
  font-size: 1.6rem;
}

.voice-box {
  margin-top: 10rem;
}
.voice-box .head-box-img {
  margin-bottom: 7rem;
  text-align: center;
}
.voice-box .head-box-img img {
  width: 100%;
  max-width: 83.8rem;
}
.voice-box__main {
  position: relative;
  background-image: url("../images/bg2.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-repeat: repeat;
  padding: 8rem 9.4rem 7rem;
  counter-reset: section;
}
.voice-box__main .items {
  margin-bottom: 3.5rem;
  display: flex;
  flex-wrap: wrap;
  border: 0.3rem solid #471c0d;
  padding: 5rem 3rem 3rem 3rem;
  background: #fff;
  position: relative;
}
.voice-box__main .items::before {
  counter-increment: section;
  content: "" counter(section) "";
  width: 6.3rem;
  height: 6.3rem;
  background: #471c0d;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 4rem;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
}
.voice-box__main .items .thumb-box {
  width: 40.3191489%;
  padding-top: 3rem;
}
.voice-box__main .items .text-box {
  width: 59.6808511%;
  padding-left: 3rem;
}
.voice-box__main .items .text-box h3 {
  margin-bottom: 2rem;
  font-size: 3rem;
  color: #066133;
  padding-bottom: 1rem;
  border-bottom: 5px dashed #066133;
}
.voice-box__main .items .text-box p {
  margin-bottom: 0;
}

.step-box {
  margin-top: 4rem;
  margin-bottom: 7.5rem;
}
.step-box .head-box-img {
  text-align: center;
  position: relative;
  padding: 4.5rem 0;
}
.step-box .head-box-img::after {
  content: "";
  width: 23.6rem;
  height: 17.8rem;
  background-image: url("../images/step-head.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  bottom: 0;
  left: 0;
}
.step-box .head-box-img img {
  width: 100%;
  max-width: 61.4rem;
}
.step-box__main {
  background-image: url("../images/bg2.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-repeat: repeat;
  position: relative;
  padding: 5rem 5rem 11rem;
}
.step-box__main .items {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 4.7rem;
  position: relative;
}
.step-box__main .items::after {
  content: "";
  width: 2.6rem;
  height: 2.2rem;
  background-image: url("../images/arow2.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  bottom: calc(((4.7rem + 2.2rem) / 2) * -1);
  right: 50%;
  margin-right: -1.3rem;
}
.step-box__main .items:last-child::after {
  display: none;
}
.step-box__main .items .step {
  width: 8.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background: #ed642f;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.step-box__main .items .step span {
  display: block;
  margin-top: 1rem;
  width: 100%;
  text-align: center;
  font-size: 4rem;
}
.step-box__main .items .text-box {
  width: calc(100% - 8.4rem);
  padding-left: 1rem;
}
.step-box__main .items .text-box .main {
  display: block;
  width: 100%;
  min-height: 13.9rem;
  background: #f0f0f0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.step-box__main .items .text-box .main h3 {
  width: 40%;
  padding-left: 7rem;
  padding-right: 2rem;
  color: #000;
}
.step-box__main .items .text-box .main p {
  margin-bottom: 0;
  width: 60%;
}

.service-box {
  background: #f8f4e7;
  margin-top: 7.5rem;
  padding-top: 5rem;
  border-top: 0.3rem solid #000;
}
.service-box .container {
  max-width: 103rem;
}
.service-box__main {
  overflow: hidden;
}
.service-box__main .des {
  margin-bottom: 4rem;
  text-align: center;
}
.service-box__main .des p {
  margin-bottom: 0;
  font-weight: 300;
  font-size: 1.6rem;
}
.service-box__main .main-box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.7rem;
}
.service-box__main .main-box .items {
  width: 50%;
  padding: 0 0.7rem;
  margin-bottom: 1.3rem;
}
.service-box__main .main-box .items main {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.service-box__main .main-box .items span {
  display: block;
  width: 26.4rem;
  text-align: center;
  border-radius: 2.7rem;
  background: #fff;
  line-height: 5.4rem;
  font-size: 2rem;
  color: #066133;
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: 50%;
  webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.service-box__main .main-box .items .more {
  display: block;
  width: 15rem;
  background: #000;
  text-align: center;
  font-size: 1.4rem;
  line-height: 3.4rem;
  color: #fff;
  font-weight: 600;
  position: absolute;
  bottom: 0;
  right: 0;
}
.service-box__main .main-box .items .more:hover {
  background: #4d9b5e;
  color: #fff;
}
.service-box__main .main-box .items:first-child {
  width: 100%;
}
.service-box__main .main-box .items:first-child span {
  width: 31rem;
}

.fqa-box {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background: #f8f4e7;
}
.fqa-box .container {
  max-width: 102rem;
}
.fqa-box__main .items {
  padding: 1.7rem 2rem;
  border-top: 1px dotted #000;
}
.fqa-box__main .items h3 {
  font-size: 1.8rem;
  cursor: pointer;
  color: #000;
  display: flex;
  align-items: center;
  position: relative;
}
.fqa-box__main .items h3::before {
  content: "Q";
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  width: 3.7rem;
  min-width: 3.7rem;
  height: 3.7rem;
  background: #066133;
  border-radius: 50%;
  margin-right: 1.5rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0;
}
.fqa-box__main .items h3::after {
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  position: absolute;
  right: 0;
  font-size: 2.5rem;
}
.fqa-box__main .items h3.is_active::after {
  content: "\f068";
}
.fqa-box__main .items .main {
  padding: 2rem;
  display: none;
}
.fqa-box__main .items .main p {
  margin-bottom: 0;
}
.fqa-box__main .items:last-child {
  border-bottom: 1px dotted #000;
}
.fqa-box .more-box {
  text-align: center;
  padding-top: 4rem;
}

.column-box {
  background: #f8f4e7;
  padding-top: 7rem;
  border-top: 0.6rem solid #000;
  overflow: hidden;
  position: relative;
}
.column-box::before {
  content: "";
  width: 100%;
  height: 0.2rem;
  background: #000;
  position: absolute;
  top: 0.5rem;
  left: 0;
}
.column-box .container {
  max-width: 103rem;
}
.column-box__main {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2.5rem;
}
.column-box__main .items {
  width: 33.3333333%;
  padding: 0 2.5rem;
  position: relative;
  z-index: 9;
}
.column-box__main .items main {
  display: block;
  width: 100%;
  height: 100%;
  padding: 1.2rem;
  position: relative;
  background: #fff;
  border: 0.2rem solid #000;
  border-radius: 1rem;
}
.column-box__main .items main::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-image: url("../images/bg3.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: -0.8rem;
  bottom: -0.7rem;
  z-index: -1;
}
.column-box__main .items .thumb-box {
  margin-bottom: 1rem;
}
.column-box__main .items span {
  display: inline-block;
  margin-bottom: 1rem;
  background: #066133;
  border-radius: 1.6rem;
  padding: 0 1rem;
  font-size: 1.2rem;
  line-height: 2.4rem;
  color: #fff;
}
.column-box__main .items h3 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  line-height: 1.22222222;
  color: #066133;
}
.column-box__main .items p {
  margin-bottom: 1.7rem;
  font-size: 1.4rem;
  color: #272727;
}
.column-box__main .items time {
  display: block;
  width: 100%;
  border-top: 1px solid #d1d1d1;
  font-size: 1.4rem;
  color: #a0a0a0;
  padding-top: 0.5rem;
}
.column-box .more-box {
  text-align: center;
  padding-top: 5.5rem;
}

.banner-boot {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 99;
}
.banner-boot a {
  display: block;
}
.banner-boot img {
  width: 100%;
  height: auto;
}

.footer-bg {
  height: 21.5rem;
  width: 100%;
  background-image: url("../images/footer-bg.png");
  background-position: 0 bottom;
  background-repeat: repeat-x;
  background-size: contain;
}

.footer {
  background: #066133;
}
.footer > .container {
  max-width: 100%;
  padding: 0;
}
.footer__main {
  padding-top: 3.5rem;
  padding-bottom: 6rem;
}
.footer__main .container {
  display: flex;
  flex-wrap: wrap;
}
.footer__main .nav-footer {
  margin-right: 6rem;
}
.footer__main .nav-footer:last-child {
  margin-right: 0;
}
.footer__main .nav-footer h3 {
  margin-bottom: 2rem;
  font-size: 1.6rem;
  color: #fff;
}
.footer__main .nav-footer h3 a {
  color: #fff;
  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;
}
.footer__main .nav-footer h3 a:hover {
  color: #4d9b5e;
}
.footer__main .nav-footer ul li {
  margin-bottom: 1rem;
}
.footer__main .nav-footer ul li a {
  font-size: 1.6rem;
  color: #fff;
  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;
}
.footer__main .nav-footer ul li a:hover {
  color: #4d9b5e;
}
.footer__info {
  padding: 1.5rem 0;
  border-top: 1px solid #fff;
}
.footer__info .container {
  display: flex;
  flex-wrap: wrap;
}
.footer__info .logo-footer {
  width: 18.1rem;
  margin-right: 2.2rem;
}
.footer__info p {
  margin-bottom: 0;
  font-size: 1.6rem;
  color: #fff;
}

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

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

@media (max-width: 991px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  html {
    font-size: 1.33333vw;
  }
  body {
    font-size: 2.4rem;
  }
  h2 {
    font-size: 6.1rem;
  }
  h3 {
    font-size: 2.8rem;
  }
  .container {
    padding: 0 2.5rem;
  }
  .head-box {
    margin-bottom: 6rem;
  }
  .head-box p {
    font-size: 2.4rem;
  }
  .head-box h2 {
    letter-spacing: 0.61rem;
  }
  .more-show {
    text-align: center;
  }
  .more-show span {
    display: inline-block;
    cursor: pointer;
    font-size: 1.8rem;
    color: #066133;
    padding-bottom: 4.5rem;
    background-image: url("../images/arow.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 11.5rem auto;
  }
  .header {
    width: 100%;
    position: fixed;
    z-index: 9999;
  }
  .header__top {
    display: none;
  }
  .header__main {
    padding: 1.5rem 2.5rem;
  }
  .header__main .logo {
    margin-right: 0;
  }
  .banner {
    padding-top: 10rem;
  }
  .list-post {
    padding: 3rem 0;
  }
  .list-post__main .items {
    width: 50%;
    margin-bottom: 1.2rem;
  }
  .list-post__main .items .thumb-box span {
    height: 6.7rem;
    font-size: 2.3rem;
  }
  .contact-box .head {
    padding: 3rem 0;
    background-image: url("../images/contact-bg1-sp.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .contact-box__main .main-box {
    padding-bottom: 5.2rem;
  }
  .contact-box__main .main-box .thumb-box {
    width: 100%;
    padding-left: 0;
    margin-top: 2rem;
    text-align: center;
  }
  .contact-box__main .main-box .thumb-box img {
    max-width: 37.9rem;
  }
  .contact-box__main .main-box .text-box {
    width: 100%;
    padding-left: 0;
    padding-top: 3.5rem;
  }
  .contact-box__main .main-box .list-items {
    margin: 0 -0.5rem 3rem;
  }
  .contact-box__main .main-box .list-items .items {
    width: 50%;
    padding: 0 0.5rem;
  }
  .contact-box__main .main-box .list-items .items main {
    padding: 0.7rem 1rem;
    font-size: 2.3rem;
  }
  .contact-box__main .main-box .list-items .items img {
    min-width: 5rem;
    max-width: 5rem;
  }
  .contact-box__main .main-box .info-box p {
    font-size: 1.7rem;
    letter-spacing: 0.17rem;
    white-space: nowrap;
  }
  .contact-box__main .main-box .info-box p:first-child {
    line-height: 2.5rem;
    padding: 1rem 1.5rem;
  }
  .contact-box__main .main-box .info-box p:last-child::before {
    width: 2rem;
    height: 2rem;
  }
  .contact-box.contact-box2 .contact-box__main {
    padding-bottom: 4rem;
  }
  .contact-box.contact-box2 .card-box {
    max-width: 100%;
  }
  .problems-box .head-box-img {
    margin-bottom: 4.5rem;
  }
  .problems-box .head-box-img img {
    max-width: 64.1rem;
  }
  .problems-box__main {
    padding: 7rem 3.5rem;
  }
  .problems-box__main .main-box {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
  }
  .problems-box__main .main-box .items {
    width: 100%;
    padding: 0;
    margin-bottom: 4.5rem;
  }
  .problems-box__main .main-box .items .head::before {
    width: 4.6rem;
    min-width: 4.6rem;
    height: 3.9rem;
    margin-right: 1.2rem;
  }
  .problems-box__main .main-box .items .thumb-box {
    margin: 0 -1.35rem;
  }
  .problems-box__main .main-box .items .thumb-box figure {
    padding: 0 1.35rem;
  }
  .problems-box__main .main-box .items .thumb-box figure::after {
    width: 7.7rem;
    height: 7.7rem;
    font-size: 1.9rem;
  }
  .problems-box__main .main-box .items.items-hide {
    display: none;
  }
  .problems-box .head-items {
    margin-top: 5.5rem;
  }
  .problems-box .list-items .items {
    width: 33.333333%;
  }
  .estimated-box {
    margin-top: 11rem;
  }
  .estimated-box__main {
    padding: 0 2rem 12rem;
  }
  .estimated-box__main img {
    margin-top: 0;
  }
  .estimated-box__main .sp {
    margin-top: -4rem;
    display: inline-block;
  }
  .estimated-box__tabs {
    max-width: 64.3rem;
    margin: 0 auto 3rem;
    border-radius: 3rem;
  }
  .estimated-box__tabs .title {
    background: #066133;
    border-radius: 3rem 3rem 0px 0px;
    border: 0.3rem solid #066133;
    text-align: center;
    padding: 2.2rem 0;
  }
  .estimated-box__tabs .title h3::after {
    top: -4.8rem;
    left: -8.8rem;
  }
  .estimated-box__tabs .main-box {
    background: #f1faef;
    padding: 3rem 2rem;
    border-radius: 0 0 3rem 3rem;
    position: relative;
  }
  .estimated-box__tabs .main-box::after {
    right: 0;
    bottom: 0;
  }
  .estimated-box__tabs .main-box .list-items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .estimated-box__tabs .main-box .list-items .items {
    width: 15.6rem;
    margin-right: 3.5rem;
  }
  .estimated-box__tabs .main-box .list-items .items::after {
    width: 2rem;
    height: 2rem;
    right: calc(((3.5rem + 2rem) / 2) * -1);
  }
  .estimated-box__tabs .main-box .list-items .items:last-child {
    margin-right: 0;
  }
  .estimated-box__tabs .main-box .list-items .items span {
    line-height: 12rem;
    font-size: 2.4rem;
    letter-spacing: 0.24rem;
  }
  .card-box {
    max-width: 100%;
    margin-bottom: 5rem;
  }
  .card-box .title {
    padding: 2.5rem 1rem;
  }
  .card-box .title h3 {
    line-height: 1.7;
  }
  .card-box .main-box {
    background: #fff;
    padding: 1.5rem 2.5rem;
  }
  .card-box .main-box::after {
    display: none;
  }
  .card-box .main-box .list {
    width: 100%;
  }
  .card-box .main-box .items {
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    width: 100%;
  }
  .card-box .main-box .items span {
    min-width: 100%;
    max-width: 100%;
    padding-right: 0;
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .card-box .main-box .items:nth-child(2) {
    padding-bottom: 0;
    border-bottom: none;
  }
  .card-box .main-box .items:nth-child(2) img {
    max-width: 41.1rem;
  }
  .card-box .main-box p {
    margin-bottom: 0;
    font-size: 1rem;
    letter-spacing: 0.1rem;
    color: #471c0d;
  }
  .card-box ~ .des {
    font-size: 1.8rem;
    letter-spacing: 0.18rem;
    color: #471c0d;
    width: 100%;
    max-width: 64.3rem;
    margin: 2rem auto 0;
  }
  .there-box {
    padding-top: 4.5rem;
  }
  .there-box::before {
    height: 57rem;
  }
  .there-box .head {
    justify-content: center;
  }
  .there-box .head img {
    width: 31.6rem;
    order: 2;
  }
  .there-box .head .text-box {
    order: 1;
    width: 100%;
    padding-left: 0;
  }
  .there-box .head .text-box h2 {
    font-size: 4.7rem;
    letter-spacing: 0.47rem;
  }
  .there-box .head .text-box p {
    margin-bottom: 1rem;
    font-size: 1.8rem;
  }
  .there-box__main .items {
    height: auto;
    padding-top: 0;
    background-image: url("../images/there1-sp.png");
    background-position: right top;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-color: #fff;
    margin-bottom: 2.5rem;
  }
  .there-box__main .items .main {
    padding: 5.5rem 2.5rem;
    position: relative;
    top: 0;
    left: 0;
    transform: none;
  }
  .there-box__main .items .title {
    margin-bottom: 6rem;
  }
  .there-box__main .items h3 {
    font-size: 3.9rem;
    letter-spacing: 0.39rem;
    margin-bottom: 2rem;
  }
  .there-box__main .items p {
    margin-bottom: 0;
  }
  .there-box__main .items:nth-child(2) {
    background-image: url("../images/there2-sp.png");
  }
  .there-box__main .items:nth-child(2) .title {
    display: none;
  }
  .there-box__main .items:nth-child(2) .title.sp {
    display: flex;
    flex-wrap: wrap;
  }
  .there-box__main .items:nth-child(2) p br {
    display: none;
  }
  .there-box__main .items:nth-child(3) {
    background-image: url("../images/there3-sp.png");
  }
  .there-box__main .items:nth-child(3) p br {
    display: none;
  }
  .familiar-box {
    margin-top: 6rem;
  }
  .familiar-box .head {
    text-align: center;
    padding: 3rem 0;
  }
  .familiar-box .head h2 {
    font-size: 3.9rem;
    letter-spacing: 0.39rem;
    margin-bottom: 1rem;
  }
  .familiar-box .head p {
    margin-bottom: 0;
    font-size: 2.3rem;
  }
  .familiar-box__main .main-box {
    margin: 0;
    padding: 4rem 4rem 2rem;
  }
  .familiar-box__main .items {
    margin-bottom: 2rem;
    width: 100%;
    padding: 0;
  }
  .familiar-box__main .items .icon {
    width: 13.4rem;
  }
  .familiar-box__main .items .text-box {
    width: calc(100% - 13.4rem);
  }
  .familiar-box__main .items .text-box h3 {
    font-size: 3rem;
  }
  .worries-box {
    margin-top: 4.5rem;
  }
  .worries-box .head-box-img {
    margin-bottom: 4.5rem;
  }
  .worries-box__main {
    padding: 8rem 0;
  }
  .worries-box__main .main-box {
    padding: 0 3rem;
  }
  .worries-box__main .items {
    padding: 3rem;
  }
  .worries-box__main .items .thumb-box {
    width: 100%;
    min-width: none;
    order: 1;
    margin-bottom: 2.5rem;
    text-align: center;
  }
  .worries-box__main .items .thumb-box img {
    max-width: 29rem;
  }
  .worries-box__main .items .text-box {
    width: 100%;
    padding-right: 0;
    order: 2;
  }
  .worries-box__main .items .text-box .head {
    padding-bottom: 1.5rem;
    margin-bottom: 1rem;
  }
  .worries-box__main .items .text-box .head::before {
    width: 8.6rem;
    min-width: 8.6rem;
    height: 8.6rem;
    margin-right: 1rem;
  }
  .worries-box__main .items .text-box .head h3 {
    font-size: 3.3rem;
  }
  .worries-box__main .items .text-box .head h3 span {
    font-size: 4.9rem;
    color: #066133;
  }
  .professionals-box {
    margin-top: 7rem;
    padding: 6rem 0 9rem;
  }
  .professionals-box .head {
    margin-bottom: 4.5rem;
  }
  .professionals-box .head::after {
    display: none;
  }
  .professionals-box__main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 9;
  }
  .professionals-box__main .items {
    width: 50%;
    padding: 0 0.9rem;
    margin-bottom: 2.4rem;
  }
  .professionals-box__main .items:last-child {
    margin-bottom: 0;
  }
  .professionals-box__main .items .text-box {
    border: 0.3rem solid #471c0d;
    padding: 3.5rem 0;
    max-width: 29.7rem;
    min-height: auto;
  }
  .professionals-box__main .items .text-box h3 {
    margin-bottom: 3rem;
    font-size: 2.4rem;
  }
  .professionals-box__main .items .text-box p {
    font-size: 1.6rem;
  }
  .voice-box {
    margin-top: 4.5rem;
  }
  .voice-box .head-box-img {
    margin-bottom: 5.8rem;
  }
  .voice-box .head-box-img img {
    max-width: 56.7rem;
  }
  .voice-box__main {
    padding: 9rem 3rem 5rem;
  }
  .voice-box__main .items {
    margin-bottom: 3rem;
  }
  .voice-box__main .items .thumb-box {
    width: 100%;
    padding-top: 0;
    text-align: center;
  }
  .voice-box__main .items .thumb-box img {
    max-width: 47.5rem;
  }
  .voice-box__main .items .text-box {
    width: 100%;
    padding-left: 0;
    padding-top: 5.2rem;
  }
  .voice-box__main .items .text-box h3 {
    margin-bottom: 2.5rem;
    font-size: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 0.5rem dashed #066133;
  }
  .step-box {
    margin-top: 6rem;
  }
  .step-box .head-box-img {
    padding: 0;
  }
  .step-box .head-box-img::after {
    display: none;
  }
  .step-box .head-box-img img {
    max-width: 58.5rem;
  }
  .step-box__main {
    background-image: url("../images/bg2.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    padding: 7rem 3rem;
  }
  .step-box__main .items {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 7rem;
  }
  .step-box__main .items::after {
    bottom: calc(((7rem + 2.2rem) / 2) * -1);
  }
  .step-box__main .items .step {
    width: 10.6rem;
    font-size: 2rem;
  }
  .step-box__main .items .step span {
    font-size: 5rem;
  }
  .step-box__main .items .text-box {
    width: calc(100% - 10.6rem);
  }
  .step-box__main .items .text-box .main {
    min-height: 25.7rem;
    padding: 4rem;
    display: block;
  }
  .step-box__main .items .text-box .main h3 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  .step-box__main .items .text-box .main p {
    width: 100%;
  }
  .service-box {
    background: #f8f4e7;
    margin-top: 6rem;
    padding-top: 7rem;
  }
  .service-box__main {
    overflow: hidden;
  }
  .service-box__main .des {
    margin-bottom: 6rem;
  }
  .service-box__main .des p {
    font-size: 2.4rem;
  }
  .service-box__main .main-box {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
  }
  .service-box__main .main-box .items {
    width: 100%;
    padding: 0;
    margin-bottom: 2rem;
  }
  .service-box__main .main-box .items span {
    width: 36.1rem;
    border-radius: 3.7rem;
    line-height: 7.4rem;
    font-size: 2.7rem;
  }
  .service-box__main .main-box .items .more {
    width: 19.8rem;
    font-size: 1.8rem;
    line-height: 4.5rem;
  }
  .service-box__main .main-box .items:first-child {
    width: 100%;
  }
  .service-box__main .main-box .items:first-child span {
    width: 42.5rem;
  }
  .fqa-box {
    padding-bottom: 10rem;
  }
  .fqa-box__main .items h3 {
    padding-right: 4rem;
    align-items: center;
  }
  .fqa-box .more-box {
    padding-top: 5rem;
  }
  .column-box {
    padding-top: 10rem;
    border-top: 0.6rem solid #000;
  }
  .column-box__main {
    margin: 0;
  }
  .column-box__main .items {
    width: 100%;
    padding: 0 5rem;
    margin-bottom: 4rem;
  }
  .column-box__main .items main {
    padding: 2.5rem;
    border: 3px solid #000;
    border-radius: 2rem;
  }
  .column-box__main .items main::after {
    right: -2rem;
    bottom: -2rem;
  }
  .column-box__main .items .thumb-box {
    margin-bottom: 2.5rem;
  }
  .column-box__main .items span {
    margin-bottom: 2rem;
    border-radius: 3rem;
    padding: 0 2rem;
    font-size: 2.4rem;
    line-height: 4.8rem;
  }
  .column-box__main .items h3 {
    font-size: 3.2rem;
  }
  .column-box__main .items p {
    font-size: 2.4rem;
  }
  .column-box__main .items time {
    font-size: 2.4rem;
  }
  .column-box .more-box {
    padding-top: 9rem;
  }
  .footer-bg {
    background-image: url("../images/footer-bg-sp.png");
    height: 45rem;
  }
  .footer {
    margin-bottom: 10.3rem;
  }
  .footer__main {
    padding-top: 0;
    padding-bottom: 3rem;
  }
  .footer__main .container {
    display: block;
    padding: 0;
  }
  .footer__main .nav-footer {
    margin-right: 0;
  }
  .footer__main .nav-footer h3 {
    font-size: 2.4rem;
    margin-bottom: 0;
    padding: 0 2rem;
    line-height: 10rem;
    border-bottom: 1px solid #fff;
    position: relative;
  }
  .footer__main .nav-footer h3::after {
    content: "＞";
    position: absolute;
    right: 2rem;
  }
  .footer__main .nav-footer ul {
    display: none;
  }
  .footer__info {
    padding: 2.5rem 0;
    border-top: 1px solid #fff;
  }
  .footer__info .container {
    align-items: center;
  }
  .footer__info .logo-footer {
    width: 28.8rem;
    margin-right: 3.5rem;
  }
  .footer__info p {
    font-size: 2.5rem;
  }
}

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