@charset "UTF-8";
/* 背景のロゴを固定表示 */
#l-main--front {
  position: relative;
}
#l-main--front::before {
  content: "";
  position: fixed;
  inset: 0;
  width: 40%;
  height: 100%;
  margin: auto;
  background: url("../img/front/logo.png") no-repeat 50% 50%;
  background-size: contain;
  opacity: 0.3;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  #l-main--front::before {
    width: 60%;
  }
}

.row {
  display: flex;
  align-items: flex-start;
}

.row-between {
  justify-content: space-between;
}

.row-wrap {
  flex-wrap: wrap;
}

.row-reverse {
  flex-direction: row-reverse;
}

.col-2 {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .col-2 {
    width: 100%;
  }
}
.col-3 {
  width: 33.33%;
}

@media screen and (max-width: 767px) {
  .col-3 {
    width: 100%;
  }
}
.col-4 {
  width: 25%;
}

@media screen and (max-width: 767px) {
  .col-4 {
    width: 100%;
  }
}
.text-center {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .text-left-sp {
    text-align: left;
  }
}
.tel {
  text-decoration: none;
  color: inherit;
}

.tel:hover {
  opacity: 1;
}

/* 2, Contents */
/* 基本 */
.l-container {
  margin-inline: auto;
  position: relative;
  width: 92.1875%;
  max-width: 1080px;
}
@media screen and (max-width: 767px) {
  .l-container {
    padding: 0 20px;
    width: 100%;
  }
}

/*　ヘッダー用　*/
.l-container--header {
  width: 1900px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0 0 35px;
}

@media screen and (max-width: 1050px) {
  .l-container--header {
    width: 100%;
    padding: 0 15px;
  }
}
.l-container-large {
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* 小さい幅 */
.l-container-small {
  width: 1040px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ほぼ画面いっぱい */
.l-container-wide {
  width: 1920px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

/* Btn */
.c-btn01 {
  display: inline-block;
  position: relative;
  padding: 13px 62px 10px 0px;
  transition: all 0.2s linear;
  box-sizing: border-box;
  line-height: 1.4;
  text-decoration: none !important;
  font-family: "EB Garamond", serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2.24px;
  text-align: left;
  color: #a52a2a;
}
@media screen and (max-width: 767px) {
  .c-btn01 {
    padding: 13px 54px 10px 0px;
    font-size: 13px;
  }
}
.c-btn01::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 42px;
  height: 42px;
  margin: 0;
  opacity: 0.1;
  background-color: #a52a2a;
  border-radius: 50px;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .c-btn01::before {
    right: 1px;
    top: 3px;
    width: 38px;
    height: 38px;
  }
}
.c-btn01::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 15px;
  width: 10px;
  height: 8px;
  background: url("../img/right-arrow.png") no-repeat 50% 50%;
  background-size: cover;
  transition: 0.2s;
}
.c-btn01--white {
  color: #fff;
}
.c-btn01--white::before {
  opacity: 0.8;
  background-color: #fff;
}
.c-btn01:hover::before {
  right: -4px;
}
.c-btn01:hover::after {
  right: 11px;
}

.c-btn01 > span {
  display: inline-block;
  position: relative;
  top: 9.5px;
  left: 15px;
  width: 34px;
  height: 34px;
  background: url("../img/btn01.png") no-repeat 100% 100%;
  background-size: cover;
}

.c-btn02 {
  display: inline-block;
  position: relative;
  padding: 13px 55px 12px 40px;
  border: 2px solid #a52a2a;
  border-radius: 12px;
  color: #a52a2a;
  background-color: #fff;
  transition: all 0.2s linear;
  box-sizing: border-box;
  line-height: 1.4;
  text-decoration: none !important;
  font-size: 18px;
}
.c-btn02::after {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  right: 18px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #a52a2a;
  border-right: 2px solid #a52a2a;
  transform: rotate(45deg);
}

.c-btn02:hover {
  opacity: 0.7;
}

.c-btn03 {
  display: inline-block;
  position: relative;
  padding: 5px 10px 5px 0px;
  transition: all 0.2s linear;
  box-sizing: border-box;
  line-height: 1.4;
  text-align: center;
  font-size: 14px;
  text-decoration: none !important;
  color: #a52a2a;
}

.c-btn03 > span {
  display: inline-block;
  position: relative;
  top: 5px;
  left: 5px;
  width: 20px;
  height: 20px;
  background: url("../img/btn01.png") no-repeat 100% 100%;
  background-size: cover;
}

.c-common-contact01 {
  position: relative;
  padding: 75px 0px 86px;
}
@media screen and (max-width: 767px) {
  .c-common-contact01 {
    margin: 0 -20px;
    padding: 30px 20px 30px;
  }
}
.c-common-contact01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  background-color: #c5c5c5;
  translate: -50% 0;
}
.c-common-contact01__inner {
  position: relative;
  width: 800px;
  max-width: 100%;
  margin-inline: auto;
  padding: 10px;
  background-color: #fff;
  text-align: center;
  z-index: 2;
}
.c-common-contact01__title {
  margin-bottom: 20px !important;
  padding-top: 20px;
  font-size: 20px;
  font-weight: bold;
}
.c-common-contact01__text {
  margin-bottom: 20px !important;
  font-size: 16px;
  line-height: 1.44;
}
.c-common-contact01__btn a {
  display: block;
  width: 260px;
  margin-inline: auto;
  padding: 14px 10px 19px 10px;
  background-color: #a62c2c;
  color: #fff !important;
  line-height: 1;
  transition: 0.2s;
}
.c-common-contact01__btn a:hover {
  opacity: 0.8;
  text-decoration: none;
}
.c-common-contact01__btn a > img {
  position: relative;
  top: 4px;
  margin-right: 8px;
}
.c-common-contact01__bottom {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 25px;
  padding: 22px 34px 25px 10px;
  background-color: #efefef;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-common-contact01__bottom {
    justify-content: center;
    margin: 0 -10px 0px -10px;
    padding: 22px 20px 25px 20px;
  }
}
.c-common-contact01__lead {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  line-height: 1 !important;
  margin: 0 !important;
  font-size: 16px !important;
}
.c-common-contact01__lead > img {
  position: relative;
  bottom: -1px;
  margin-right: 5px;
}
.c-common-contact01__tel {
  position: relative;
  top: 2px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 30px !important;
  font-weight: bold;
  color: #17400b;
  margin: 0 !important;
  line-height: 1 !important;
}
.c-common-contact01__time {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px !important;
  margin: 0 !important;
  line-height: 1 !important;
}

.c-common-contact02 {
  position: relative;
  padding: 75px 0px 86px;
}
@media screen and (max-width: 767px) {
  .c-common-contact02 {
    padding: 55px 0px 66px;
  }
}
.c-common-contact02::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  background-color: #e1e1e1;
  translate: -50% 0;
}
.c-common-contact02__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 800px;
  max-width: 100%;
  margin-inline: auto;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .c-common-contact02__inner {
    grid-template-columns: 1fr;
  }
}
.c-common-contact02__left {
  text-align: center;
}
.c-common-contact02__title {
  margin-bottom: 5px !important;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  color: #17400b;
}
.c-common-contact02__tel {
  margin-bottom: 20px !important;
  font-size: 45px !important;
  font-weight: bold;
  line-height: 0.62 !important;
  text-align: center;
  color: #17400b;
}
@media screen and (max-width: 767px) {
  .c-common-contact02__tel {
    font-size: 36px !important;
  }
}
.c-common-contact02__text {
  margin-bottom: 20px !important;
  font-size: 16px;
  line-height: 1.44;
}
@media screen and (max-width: 767px) {
  .c-common-contact02__text {
    font-size: 14px;
  }
}
.c-common-contact02__time {
  font-size: 16px !important;
  margin: 0 !important;
  line-height: 1 !important;
}
.c-common-contact02__btn {
  margin-bottom: 0 !important;
}
.c-common-contact02__btn a {
  display: block;
  width: 300px;
  margin-inline: auto;
  padding: 17px 10px 18px 10px;
  background-color: #7d1419;
  color: #fff !important;
  line-height: 1;
  text-align: center;
  transition: 0.2s;
}
.c-common-contact02__btn a:hover {
  opacity: 0.8;
  text-decoration: none;
}
.c-common-contact02__btn a > img {
  position: relative;
  top: 4px;
  margin-right: 8px;
}

.c-page-heading {
  padding: 0 0 1px 20px;
  font-size: 20px !important;
  font-weight: bold;
  border-left: 3px solid #7D1419;
}
@media screen and (max-width: 767px) {
  .c-page-heading {
    font-size: 18px !important;
  }
}

.c-page-subHeading {
  position: relative;
  width: 600px;
  padding: 0 10px 10px 10px;
  font-size: 20px !important;
  font-weight: bold;
  border-bottom: 2px solid #333;
}
@media screen and (max-width: 767px) {
  .c-page-subHeading {
    font-size: 18px !important;
  }
}
.c-page-subHeading::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 62px;
  height: 2px;
  background-color: #7D1419;
}

.l-primary .p-page-heading {
  margin-bottom: 40px;
  text-align: left;
}
.l-primary .p-page-heading__big {
  margin-bottom: 0px;
  font-family: "EB Garamond", serif;
  font-size: 40px;
  color: #17400B;
}
@media screen and (max-width: 767px) {
  .l-primary .p-page-heading__big {
    font-size: 30px;
  }
}
.l-primary .p-page-heading__small {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .l-primary .p-page-heading__small {
    font-size: 16px;
  }
}

.company .l-primary .p-page-heading {
  text-align: center;
}