@charset "UTF-8";
/* ------------------------------------------------- *
 *        common-module
 * ------------------------------------------------- */
body {
  line-height: 2;
  color: #000;
  font-feature-settings: "palt";
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 300; /* 太さの指定（700は太字） */
  font-size: 16px;
  background: #fff;
  position: relative;
}

.mt-80 {
  margin-top: 80px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-10 {
  margin-top: 10px;
}

a .mt-5 {
  margin-top: 5px !important;
}

.pt-20 {
  padding-top: 20px;
}

.pt-5 {
  padding-top: 5px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-15 {
  padding-bottom: 15px;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.25s ease-in-out;
}
a:hover, a :focus, a :active, a :visited, a :link {
  text-decoration: none;
}

::-moz-selection {
  background: #d4f1fc;
  color: #0d16a1;
}

::selection {
  background: #d4f1fc;
  color: #0d16a1;
}

::-moz-selection {
  background: #d4f1fc;
  color: #0d16a1;
}

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

.inner {
  padding: 15px;
  max-width: 1310px;
  margin: 0 auto;
}

.btn {
  user-select: none;
  border-radius: 0px;
  border: none;
  box-shadow: none;
  text-align: center;
  background: #ff6053;
  color: #fff;
}

/* Sweep To Right */
.hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ff200e;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-sweep-to-right:hover, .hvr-sweep-to-right:focus, .hvr-sweep-to-right:active {
  color: white;
}

.hvr-sweep-to-right:hover:before, .hvr-sweep-to-right:focus:before, .hvr-sweep-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.main-visual {
  background-image: url(../img/fv_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  height: calc(100vh - min(6.21vw, 87px));
}
@media screen and (max-width: 991px) {
  .main-visual {
    height: fit-content;
  }
}
@media screen and (max-width: 767px) {
  .main-visual {
    background-image: url(../img/fv_bg_sp.jpg);
    background-position: top;
    background-size: 100%;
  }
}
.main-visual .inner {
  height: 100%;
}
.main-visual .inner .main-visual__contents {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .main-visual .inner .main-visual__contents {
    flex-wrap: wrap;
    padding-top: 50px;
    padding-bottom: 0;
  }
  .main-visual .inner .main-visual__contents .contact {
    margin-top: 40px;
  }
}
.main-visual .inner .main-visual__contents .main-visual__hero {
  width: min(45.7vw, 640px);
}

.footer-main-visual {
  position: relative;
  background-image: unset;
  height: fit-content;
  padding-bottom: 35px;
}
.footer-main-visual .inner .main-visual__contents {
  height: 100%;
  padding: 0;
  justify-content: center;
  border-radius: 8px;
  border: 3px solid #aa9452;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .footer-main-visual .inner .main-visual__contents {
    margin-top: 0px;
    margin-bottom: 0px;
  }
}
.footer-main-visual .main-visual__hero {
  background-image: url(../img/bg-white.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  align-items: center;
}
.footer-main-visual .contact-bg {
  background-image: url(../img/bg-gold.jpg);
  display: flex;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 15px;
  align-items: center;
}
.footer-main-visual .contact-bg .contact {
  width: 90%;
  margin: 0 auto;
}

/* ------------------------------------------------- *
*        footer-module
* ------------------------------------------------- */
.btns-footer {
  position: fixed;
  z-index: 9900;
  right: -64px;
  bottom: 0px;
}
.btns-footer ul {
  list-style-type: none;
  padding-left: 0;
}
.btns-footer ul li {
  display: block;
  color: #fff;
  text-decoration: none;
}
.btns-footer ul li a {
  display: block;
  color: #fff;
  text-decoration: none;
}
.btns-footer ul li:first-child p {
  writing-mode: vertical-rl;
  letter-spacing: 0.4em;
}
.btns-footer ul li:last-child {
  margin-top: 10px;
  line-height: 1;
  text-align: center;
}

.btn-footer {
  margin: auto;
  padding: 15px 0px;
  font-size: 1rem;
  font-weight: 700;
  background: #fff;
  width: 60px;
  background: #695c33;
}

.btn-contact {
  background: #ff6053;
}
@media screen and (max-width: 767px) {
  .btn-contact {
    line-height: 1.3;
  }
}
.btn-contact i {
  margin-bottom: 20px;
  font-size: 27px;
}

.hvr-btn {
  display: flex;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  flex-direction: column;
  align-items: center;
}

.hvr-btn:hover,
.hvr-btn:focus,
.hvr-btn:active {
  color: #695c33;
}

.hvr-btn-contact:hover,
.hvr-btn-contact:focus,
.hvr-btn-contact:active {
  color: #ff6053;
}

.hvr-btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-btn:hover:before,
.hvr-btn:focus:before,
.hvr-btn:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/* problems セクション　*/
.arrow_title {
  width: 100%;
  height: fit-content;
  background: #aa9452;
  padding: min(1.78vw, 25px);
  padding-left: min(27vw, 329px);
  text-align: start;
  border: 3px solid #aa9452;
  color: #fff;
  font-weight: bold;
  border-top-right-radius: 8px;
  -webkit-border-top-right-radius: 8px;
  -moz-border-radius-topright: 8px;
  border-top-left-radius: 8px;
  -webkit-border-top-left-radius: 8px;
  -moz-border-radius-topleft: 8px;
  display: flex;
  position: relative;
}
@media screen and (max-width: 767px) {
  .arrow_title {
    padding: min(1.95vw, 15px);
    text-align: center;
    justify-content: center;
  }
}
.arrow_title .arrow-title-img {
  position: absolute;
  z-index: 10;
  bottom: -6px;
  left: 3%;
  width: min(18.6vw, 261px);
}
@media screen and (max-width: 991px) {
  .arrow_title .arrow-title-img {
    justify-content: center;
  }
}
.arrow_title h2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .arrow_title h2 {
    align-items: center;
  }
}
.arrow_title span {
  color: #fff;
}
.arrow_title span:first-of-type {
  font-size: min(3.28vw, 46px);
  display: inline-block;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .arrow_title span:first-of-type {
    font-size: min(4.5vw, 38px);
  }
}
.arrow_title span:last-of-type {
  display: inline-block;
  font-size: min(4.28vw, 60px);
  font-weight: bold;
  position: relative;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .arrow_title span:last-of-type {
    font-size: min(5.77vw, 43px);
  }
}
.arrow_title span:last-of-type .dots {
  margin-bottom: 0;
}
.arrow_title span:last-of-type .dots::before {
  content: "";
  display: inline-block;
  width: min(21.2vw, 326px);
  height: 14px;
  margin-left: min(1vw, 14px);
  background-image: url(../img/dots.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 767px) {
  .arrow_title span:last-of-type .dots::before {
    left: 3%;
    width: min(26.9vw, 207px);
    left: 3%;
  }
}

.arrow_box {
  position: relative;
  width: 100%;
  height: fit-content;
  background: #FFFFFF;
  padding: 15px;
  text-align: start;
  border: 3px solid #aa9452;
  color: #000000;
  border-bottom-right-radius: 8px;
  -webkit-border-bottom-right-radius: 8px;
  -moz-border-radius-bottomright: 8px;
  border-bottom-left-radius: 8px;
  -webkit-border-bottom-left-radius: 8px;
  -moz-border-radius-bottomleft: 8px;
}
.arrow_box ul {
  padding: 0;
  margin-top: min(3.21vw, 45px);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .arrow_box ul {
    margin-left: 0;
    margin-right: 0;
    margin-top: min(5.86vw, 45px);
  }
}
.arrow_box ul li {
  list-style: none;
  position: relative;
  padding-left: min(10vw, 140px);
  font-size: clamp(16px, 2.14vw, 30px);
  margin-bottom: min(4.21vw, 59px);
  line-height: 1.4;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .arrow_box ul li {
    font-size: clamp(16px, 4.24vw, 30px);
    margin-bottom: min(7.82vw, 60px);
  }
}
.arrow_box ul li::before {
  content: "";
  display: inline-block;
  width: min(7.92vw, 111px);
  height: 90px;
  background-image: url(../img/check.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .arrow_box ul li::before {
    width: min(8.47vw, 65px);
    top: 0;
    transform: unset;
  }
}

/* イエローマーカー */
strong.text {
  display: inline;
  margin: 0;
  font-weight: normal;
  background: linear-gradient(transparent 60%, #ffe13f 60%);
}

/* 吹き出しの三角パーツ ここから */
.arrow_box:after, .arrow_box:before {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  top: 100%;
  position: absolute;
  left: 50%;
  transform: translateY(-1px);
}

.arrow_box:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-width: 50px;
  border-bottom-width: 50px;
  border-left-width: 45px;
  border-right-width: 45px;
  margin-left: -45px;
  border-top-color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .arrow_box:after {
    border-top-width: 31px;
    border-bottom-width: 31px;
    border-left-width: 25px;
    border-right-width: 25px;
    margin-left: -25px;
  }
}

.arrow_box:before {
  border-color: rgba(170, 148, 82, 0);
  border-top-width: 52px;
  border-bottom-width: 52px;
  border-left-width: 47px;
  border-right-width: 47px;
  margin-left: -46.8px;
  margin-top: 3px;
  border-top-color: #aa9452;
}
@media screen and (max-width: 767px) {
  .arrow_box:before {
    border-top-width: 32px;
    border-bottom-width: 31px;
    border-left-width: 27px;
    border-right-width: 27px;
    margin-left: -27px;
  }
}

/* 吹き出しの三角パーツ ここまで */
/*　強み　*/
#section-strength {
  padding-top: clamp(43px, 8.57vw, 120px);
  margin-top: -20px;
}
#section-strength h2 {
  max-width: min(49.7vw, 696px);
  position: relative;
}
@media screen and (max-width: 767px) {
  #section-strength h2 {
    max-width: unset;
    padding-left: 15px;
    padding-right: 15px;
  }
}
#section-strength h2::before {
  content: "";
  display: inline-block;
  width: 53.4482758621%;
  height: 100%;
  background-image: url(../img/strength_message_l.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  left: -26%;
  top: 10%;
}
@media screen and (max-width: 767px) {
  #section-strength h2::before {
    left: 2%;
    width: 34%;
  }
}
#section-strength h2::after {
  content: "";
  display: inline-block;
  width: 40.2298850575%;
  height: 100%;
  background-image: url(../img/strength_message_r.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: -19%;
  top: 10%;
}
@media screen and (max-width: 767px) {
  #section-strength h2::after {
    right: 2%;
    top: 4%;
    width: 27%;
  }
}
#section-strength .form-row > .col,
#section-strength .form-row > [class*=col-] {
  padding-right: 15px;
  padding-left: 15px;
}
#section-strength .form-row {
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  #section-strength .form-row {
    justify-content: center;
    align-content: space-around;
    flex-direction: column;
  }
}
#section-strength .block-strength {
  margin-top: 50px;
}
#section-strength .card {
  border-radius: 8px;
  height: 100%;
  box-shadow: none;
  color: #fff;
  background-color: #aa9452;
  border: none;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  #section-strength .card {
    margin-bottom: 15px;
  }
}
#section-strength .card .card-img-container {
  height: min(15.5vw, 221px);
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  #section-strength .card .card-img-container {
    height: auto;
  }
}
#section-strength .card .card-img-container img {
  object-fit: cover;
  transform: scale(1.06);
}
#section-strength .card h3 {
  font-weight: bold;
  text-align: center;
  background-color: #695c33;
  font-size: clamp(18px, 2vw, 28px);
}
@media screen and (max-width: 991px) {
  #section-strength .card h3 {
    font-size: clamp(18px, 2.82vw, 28px);
  }
}
@media screen and (max-width: 767px) {
  #section-strength .card h3 {
    font-size: clamp(18px, 5.21vw, 40px);
  }
}
#section-strength .card p {
  line-height: 1.55;
  background-color: #aa9452;
  font-size: clamp(16px, 1.57vw, 22px);
}
@media screen and (max-width: 991px) {
  #section-strength .card p {
    font-size: clamp(16px, 2.21vw, 22px);
  }
}
@media screen and (max-width: 767px) {
  #section-strength .card p {
    font-size: clamp(16px, 2.86vw, 22px);
  }
}

/*　サービス　*/
#section-services {
  padding-top: min(8.57vw, 120px);
  margin-top: -20px;
}
#section-services h2 {
  max-width: min(49.7vw, 696px);
  position: relative;
}
@media screen and (max-width: 767px) {
  #section-services h2 {
    max-width: unset;
  }
}
#section-services p {
  line-height: 1.4;
  width: fit-content;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(16px, 2.14vw, 30px);
}
@media screen and (max-width: 991px) {
  #section-services p {
    font-size: clamp(16px, 3vw, 30px);
  }
}
@media screen and (max-width: 767px) {
  #section-services p {
    font-size: clamp(16px, 3.91vw, 30px);
  }
}
#section-services .form-row > .col,
#section-services .form-row > [class*=col-] {
  padding-right: 15px;
  padding-left: 15px;
  margin-bottom: 15px;
}
#section-services .form-row ul li {
  font-size: clamp(16px, 2vw, 28px);
  list-style: none;
  line-height: 1.5;
}
@media screen and (max-width: 991px) {
  #section-services .form-row ul li {
    font-size: clamp(16px, 2.82vw, 28px);
  }
}
@media screen and (max-width: 767px) {
  #section-services .form-row ul li {
    font-size: clamp(16px, 3.65vw, 28px);
  }
}
#section-services .form-row ul li span {
  color: #aa9452;
}
#section-services .block-services {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  #section-services .services-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  #section-services .services-items > .col,
  #section-services .services-items > [class*=col-] {
    padding-right: 0px;
    padding-left: 0px;
    margin: 0;
  }
}
#section-services .card-services {
  border-radius: unset;
  box-shadow: none;
  color: #fff;
  background-color: #aa9452;
  border: none;
  overflow: hidden;
  aspect-ratio: 404/137;
}
@media screen and (max-width: 991px) {
  #section-services .card-services {
    margin-bottom: 15px;
  }
}
#section-services .card-services .card-img-container {
  overflow: hidden;
}
#section-services .card-services .card-img-container img {
  object-fit: cover;
  transform: scale(1.06);
}
#section-services .card-services h3 {
  font-weight: bold;
  text-align: left;
  background-color: #695c33;
  display: flex;
  align-items: center;
  line-height: 1.4;
  padding-left: 1rem;
  font-size: clamp(16px, 2vw, 28px);
}
@media screen and (max-width: 991px) {
  #section-services .card-services h3 {
    font-size: clamp(16px, 2.82vw, 28px);
  }
}
#section-services .card-services p {
  line-height: 1.55;
  background-color: #aa9452;
  font-size: clamp(16px, 1.57vw, 22px);
}
@media screen and (max-width: 991px) {
  #section-services .card-services p {
    font-size: clamp(16px, 2.21vw, 22px);
  }
}
#section-services .card-price {
  font-weight: normal;
  margin-top: min(4.7vw, 66px);
}
#section-services .card-price .card-header {
  background-color: #fff;
}
#section-services .card-price h3 {
  font-size: clamp(16px, 2.85vw, 40px);
  font-weight: bold;
  color: #695c33;
}
@media screen and (max-width: 991px) {
  #section-services .card-price h3 {
    font-size: clamp(16px, 6.65vw, 66px);
  }
}
#section-services .card-price p {
  font-size: clamp(16px, 2.85vw, 40px);
  margin-top: 0;
  font-weight: 500;
}
@media screen and (max-width: 991px) {
  #section-services .card-price p {
    font-size: clamp(16px, 4vw, 40px);
  }
}
#section-services .card-price p .price {
  color: #aa9452;
}
#section-services .card-price p .tax {
  font-size: clamp(16px, 1.71vw, 24px);
}
@media screen and (max-width: 991px) {
  #section-services .card-price p .tax {
    font-size: clamp(16px, 2.42vw, 24px);
  }
}
#section-services .card-price ul {
  border-top: 1px solid #000;
  width: 97%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 21px;
  padding-inline-start: min(2.9vw, 41px);
  line-height: 1.39;
}
#section-services .card-price ul li {
  font-size: clamp(16px, 1.28vw, 18px);
}
@media screen and (max-width: 991px) {
  #section-services .card-price ul li {
    font-size: clamp(16px, 1.81vw, 18px);
  }
}
@media screen and (max-width: 767px) {
  #section-services .card-price ul li {
    font-size: clamp(16px, 2.34vw, 18px);
  }
}

/*　取引実績　*/
#section-achivement {
  padding-top: min(8.57vw, 120px);
  margin-top: -20px;
}
#section-achivement h2 {
  max-width: 896px;
}
#section-achivement p {
  line-height: 1.4;
  width: 100%;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  flex-grow: 1;
  max-width: 896px;
  font-size: clamp(16px, 2.14vw, 30px);
}
@media screen and (max-width: 991px) {
  #section-achivement p {
    font-size: clamp(16px, 3vw, 30px);
  }
}
@media screen and (max-width: 767px) {
  #section-achivement p {
    font-size: clamp(16px, 3.91vw, 30px);
  }
}
#section-achivement .form-row > .col,
#section-achivement .form-row > [class*=col-] {
  padding-right: 14px;
  padding-left: 14px;
}
#section-achivement .form-row {
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  #section-achivement .form-row {
    justify-content: center;
    align-content: space-around;
    flex-direction: column;
  }
}
#section-achivement .block-achivement {
  margin-top: 50px;
}
#section-achivement .card {
  border-radius: 5px;
  height: 100%;
  box-shadow: none;
  color: #fff;
  background-color: #aa9452;
  border: none;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  #section-achivement .card {
    margin-bottom: 15px;
  }
}
#section-achivement .card .card-img-container {
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  #section-achivement .card .card-img-container {
    height: auto;
  }
}
#section-achivement .card .card-img-container img {
  object-fit: cover;
  transform: scale(1.06);
}
#section-achivement .card h3 {
  font-weight: bold;
  text-align: center;
  background-color: #695c33;
  font-size: clamp(18px, 2vw, 28px);
}
@media screen and (max-width: 991px) {
  #section-achivement .card h3 {
    font-size: clamp(18px, 2.82vw, 28px);
  }
}
@media screen and (max-width: 767px) {
  #section-achivement .card h3 {
    font-size: clamp(18px, 5.21vw, 40px);
  }
}
#section-achivement .card p {
  margin: 0;
  line-height: 1.55;
  background-color: #fff;
  color: #000;
  font-size: min(1.57vw, 22px);
  font-size: clamp(16px, 1.57vw, 22px);
}
@media screen and (max-width: 991px) {
  #section-achivement .card p {
    font-size: clamp(16px, 2.21vw, 22px);
  }
}
@media screen and (max-width: 767px) {
  #section-achivement .card p {
    font-size: clamp(16px, 2.86vw, 22px);
  }
}
#section-achivement .card p span {
  display: block;
  color: #aa9452;
  margin-bottom: 5px;
}

@media screen and (max-width: 991px) {
  #section-achievement {
    padding-top: 80px;
  }
  #section-achievement .block-achievement {
    margin-top: 30px;
  }
  #section-achievement .block {
    margin-bottom: 15px;
  }
  #section-achievement p {
    line-height: 1.75;
  }
}
.bg {
  background-image: url(../img/problem_bg.jpg);
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
  background-repeat: repeat;
  background-position: top;
  height: fit-content;
  background-size: auto;
  padding-top: 118px;
  padding-bottom: 89px;
}

@media screen and (max-width: 991px) {
  .bg {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
/* 会社概要　*/
#section-company-profile {
  padding-top: min(5.35vw, 75px);
  margin-bottom: min(5.42vw, 76px);
  /* ここから追加 2023-08-18 */
  /* ここまで追加 2023-08-18 */
}
#section-company-profile .block h2 {
  margin-bottom: min(5.07vw, 71px);
  font-weight: bold;
}
#section-company-profile .block .right {
  padding-left: 50px;
}
#section-company-profile ul {
  list-style-type: none;
  padding: 0;
  font-size: 20px;
}
#section-company-profile ul li {
  line-height: 1.55;
  margin-bottom: 20px;
}
#section-company-profile ul li:last-child {
  margin-bottom: 0px;
}
#section-company-profile span {
  font-weight: bold;
  display: block;
  margin-bottom: 2px;
}
#section-company-profile .list-containers {
  display: flex;
}
@media screen and (max-width: 767px) {
  #section-company-profile .list-containers {
    display: contents;
  }
}
@media screen and (max-width: 767px) {
  #section-company-profile .list-container {
    margin-bottom: 20px;
  }
}
#section-company-profile .list-container:last-of-type {
  margin-left: min(10vw, 150px);
}
@media screen and (max-width: 991px) {
  #section-company-profile .list-container:last-of-type {
    margin-left: min(3vw, 37px);
  }
}
@media screen and (max-width: 767px) {
  #section-company-profile .list-container:last-of-type {
    margin-left: 0;
  }
}
#section-company-profile .partner-img {
  width: min(21.7vw, 305px);
  margin-left: -4%;
}
@media screen and (max-width: 767px) {
  #section-company-profile .partner-img {
    width: min(70%, 305px);
  }
}

@media screen and (max-width: 991px) {
  #section-company-profile .block .right {
    padding-left: 0px;
    padding-right: 20px;
  }
  #section-company-profile .block .left {
    margin-bottom: min(5.07vw, 71px);
  }
}
.company-bg {
  background-color: #f0eeea;
}

/* 問い合わせ　*/
#section-contact .contact-list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #section-contact .contact-list {
    flex-direction: column;
    justify-content: center;
  }
}
#section-contact ul li:first-child {
  margin-right: 10px;
}
#section-contact ul li:last-child {
  margin-left: 10px;
}
#section-contact ul li:last-child img {
  width: 32%;
}
#section-contact .box-form {
  margin-top: 5px;
}
#section-contact .box-form ul {
  width: 100%;
  list-style-type: none;
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
  margin-bottom: min(1.07vw, 15px);
  line-height: 1.8;
}
#section-contact .box-form ul li {
  float: left;
  margin: 0;
  padding: 0;
}
#section-contact .box-form ul li:first-child {
  width: min(15vw, 210px);
  font-size: clamp(16px, 1.42vw, 20px);
}
@media screen and (max-width: 767px) {
  #section-contact .box-form ul li:first-child {
    font-size: clamp(16px, 2.8vw, 21px);
    width: 100%;
  }
}
#section-contact .box-form ul li:last-child {
  width: min(22.7vw, 333px);
  height: min(2.57vw, 36px);
  height: fit-content;
}
@media screen and (max-width: 767px) {
  #section-contact .box-form ul li:last-child {
    width: 100%;
  }
}
#section-contact .box-form ul li input, #section-contact .box-form ul li textarea {
  width: 100% !important;
  background: #f5fbfc;
  border: 1px solid #ccc;
}
#section-contact .box-form ul li input {
  line-height: 1.5;
}
#section-contact .box-form ul li textarea {
  height: fit-content;
}
#section-contact .box-form .btn {
  width: 100%;
  padding: 0;
  height: fit-content;
}
#section-contact .box-form .btn span {
  font-size: clamp(16px, 1.78vw, 25px);
}
@media screen and (max-width: 767px) {
  #section-contact .box-form .btn span {
    font-size: clamp(16px, 3.25vw, 25px);
  }
}
#section-contact .box-form label {
  line-height: 1.5;
}
#section-contact .box-form .privacy-container {
  display: inline-block;
  font-size: clamp(16px, 1.28vw, 18px);
}
@media screen and (max-width: 767px) {
  #section-contact .box-form .privacy-container {
    font-size: clamp(16px, 2.8vw, 21px);
  }
}
#section-contact .box-form .privacy-check-text {
  margin-left: 0.5em;
}
#section-contact .box-form .privacy-check-text a {
  color: #ff6053;
}
#section-contact .box-form .required-text {
  margin-bottom: 20px;
  margin-bottom: min(1.42vw, 20px);
}
#section-contact .box-form .required-mark {
  color: #ff6053;
  margin-left: 5px;
  margin-right: 5px;
}
#section-contact.contact {
  border-radius: 8px;
  box-shadow: none;
  background-color: #fff;
  padding: min(1.78vw, 28px);
}
@media screen and (max-width: 767px) {
  #section-contact.contact {
    padding: 15px;
  }
}
#section-contact.contact-2nd {
  background-color: #f6f4ed;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #section-contact.contact-2nd {
    margin: 0;
  }
}

.breadcrumb {
  margin-top: 100px;
  padding: 0;
}
.breadcrumb ol {
  margin: 0;
  padding: 0;
  padding: 20px 0 20px 30px;
}

footer {
  margin-top: 1em;
  margin-bottom: 1em;
}
footer .left img {
  width: 120px;
}
footer .left address {
  font-style: normal;
  margin-top: 10px;
  margin-bottom: 20px;
}
footer .left p.privacy {
  display: block;
}
footer .left p.copy {
  font-size: 14px;
}
footer .left p.copy a {
  color: #000;
}
footer .right div.menu:first-child {
  margin-left: 20px;
}
footer .right.align-self-end {
  align-self: flex-end;
}

@media screen and (max-width: 991px) {
  footer .right {
    display: none;
    visibility: hidden;
  }
}
.header-container {
  background: #fff;
  background: linear-gradient(180deg, rgb(170, 148, 82) 72.4%, rgb(105, 92, 51) 72.4%);
  width: 100%;
  padding: 0px 0px 0px 0rem;
  height: min(6.21vw, 87px);
  top: 0;
  border-bottom: 1px solid #ccc;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .header-container {
    height: clamp(50px, 10.4vw, 80px);
  }
}
.header-container .header-contents {
  margin: 0 auto;
  width: 100%;
  max-width: 1400px;
  padding: 0 20px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}
.header-container .building {
  margin-bottom: -2.2%;
}
@media screen and (max-width: 767px) {
  .header-container .building {
    display: none;
  }
}
.header-container .header-title {
  float: left;
  text-align: center;
  width: calc(100% - 70px - 80px);
  padding-top: 2px;
  margin: 0 15px;
  font-weight: bold;
  font-size: clamp(13px, 1.82vw, 26px);
  height: fit-content;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .header-container .header-title {
    font-size: min(3.1vw, 26px);
    margin: 0;
  }
}

.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

.menu-trigger, .menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

.menu-trigger {
  position: relative;
  width: 32px;
  height: 24px;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #0d16a1;
  border-radius: 4px;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 10px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}

.burger-navi .overlay a {
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent;
}

.burger-navi .overlay {
  padding-top: 50px;
  position: fixed;
  top: 0;
  z-index: 9990;
  display: none;
  overflow: auto;
  width: 100%;
  height: 100%;
  background: #fff;
}

.burger-navi .menu-sp {
  width: 100%;
  margin: 0 auto;
  height: 100%;
}
.burger-navi .menu-sp .nav-sp {
  border-bottom: 1px solid #bbb;
  width: 100%;
  height: 10.5%;
  padding-left: 1.2rem;
  display: -webkit-flex;
  display: flex;
  -webkit-webkit-align-items: center;
  align-items: center;
}
.burger-navi .menu-sp .nav-sp div {
  flex: 2;
  white-space: nowrap;
}
.burger-navi .menu-sp .nav-sp .ar {
  font-size: 1.55rem;
  padding-right: 1.5rem;
  flex: 1;
}
.burger-navi .menu-sp a.btn-sp-contact {
  color: #fff;
  background: #0d16a1;
  width: 300px;
  margin: 0 auto;
  padding: 20px 0;
  display: block;
}
.burger-navi .menu-sp .nav-lang {
  padding-bottom: 1.5rem;
}

.burger-navi a {
  color: #000;
}

/* 下層サービスページ */
#service .main-header {
  padding: 74px 20px 0 20px;
  position: relative;
}
#service .main-header img {
  filter: brightness(70%);
}
#service h1 {
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  padding-top: 55px;
  transform: translate(-50%, -50%);
  margin: 0;
  color: white;
  text-shadow: 0px 0px 6px black;
  z-index: 1;
}
#service .section-service-subpage {
  padding-top: 120px;
  margin-top: -20px;
  margin-bottom: 140px;
}
#service .section-service-subpage p {
  margin-bottom: 15px;
}
#service .section-service-subpage p:last-child {
  margin-bottom: 0;
}
#service .section-service-subpage h2 {
  text-align: center;
  margin-top: 80px;
}
#service .section-service-subpage .box-service {
  margin-top: 40px;
  background: #f3f3f3;
  padding-bottom: 25px;
  border-radius: 5px;
}
#service .section-service-subpage .box-service h3 {
  font-size: 24px;
  background: #0d16a1;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  margin-bottom: 30px;
}
#service .section-service-subpage .box-service p {
  font-size: 16px;
  padding: 0 20px;
}
#service .section-service-subpage .box-service h4 {
  margin-top: 50px;
  font-size: 16px;
  padding-left: 20px;
  color: #0d16a1;
}
#service .section-service-subpage .box-service .square {
  margin-top: 10px;
  font-size: 15px;
  padding-left: 20px;
}
#service .section-service-subpage .box-service .square span {
  padding-right: 3px;
}
#service .section-service-subpage .box-service .square span.blue {
  color: #0d16a1;
}
#service .section-service-subpage .box-service img {
  padding: 0 20px;
  margin-top: 10px;
}
#service .section-service-subpage .box-service .btn {
  width: 300px;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 10px 0;
}

@media screen and (max-width: 991px) {
  #service .main-header {
    padding: 44px 0px 0px 0px;
  }
  #service h1 {
    font-size: 24px;
  }
  #service .section-service-subpage {
    padding-top: 80px;
    margin-bottom: 80px;
    padding-left: 15px;
    padding-right: 15px;
  }
  #service .section-service-subpage h2 {
    text-align: center;
    margin-top: 80px;
  }
  #service .section-service-subpage .box-service {
    padding-bottom: 0px;
  }
  #service .section-service-subpage .box-service p {
    padding: 0 10px;
  }
  #service .section-service-subpage .box-service h4 {
    margin-top: 40px;
    padding-left: 10px;
  }
  #service .section-service-subpage .box-service .square {
    margin-top: 5px;
    padding-left: 10px;
  }
  #service .section-service-subpage .box-service img {
    padding: 0 5px;
  }
}




/*投稿記事関連*/
#article h1 {
  font-weight: bold;
  line-height:1.35;
  font-size:30px;
  margin-top:30px;
}
#article h2 {
  margin-top:50px;
  margin-bottom:20px;
  font-weight: bold;
  line-height:1.35;
  font-size:26px;
}
#article p {
  margin-bottom:20px;
  font-size:18px;
}
#article .date {
  color:#aaa;
}
#article .thumb {
  margin-top:0px;
}
.related-post {
  margin-top:100px;
  margin-bottom:50px;
}
.related-post h3 {
  font-size:18px;
  line-height:1.55;
  margin-top:5px;
  font-weight: bold;
  width:100%!important;
}
.related-post .form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px; }
  .form-row > .col,
  .form-row > [class*="col-"] {
    padding-right: 10px;
    padding-left: 10px;
}
.related-post .box a {
    transition: opacity 0.3s; 
    opacity: 1;
}
.related-post .box a:hover {
    opacity: 0.5;  /* hover時のopacity */
}
#top .related-post h2 {
  text-align:center;
  font-weight:bold;
  font-size:30px;
  margin-bottom:20px;
}

@media screen and (max-width: 991px) {
  .single {
    padding:0 20px;
  }
  .related-post .box {
    margin-bottom:20px;
  }
  .breadcrumb {
    margin:0;
  }
}






/* 個人情報保護法ページ */
#privacy h1 {
  font-size: 30px;
  margin-top: 50px;
}
#privacy .privacy-policy {
  padding: 0 20px;
}

@media screen and (max-width: 991px) {
  #privacy h1 {
    padding-left: 20px;
  }
}
/*cookie control*/
.overlaycookie {
  display: none;
  position: fixed;
  z-index: 9998;
  height: 70px;
  width: 100%;
  color: #fff;
  bottom: 0;
}

.btn_area {
  position: absolute;
  color: #fff;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
  height: 100%;
  width: 100%;
}

.btn_area_child {
  width: 900px;
  margin: 0 auto;
  padding-top: 17px;
}

.btn_area_child div {
  float: left;
  line-height: 1.35;
  font-size: 15px;
}

.btn_area_child div a {
  color: #fff !important;
  text-decoration: underline;
}

.btn_area_child div:last-child {
  padding-left: 35px;
  margin-top: -8px;
}

.btn_area button {
  display: block;
  margin: 0 auto;
}

.btn_area button.btn {
  color: #fff;
  border-color: #fff;
  border: none;
  margin-top: 10px;
  padding: 5px 15px;
}

.btn_area button.btn:hover {
  text-decoration: underline;
}

@media (max-width: 576px) {
  .overlaycookie {
    height: 190px;
  }
  .btn_area_child {
    width: 100%;
    padding-top: 17px;
  }
  .btn_area_child div {
    float: none;
    line-height: 1.55;
    width: 100%;
    padding: 0 15px;
  }
  .btn_area_child div:last-child {
    padding-left: 0px;
    margin-top: 15px;
  }
  .btn_area button.btn {
    width: 250px;
  }
}/*# sourceMappingURL=common.css.map */