@charset "utf-8";


body {
  opacity: 0;
}


.header__content::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 200px;
  background : linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  pointer-events: none;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  .header__content::after {
    height: 100px;
  }
}


/*  l-loading
--------------------------------------------------*/
.l-kv {
  position: relative;
  width: 100%;
  height: 100lvh;
}
.kv-slide {
  position: absolute;
  inset: 0;
  margin: auto;
}
.kv-slide__box {
  width: 100%;
  height: 100%;
}
.kv-slide__item {
  position: relative;
  transition-property: opacity;
  overflow: hidden;
}
.kv-slide__item__photo {
  position: relative;
  left: -80px;
  width: calc(100% + 160px);
  height: 100%;
}
.kv-slide__item.swiper-slide-next .kv-slide__item__photo {
  transform: translate(80px);
}
.kv-slide__item.swiper-slide-active .kv-slide__item__photo {
  animation: 6s linear slidein;
}
.kv-slide__item__photo img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
}
.kv-ttl {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-inline: auto;
  width: min(90%, 1500px);
  align-items: baseline;
  gap: 18px;
  transition: opacity 1s cubic-bezier(.115,.405,.24,1) .6s;
  opacity: 1;
  z-index: 1;
}
.kv-ttl div {
  width: auto;
  height: 68px;
  height: clamp(34px, calc(68 / 1200 * 100vw), 68px);
}
.kv-ttl img {
  width: auto;
  height: 100%;
}
.kv-ttl em {
  font-size: clamp(16px, calc(24 / 1200 * 100vw), 24px);
  font-weight: 400;
  letter-spacing: .05em;
  color: #fff;
}
@keyframes slidein{ 
  0%{ transform: translate(80px); } 
  100%{ transform: translate(0); } 
}
@media screen and (max-width: 480px){
  .kv-ttl {
    width: calc(320 / 380 * 100%);
  }
  .kv-ttl div {
    height: 38px;
  }
  .kv-ttl em {
    position: relative;
    font-size: 15px;
    width: 100%;
    padding-left: 30px;
    box-sizing: border-box;
  }
  .kv-ttl em::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 1px;
    background: #fff;
  }
}





/*  l-introduction
--------------------------------------------------*/
.l-introduction {
  position: relative;
  width: 100%;
  padding-block: 190px;
  box-sizing: border-box;
  z-index: 1;
}
.introduction-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.introduction-photo img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
}
.introduction-inner {
  gap: 60px;
}
.introduction-ttl {
  width: auto;
  height: 28px;
}
.introduction-ttl img {
  width: auto;
  height: 100%;
}
.introduction-detail {
  width: min(100%,643px);
}
.introduction-detail__heading {
  font-size: clamp(28px, calc(40 / 1200 * 100vw), 40px);
  line-height: 1.75;
  letter-spacing: .1em;
  color: #ffffff;
  margin-top: -.5em;
  margin-bottom: 70px;
}
.introduction-detail__heading rt {
  font-size: 12px;
  letter-spacing: .1em;
  text-align: left;
  padding-bottom: 2px;
  box-sizing: border-box;
}
.introduction-detail__desc {
  font-size: clamp(16px, calc(18 / 1200 * 100vw), 18px);
  line-height: 2.222222222222222;
  letter-spacing: .05em;
  color: #ffffff;
}
.introduction-detail__desc p + p {
  margin-top: 30px;
}
@media screen and (max-width: 1100px) and (min-width: 481px){
  .introduction-inner {
     width: 80%; 
  }
}
@media screen and (max-width: 480px){
  .l-introduction {
    padding-block: 100px 95px;
  }
  .introduction-inner {
    gap: 40px;
    flex-direction: column;
  }
  .introduction-ttl {
    width: auto;
    height: 22px;
  }
  .introduction-detail {
    width: 100%;
  }
  .introduction-detail__heading {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 30px;
  }
  .introduction-detail__heading rt {
    font-size: 8px;
  }
  .introduction-detail__desc {
    font-size: 16px;
    line-height: 2.25;
  }
  .introduction-detail__desc p + p {
    margin-top: 22px;
  }
}




/*  service-nav
--------------------------------------------------*/
.service-nav {
  position: relative;
  width: 100%;
  padding-block: 120px 145px;
  box-sizing: border-box;
  z-index: 1;
}
.service-nav__inner {
  max-width: 1340px;
}
.service-nav__item {
  position: relative;
  width: calc(400 / 1340 * 100%);
  padding-block: calc(35 / 1340 * 100%) calc(50 / 1340 * 100%);
  box-sizing: border-box;
  background: #333333;
}
.service-nav__item__detail {
  width: 100%;
  text-align: center;
}
.service-nav__item__detail__num {
  width: calc(96 / 400 * 100%);
  margin-inline: auto;
}
.service-nav__item__detail__heading {
  font-size: clamp(18px, calc(28 / 1500 * 100vw), 28px);
  letter-spacing: .1em;
  color: #fff;
  line-height: 1.5;
  margin-top: 10px;
}
.service-nav__item__detail__pickup {
  width: calc(179 / 400 * 100%);
  margin-inline: auto;
}
.service-nav__item__arrow {
  position: absolute;
  inset: auto 0 0;
  margin-inline: auto;
  translate: 0 50%;
  width: calc(50 / 400 * 100%);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: solid 1px #ad9a65;
  background-color: #ad9a65;
  z-index: 1;
}
.service-nav__item__arrow img {
  width: 100%;
  filter: brightness(0) invert(1);
}
@media (any-hover: hover){
  .service-nav__item__arrow {
    transition: background-color .3s linear;
  }
  .service-nav__item:hover .service-nav__item__arrow {
    background-color: #fff;
  }
  .service-nav__item:hover .service-nav__item__arrow img {
    filter: brightness(1) invert(0);
  }
}
@media screen and (max-width: 480px){
  .service-nav {
    padding-block: 50px 55px;
  }
  .service-nav__inner {
    max-width: 560px;
  }
  .service-nav__item {
    width: 100%;
    height: 90px;
    padding-block: 0 10px;
  }
  .service-nav__item + .service-nav__item {
    margin-top: 30px;
  }
  .service-nav__item__detail__num {
    width: 70px;
  }
  .service-nav__item__detail__heading {
    font-size: 18px;
    margin-top: 5px;
  }
  .service-nav__item__detail__pickup {
    width: 120px;
  }
  .service-nav__item__arrow {
    width: 30px;
  }
}




/*  l-point1
--------------------------------------------------*/
.l-point1 {
  position: relative;
  padding-bottom: 200px;
}
.point1-head {
  position: relative;
  overflow: clip;
}
.point1-head__box {
  position: relative;
  width: min(95%,1710px);
  margin-inline: 0 auto;
  padding-block: 160px 130px;
  box-sizing: border-box;
}
.point1-head__box::before {
  content: '';
  position: absolute;
  left: calc(620 / 1710 * 100%);
  top: 0;
  width: min(100%,1300px);
  height: 107%;
  background: url('../img/bg_texture.jpg') no-repeat center center/cover;
  z-index: -1;
}
.point1-head__detail {
  width: calc(680 / 1710 * 100%);
}
.point1-head__detail__num {
  width: min(90%,144px);
  margin-bottom: 30px;
}
.point1-head__detail__heading {
  position: relative;
  font-size: clamp(26px, calc(40 / 1500 * 100vw), 40px);
  line-height: 1.5;
  letter-spacing: .1em;
  padding-bottom: 60px;
  margin-bottom: 60px;
  box-sizing: border-box;
}
.point1-head__detail__heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(90%,60px);
  height: 1px;
  background: #beaf85;
}
.point1-head__detail__desc {
  font-size: clamp(21px, calc(32 / 1500 * 100vw), 32px);
  line-height: 1.8125;
  letter-spacing: .05em;
  color: #867d59;
}
.point1-head__photo {
  width: calc(910 / 1710 * 100%);
}
.point1-container {
  width: 100%;
}
.point1-article {
  padding-bottom: 120px;
  box-sizing: border-box;
}
.point1-article__item {
  position: relative;
  width: 100%;
}
.point1-article__item + .point1-article__item {
  margin-top: 100px;
}
.point1-article__item__head {
  margin-bottom: 50px;
  gap: 0 50px;
}
.point1-article__item__head__heading {
  position: relative;
  font-size: clamp(21px, calc(32 / 1500 * 100vw), 32px);
  line-height: 1;
  letter-spacing: .05em;
  padding-left: 22px;
  box-sizing: border-box;
}
.point1-article__item__head__heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: .1em;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom,#5e3625 0%,#5e3625 33.33%,#2a5e3c 33.33%,#2a5e3c 66.66%,#2a335e 66.66%,#2a335e 100%);
}
.point1-article__item__head__desc {
  font-size: clamp(12px, calc(18 / 1500 * 100vw), 18px);
  line-height: 2.222222222222222;
  letter-spacing: .05em;
  flex: auto;
}
.point1-article__item__list {
  width: 100%;
}
.point1-article__item__list__box {
  width: calc(100% / 3);
}
.point1-article__item__list__box--orange {
  background: #f5f3f2;
}
.point1-article__item__list__box--green {
  background: #f2f5f3;
}
.point1-article__item__list__box--blue {
  background: #f2f3f5;
}
.point1-article__item__list__box--pink {
  background: #f7f2f4;
}
.point1-article__item__list__box__heading {
  font-size: clamp(21px, calc(32 / 1500 * 100vw), 32px);
  line-height: 1.8125;
  letter-spacing: .05em;
  color: #fff;
  text-align: center;
  padding-block: 10px 12px;
  box-sizing: border-box;
}
.point1-article__item__list__box--orange .point1-article__item__list__box__heading {
  background: #5e3625;
}
.point1-article__item__list__box--green .point1-article__item__list__box__heading {
  background: #2a5e3c;
}
.point1-article__item__list__box--blue .point1-article__item__list__box__heading {
  background: #2a335e;
}
.point1-article__item__list__box--pink .point1-article__item__list__box__heading {
  background: #7d2e46;
}
.point1-article__item__list__box__detail {
  padding: calc(60 / 500 * 100%);
  box-sizing: border-box;
}
.point1-article__item__list__box__detail__photo {
  margin-bottom: 25px;
}
.point1-article__item__list__box__detail__txt__heading {
  font-size: clamp(16px, calc(22 / 1500 * 100vw), 22px);
  line-height: 1.75;
  letter-spacing: .05em;
  margin-bottom: 17px;
}
.point1-article__item__list__box--orange .point1-article__item__list__box__detail__txt__heading {
  color: #5e3625;
}
.point1-article__item__list__box--green .point1-article__item__list__box__detail__txt__heading {
  color: #2a5e3c;
}
.point1-article__item__list__box--blue .point1-article__item__list__box__detail__txt__heading {
  color: #2a335e;
}
.point1-article__item__list__box--pink .point1-article__item__list__box__detail__txt__heading {
  color: #7d2e46;
}
.point1-article__item__list__box__detail__txt__desc {
  font-size: clamp(12px, calc(16 / 1500 * 100vw), 16px);
  line-height: 1.75;
  letter-spacing: .05em;
  text-align: justify;
}
.point1-article__item__list__box__detail__txt__desc span {
  display: block;
  font-size: 0.75em;
  color: #666666;
  margin-top: 1em;
}

/* point1-article__item2 */
.point1-article__item2 .point1-article__item__list__box {
  width: 100%;
}
.point1-article__item2 .point1-article__item__list__box__heading {
  width: min(100%,500px);
  margin-inline: auto;
}
.point1-article__item2 .point1-article__item__list__box__detail {
  padding: calc(60 / 1500 * 100%);
  box-sizing: border-box;
}
.point1-article__item2 .point1-article__item__list__box__detail__enclosure {
  width: calc(650 / 1380 * 100%);
}
.point1-article__item2 .point1-article__item__list__box__detail__photo {
  width: calc(300 / 650 * 100%);
}
.point1-article__item2 .point1-article__item__list__box__detail__txt {
  width: calc(310 / 650 * 100%);
}
@media screen and (max-width: 768px){
  .l-point1 {
    padding-bottom: 80px;
  }
  .point1-head {
    padding-bottom: 60px;
  }
  .point1-head__box {
    width: 100%;
    margin-inline: auto;
    margin-bottom: 60px;
    padding-block: 70px 0;
    background: url('../img/bg_texture.jpg') no-repeat center center/cover;
  }
  .point1-head__box::before {
    display: none;
  }
  .point1-head__detail {
    width: calc(320 / 375 * 100%);
    margin-inline: auto;
    margin-bottom: 50px;
  }
  .point1-head__detail__num {
    width: 94px;
    margin-bottom: 20px;
  }
  .point1-head__detail__heading {
    font-size: 28px;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .point1-head__detail__desc {
    font-size: 22px;
  }
  .point1-head__photo {
    width: 100%;
  }
  .point1-article {
    padding-bottom: 0;
  }
  .point1-article__item + .point1-article__item {
    margin-top: 60px;
  }
  .point1-article__item__head {
    margin-bottom: 35px;
    gap: 20px 0;
  }
  .point1-article__item__head__heading {
    font-size: 22px;
    padding-left: 15px;
  }
  .point1-article__item__head__heading::before {
    top: .1em;
  }
  .point1-article__item__head__desc {
    font-size: 16px;
    flex: 100%;
  }
  .point1-article__item__list__box {
    width: 100%;
  }
  .point1-article__item__list__box + .point1-article__item__list__box {
    margin-top: 30px;
  }
  .point1-article__item__list__box__heading {
    font-size: 22px;
    padding-block: 5px 8px;
  }
  .point1-article__item__list__box__detail {
    padding: calc(30 / 375 * 100%) calc(30 / 375 * 100%) calc(45 / 375 * 100%);
  }
  .point1-article__item__list__box__detail__photo {
    margin-bottom: 20px;
  }
  .point1-article__item__list__box__detail__txt__heading {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .point1-article__item__list__box__detail__txt__heading br {
    display: none !important;
  }
  .point1-article__item__list__box__detail__txt__desc {
    font-size: 14px;
    line-height: 2.28571429;
    text-align: justify;
  }

  /* point1-article__item2 */
  .point1-article__item2 .point1-article__item__list__box {
    width: 100%;
  }
  .point1-article__item2 .point1-article__item__list__box__heading {
    width: 100%;
  }
  .point1-article__item2 .point1-article__item__list__box__detail {
    padding: calc(30 / 375 * 100%) calc(30 / 375 * 100%) calc(45 / 375 * 100%);
  }
  .point1-article__item2 .point1-article__item__list__box__detail__enclosure {
    width: 100%;
  }
  .point1-article__item2 .point1-article__item__list__box__detail__enclosure + .point1-article__item__list__box__detail__enclosure {
    margin-top: 35px;
  }
  .point1-article__item2 .point1-article__item__list__box__detail__photo {
    width: 100%;
  }
  .point1-article__item2 .point1-article__item__list__box__detail__txt {
    width: 100%;
  }
}




/*  point1-cooperate
--------------------------------------------------*/
.point1-cooperate {
  padding-block: 120px;
  box-sizing: border-box;
  background: #f5f5f5;
}
.point1-cooperate__inner {
  background: #ffffff;
  padding: 85px 100px;
  box-sizing: border-box;
}
.point1-cooperate__heading {
  font-size: clamp(20px, calc(32 / 1500 * 100vw), 32px);
  line-height: 1.75;
  letter-spacing: .05em;
  text-align: center;
  margin-bottom: 30px;
}
.point1-cooperate__desc {
  font-size: clamp(12px, calc(18 / 1500 * 100vw), 18px);
  line-height: 2.222222222222222;
  letter-spacing: .05em;
  text-align: center;
  margin-bottom: 45px;
}
.point1-cooperate__photo {
  width: 100%;
}
.point1-cooperate__tips {
  width: 100%;
  margin-top: 40px;
}
.point1-cooperate__tips__item {
  width: calc(630 / 1300 * 100%);
}
.point1-cooperate__tips__item__txt {
  font-size: clamp(14px, calc(20 / 1500 * 100vw), 20px);
  line-height: 1;
  letter-spacing: .05em;
  text-align: center;
  width: calc(182 / 630 * 100%);
  padding-block: 15px;
  background: #e2e2e2;
}
.point1-cooperate__tips__item__txt:nth-of-type(1) {
  width: calc(242 / 630 * 100%);
  color: #ffffff;
  background: #707070;
}
.point1-cooperate__note {
  font-size: clamp(12px, calc(16 / 1500 * 100vw), 16px);
  line-height: 1.75;
  letter-spacing: .05em;
  margin-top: 25px;
}
.point1-cooperate__note span {
  font-size: 0.75em;
  color: #666666;
  padding-left: 1em;
}
@media screen and (max-width: 768px){
  .point1-cooperate {
    padding-block: 60px;
  }
  .point1-cooperate__inner {
    padding: calc(40 / 375 * 100%) calc(30 / 375 * 100%) calc(45 / 375 * 100%);
  }
  .point1-cooperate__heading {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .point1-cooperate__desc {
    font-size: 16px;
    line-height: 2.125;
    margin-bottom: 30px;
  }
  .point1-cooperate__photo {
    width: 100%;
  }
  .point1-cooperate__photo img {
    max-width: 1000px;
    width: 1000px;
  }
  .point1-cooperate__tips {
    margin-top: 25px;
  }
  .point1-cooperate__tips__item {
    width: 100%;
    gap: 4px;
  }
  .point1-cooperate__tips__item + .point1-cooperate__tips__item {
    margin-top: 20px;
  }
  .point1-cooperate__tips__item__txt {
    font-size: 16px;
    width: calc((100% - 4px) / 2);
    padding-block: 9px 11px;
  }
  .point1-cooperate__tips__item__txt:nth-of-type(1) {
    width: 100%;
  }
  .point1-cooperate__note {
    font-size: 14px;
    line-height: 2.28571429;
    text-align: justify;
    margin-top: 20px;
  }
  .point1-cooperate__note span {
    display: block;
    padding-left: 0;
    margin-top: 1em;
  }
}



/*  point1-feature
--------------------------------------------------*/
.point1-feature {
  padding-top: 120px;
}
.point1-feature__list {
  width: 100%;
  margin-inline: auto;
  gap: 70px 0;
}
.point1-feature__list__item {
  width: calc(700 / 1500 * 100%);
}
.point1-feature__list__item__photo {
  width: calc(300 / 700 * 100%);
}
.point1-feature__list__item__detail {
  width: calc(360 / 700 * 100%);
}
.point1-feature__list__item__detail__heading {
  font-size: clamp(16px, calc(24 / 1500 * 100vw), 24px);
  line-height: 1.75;
  letter-spacing: .05em;
  color: #867d59;
  margin-top: -.5em;
  margin-bottom: 15px;
}
.point1-feature__list__item__detail__desc {
  font-size: clamp(12px, calc(16 / 1500 * 100vw), 16px);
  line-height: 2.125;
  letter-spacing: .05em;
  text-align: justify;
}
.point1-feature__tips {
  margin-top: 100px;
  padding: calc(100 / 1500 * 100%);
  background: #f5f5f5;
  border: solid 1px #d6d6d6;
}
.point1-feature__tips__detail {
  width: calc(620 / 1300 * 100%);
}
.point1-feature__tips__detail__heading {
  font-size: clamp(18px, calc(28 / 1500 * 100vw), 28px);
  line-height: 1.78571429;
  letter-spacing: .05em;
  color: #867d59;
  margin-bottom: 20px;
}
.point1-feature__tips__detail__desc {
  font-size: clamp(12px, calc(18 / 1500 * 100vw), 18px);
  line-height: 2.222222222222222;
  letter-spacing: .05em;
  text-align: justify;
}
.point1-feature__tips__photo {
  width: calc(600 / 1300 * 100%);
}
@media screen and (max-width: 1675px){
  .point1-feature__list {
    width: 90%;
  }
}
@media screen and (max-width: 768px){
  .point1-feature {
    padding-top: 60px;
  }
  .point1-feature__list {
    width: 100%;
    gap: 35px 0;
  }
  .point1-feature__list__item {
    width: 100%;
  }
  .point1-feature__list__item__photo {
    width: 100%;
    margin-bottom: 20px;
  }
  .point1-feature__list__item__detail {
    width: 100%;
  }
  .point1-feature__list__item__detail__heading {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 10px;
  }
  .point1-feature__list__item__detail__desc {
    font-size: 14px;
    line-height: 2.28571429;
    text-align: justify;
  }
  .point1-feature__tips {
    margin-top: 40px;
    padding: calc(35 / 375 * 100%) calc(30 / 375 * 100%) calc(45 / 375 * 100%);
  }
  .point1-feature__tips__detail {
    width: 100%;
    margin-bottom: 30px;
  }
  .point1-feature__tips__detail__heading {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .point1-feature__tips__detail__desc {
    font-size: 14px;
    line-height: 2.28571429;
  }
  .point1-feature__tips__photo {
    width: 100%;
  }
}




/*  l-point2
--------------------------------------------------*/
.l-point2 {
  position: relative;
  padding-bottom: 200px;
}
.point2-head {
  position: relative;
  overflow: clip;
}
.point2-head__box {
  position: relative;
  width: min(95%,1710px);
  margin-inline: auto 0;
  padding-block: 160px 200px;
  box-sizing: border-box;
}
.point2-head__box::before {
  content: '';
  position: absolute;
  right: calc(620 / 1710 * 100%);
  top: 0;
  width: min(100%,1300px);
  height: 110%;
  background: url('../img/bg_texture.jpg') no-repeat center center/cover;
  z-index: -1;
}
.point2-head__detail {
  width: calc(680 / 1710 * 100%);
}
.point2-head__detail__num {
  width: min(90%,144px);
  margin-bottom: 30px;
}
.point2-head__detail__heading {
  position: relative;
  font-size: clamp(26px, calc(40 / 1500 * 100vw), 40px);
  line-height: 1.5;
  letter-spacing: .1em;
  padding-bottom: 60px;
  margin-bottom: 60px;
  box-sizing: border-box;
}
.point2-head__detail__heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(90%,60px);
  height: 1px;
  background: #beaf85;
}
.point2-head__detail__desc {
  font-size: clamp(21px, calc(32 / 1500 * 100vw), 32px);
  line-height: 1.8125;
  letter-spacing: .05em;
  color: #867d59;
}
.point2-head__detail__explain {
  font-size: clamp(12px, calc(18 / 1500 * 100vw), 18px);
  line-height: 2.222222222222222;
  letter-spacing: .05em;
  text-align: justify;
  margin-top: 30px;
}
.point2-head__photo {
  width: calc(910 / 1710 * 100%);
}
.point2-container {
  position: relative;
  margin-top: -60px;
}
.point2-list {
  width: 100%;
  margin-inline: auto;
}
.point2-list__item {
  width: calc(450 / 1500 * 100%);
}
.point2-list__item__photo {
  margin-bottom: 25px;
}
.point2-list__item__detail {
  width: 100%;
}
.point2-list__item__detail__heading {
  font-size: clamp(16px, calc(22 / 1500 * 100vw), 22px);
  line-height: 1.75;
  letter-spacing: .05em;
  color: #867d59;
  margin-bottom: 17px;
}
.point2-list__item__detail__desc {
  font-size: clamp(12px, calc(16 / 1500 * 100vw), 16px);
  line-height: 1.75;
  letter-spacing: .05em;
}
.point2-list__item__detail__desc span {
  display: block;
  font-size: 0.75em;
  color: #666666;
  margin-top: 1em;
}
@media screen and (max-width: 1675px){
  .point2-list {
    width: 90%;
  }
}
@media screen and (max-width: 768px){
  .l-point2 {
    padding-bottom: 80px;
  }
  .point2-head {
    padding-bottom: 60px;
  }
  .point2-head__box {
    width: 100%;
    margin-inline: auto;
    /*margin-bottom: 60px;*/
    padding-block: 70px 0;
    background: url('../img/bg_texture.jpg') no-repeat center center/cover;
  }
  .point2-head__box::before {
    display: none;
  }
  .point2-head__detail {
    width: calc(320 / 375 * 100%);
    margin-inline: auto;
    margin-bottom: 50px;
  }
  .point2-head__detail__num {
    width: 94px;
    margin-bottom: 20px;
  }
  .point2-head__detail__heading {
    font-size: 28px;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .point2-head__detail__desc {
    font-size: 22px;
  }
  .point2-head__detail__explain {
    font-size: 14px;
    line-height: 2.28571429;
    margin-top: 15px;
  }
  .point2-head__photo {
    width: 100%;
  }
  .point2-container {
    margin-top: 0;
  }
  .point2-list {
    width: 100%;
  }
  .point2-list__item {
    width: 100%;
  }
  .point2-list__item + .point2-list__item {
    margin-top: 35px;
  }
  .point2-list__item__photo {
    margin-bottom: 20px;
  }
  .point2-list__item__detail__heading {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .point2-list__item__detail__desc {
    font-size: 14px;
    line-height: 2.28571429;
  }
}




/*  l-pickup
--------------------------------------------------*/
.l-pickup {
  position: relative;
  padding-block: 200px 160px;
  background: #3d3d3d;
}
.l-pickup::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: min(100%,1620px);
  aspect-ratio: 1620 / 835;
  background: url('../img/bg_pickup.png') no-repeat left top/cover;
  z-index: 0;
}
.pickup-inner {
  z-index: 1;
}
.pickup-head {
  gap: 40px 70px;
  padding-bottom: 100px;
  margin-bottom: 100px;
  border-bottom: solid 1px rgba(255, 255, 255, .2);
}
.pickup-head__ttl {
  width: min(90%,235px);
  margin-bottom: 30px;
  margin-right: 40px;
}
.pickup-head__detail__heading {
  font-size: clamp(21px, calc(32 / 1500 * 100vw), 32px);
  line-height: 1.8125;
  letter-spacing: .05em;
  color: #ad9a65;
  margin-top: -.5em;
  flex: auto;
}
.pickup-head__detail__desc {
  font-size: clamp(12px, calc(18 / 1500 * 100vw), 18px);
  line-height: 2.222222222222222;
  letter-spacing: .05em;
  color: #ffffff;
  margin-top: -.5em;
  flex: auto;
}

.pickup-consult {
  margin-bottom: 120px;
}
.pickup-consult__detail {
  width: calc(700 / 1500 * 100%);
}
.pickup-consult__detail__heading {
  font-size: clamp(18px, calc(28 / 1500 * 100vw), 28px);
  line-height: 1.78571429;
  letter-spacing: .05em;
  color: #ad9a65;
  margin-bottom: 20px;
}
.pickup-consult__detail__desc {
  font-size: clamp(12px, calc(18 / 1500 * 100vw), 18px);
  line-height: 2.222222222222222;
  letter-spacing: .05em;
  color: #fff;
  text-align: justify;
}
.pickup-consult__detail__service {
  margin-top: 38px;
}
.pickup-consult__detail__service__heading {
  position: relative;
  font-size: clamp(14px, calc(20 / 1500 * 100vw), 20px);
  line-height: 1;
  letter-spacing: .05em;
  color: #beaf85;
  padding-left: 45px;
  margin-bottom: 30px;
}
.pickup-consult__detail__service__heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 1px;
  background: #beaf85;
}
.pickup-consult__detail__service__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  align-items: stretch;
  gap: 0.93333333vw;  
}
.pickup-consult__detail__service__list__item {
  font-size: clamp(12px, calc(18 / 1500 * 100vw), 18px);
  line-height: 1.2;
  letter-spacing: .05em;
  color: #beaf85;
  text-align: center;
  border: solid 1px rgba(190, 175, 133, .5);
  padding-block: 12px 14px;
}
.pickup-consult__photo {
  width: calc(700 / 1500 * 100%);
}

.pickup-report {
  padding: calc(100 / 1500 * 100%);
  background: #474747;
}
.pickup-report__detail {
  width: calc(620 / 1300 * 100%);
}
.pickup-report__detail__ttl {
  position: relative;
  font-size: clamp(14px, calc(20 / 1500 * 100vw), 20px);
  line-height: 1;
  letter-spacing: .05em;
  color: #beaf85;
  padding-left: 45px;
  margin-bottom: 30px;
}
.pickup-report__detail__ttl::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 1px;
  background: #beaf85;
}
.pickup-report__detail__heading {
  font-size: clamp(18px, calc(28 / 1500 * 100vw), 28px);
  line-height: 1.78571429;
  letter-spacing: .05em;
  color: #ad9a65;
  margin-bottom: 20px;
}
.pickup-report__detail__desc {
  font-size: clamp(12px, calc(18 / 1500 * 100vw), 18px);
  line-height: 2.222222222222222;
  letter-spacing: .05em;
  color: #fff;
  text-align: justify;
}
.pickup-report__photo {
  width: calc(620 / 1300 * 100%);
}
.pickup-report__photo__note {
  font-size: clamp(12px, calc(16 / 1500 * 100vw), 16px);
  line-height: 1.75;
  letter-spacing: .05em;
  color: #beaf85;
  margin-top: 1em;
}
@media screen and (max-width: 768px){
  .l-pickup {
    padding-block: 80px 80px;
  }
  .l-pickup::before {
    width: min(70%,1620px);
  }
  .pickup-head {
    display: block;
    gap: 0;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
  .pickup-head__ttl {
    width: 136px;
    margin-bottom: 40px;
    margin-right: 0;
  }
  .pickup-head__detail__heading {
    font-size: 22px;
    margin-top: 0;
    flex: 100%;
  }
  .pickup-head__detail__desc {
    font-size: 14px;
    line-height: 2.28571429;
    text-align: justify;
    margin-top: 15px;
    flex: 100%;
  }

  .pickup-consult {
    margin-bottom: 60px;
  }
  .pickup-consult__detail {
    width: 100%;
    margin-bottom: 35px;
  }
  .pickup-consult__detail__heading {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .pickup-consult__detail__desc {
    font-size: 14px;
    line-height: 2.28571429;
  }
  .pickup-consult__detail__service {
    margin-top: 35px;
  }
  .pickup-consult__detail__service__heading {
    font-size: 18px;
    padding-left: 30px;
    margin-bottom: 20px;
  }
  .pickup-consult__detail__service__heading::before {
    width: 20px;
  }
  .pickup-consult__detail__service__list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 4px;  
  }
  .pickup-consult__detail__service__list__item {
    font-size: 14px;
    letter-spacing: 0;
    padding-block: 9px 11px;
  }
  .pickup-consult__photo {
    width: 100%;
  }

  .pickup-report {
    padding: calc(45 / 375 * 100%) calc(30 / 375 * 100%) calc(45 / 375 * 100%);
  }
  .pickup-report__detail {
    width: 100%;
    margin-bottom: 35px;
  }
  .pickup-report__detail__ttl {
    font-size: 18px;
    padding-left: 30px;
    margin-bottom: 20px;
  }
  .pickup-report__detail__ttl::before {
    width: 20px;
  }
  .pickup-report__detail__heading {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .pickup-report__detail__desc {
    font-size: 14px;
    line-height: 2.28571429;
  }
  .pickup-report__photo {
    width: 100%;
  }
  .pickup-report__photo__note {
    font-size: 14px;
  }
}





/*  contact - quoted - トップ引用
--------------------------------------------------*/
.contact {
  padding-block: 130px 150px;
  box-sizing: border-box;
}
.contact-copy {
  font-size: clamp(28px, calc(40 / 1500 * 100vw), 40px);
  line-height: 1.75;
  letter-spacing: .1em;
  margin-bottom: 100px;
}
.contact-inner {
  max-width: 1350px;
}
.contact-photo {
  width: calc(523 / 1350 * 100%);
}
.contact-contents {
  width: calc(800 / 1350 * 100%);
}
.contact__heading {
  font-size: clamp(14px, calc(20 / 1500 * 100vw), 20px);
  line-height: 1.888888889;
  text-wrap: balance;
}
.content__link {
  display: block;
  width: fit-content;
  margin-inline: auto;
  margin-top: 20px;
}
.content__link__tel {
  color: rgba(var(--color-brown), .9);
  font-size: clamp(50px, calc(80 / 1500 * 100vw), 80px);
  letter-spacing: -.04em;
}
.content__link__tel span {
  font-family: "Zen Old Mincho", serif;
  font-size: 70%;
  vertical-align: .2em;
}
.content__link__tel::before {
  content: "";
  display: inline-block;
  vertical-align: bottom;
  width: calc(88 / 80 * 1em);
  height: calc(46 / 80 * 1em);
  margin-right: calc(3 / 80 * 1em);
  background: currentColor;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="52.995" height="27.6" viewBox="0 0 52.995 27.6"><path d="M47.777,24.992c0,1.431,1.166,2.608,2.605,2.608s2.612-1.177,2.612-2.608c0-1.447-1.172-2.612-2.612-2.612s-2.605,1.166-2.605,2.612M48.074,24.992c0-1.272,1.037-2.311,2.309-2.311s2.307,1.04,2.307,2.311-1.035,2.307-2.307,2.307-2.309-1.04-2.309-2.307"/><path d="M51.651,26.674h-.5l-1.011-1.562h-.447v1.562h-.4v-3.444h.975c.327,0,.586.084.776.234.19.159.285.387.285.668,0,.208-.069.4-.208.557-.137.164-.332.276-.568.336l1.097,1.648M49.694,24.763h.506c.212,0,.385-.06.515-.17l.201-.434c0-.387-.237-.582-.708-.582h-.515v1.186Z"/><path d="M28.267,15.716c0,3.616,3.063,5.364,5.534,5.364s5.532-1.747,5.532-5.364c0-2.8-2.993-5.045-5.532-6.383-2.541,1.338-5.534,3.583-5.534,6.383Z"/><path d="M5.777,15.778c0,3.614,3.063,5.366,5.534,5.366s5.534-1.752,5.534-5.366c0-2.805-2.995-5.041-5.534-6.386-2.541,1.345-5.534,3.581-5.534,6.386Z"/><path d="M0,0v27.259h45.011V0H0ZM45.002,6.628c-2.701,0-5.99.469-8.562,1.508,2.78,1.725,5.472,4.342,5.472,7.642,0,4.364-3.946,7.691-8.288,7.691s-8.146-3.327-8.146-7.691c0-3.3,2.555-5.917,5.335-7.642-2.577-1.04-5.609-1.508-8.314-1.508s-5.738.469-8.312,1.508c2.785,1.725,5.337,4.342,5.337,7.642,0,4.364-3.809,7.691-8.153,7.691s-8.343-3.327-8.343-7.691c0-3.3,2.752-5.917,5.532-7.642C5.988,7.096,2.705,6.628.005,6.628v-2.384c4.572,0,8.617,1.059,11.367,2.384,2.756-1.325,6.558-2.384,11.128-2.384s8.374,1.059,11.126,2.384c2.756-1.325,6.808-2.384,11.378-2.384v2.384Z"/></svg>') no-repeat center/100% auto;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="52.995" height="27.6" viewBox="0 0 52.995 27.6"><path d="M47.777,24.992c0,1.431,1.166,2.608,2.605,2.608s2.612-1.177,2.612-2.608c0-1.447-1.172-2.612-2.612-2.612s-2.605,1.166-2.605,2.612M48.074,24.992c0-1.272,1.037-2.311,2.309-2.311s2.307,1.04,2.307,2.311-1.035,2.307-2.307,2.307-2.309-1.04-2.309-2.307"/><path d="M51.651,26.674h-.5l-1.011-1.562h-.447v1.562h-.4v-3.444h.975c.327,0,.586.084.776.234.19.159.285.387.285.668,0,.208-.069.4-.208.557-.137.164-.332.276-.568.336l1.097,1.648M49.694,24.763h.506c.212,0,.385-.06.515-.17l.201-.434c0-.387-.237-.582-.708-.582h-.515v1.186Z"/><path d="M28.267,15.716c0,3.616,3.063,5.364,5.534,5.364s5.532-1.747,5.532-5.364c0-2.8-2.993-5.045-5.532-6.383-2.541,1.338-5.534,3.583-5.534,6.383Z"/><path d="M5.777,15.778c0,3.614,3.063,5.366,5.534,5.366s5.534-1.752,5.534-5.366c0-2.805-2.995-5.041-5.534-6.386-2.541,1.345-5.534,3.581-5.534,6.386Z"/><path d="M0,0v27.259h45.011V0H0ZM45.002,6.628c-2.701,0-5.99.469-8.562,1.508,2.78,1.725,5.472,4.342,5.472,7.642,0,4.364-3.946,7.691-8.288,7.691s-8.146-3.327-8.146-7.691c0-3.3,2.555-5.917,5.335-7.642-2.577-1.04-5.609-1.508-8.314-1.508s-5.738.469-8.312,1.508c2.785,1.725,5.337,4.342,5.337,7.642,0,4.364-3.809,7.691-8.153,7.691s-8.343-3.327-8.343-7.691c0-3.3,2.752-5.917,5.532-7.642C5.988,7.096,2.705,6.628.005,6.628v-2.384c4.572,0,8.617,1.059,11.367,2.384,2.756-1.325,6.558-2.384,11.128-2.384s8.374,1.059,11.126,2.384c2.756-1.325,6.808-2.384,11.378-2.384v2.384Z"/></svg>') no-repeat center/100% auto;
}
.contact__caution {
  font-size: clamp(11px, calc(14 / 1500 * 100vw), 14px);
  margin-top: 30px;
}
.contact__cv-wrap {
  margin-top: 70px;
  gap: 30px;
}
.contact__cv {
  flex: 0 1 clamp(220px, calc(320 / 1500 * 100vw), 320px);
  height: 60px;
}
.contact__cv a {
  font-size: clamp(14px, calc(20 / 1500 * 100vw), 20px);
}
.contact-line {
  max-width: 1100px;
  margin-top: 150px;
}
@media screen and (max-width: 1100px){
  .contact-photo {
    width: min(100%, 562px);
    margin: 0 auto 50px;
  }
  .contact-contents {
    width: min(100%, 800px);
    margin-inline: auto;
  }
}
@media screen and (max-width: 480px){
  .contact {
    padding-block: 80px;
  }
  .contact-copy {
    font-size: 18px;
    line-height: 1.888888888888889;
    margin-bottom: 40px;
  }
  .contact-inner {
    display: block;
    max-width: 560px;
  }
  .contact-photo {
    width: calc(300 / 320 * 100%);
    margin: 0 auto 40px;
  }
  .contact-contents {
    width: min(100%,800px);
  }
  .contact__heading {
    font-size: 18px;
    line-height: 1.888888889;
    margin-block: calc((1.888888889 - 1) / 2 * -1em);
  }
  .content__link__tel {
    font-size: 48px;
  }
  .contact__caution {
    font-size: 12px;
    line-height: 1.833333333;
    margin-top: calc(20px - ((1.833333333 - 1) / 2 * 1em));
    margin-bottom: calc((1.833333333 - 1) / 2 * -1em);
  }
  .contact__cv-wrap {
    margin-top: 30px;
    gap: 20px 0;
  }
  .contact__cv {
    flex: 1 0 100%;
  }
  .contact__cv a {
    font-size: 18px;
  }
  .contact__cv.btn-request a::before {
    width: calc(30 / 26 * 1.3em);
    height: calc(36 / 26 * 1.3em);
    margin-right: calc(18 / 26 * 1.3em);
  }
  .contact__cv.btn-reserve a::before {
    width: calc(30 / 26 * 1.3em);
    height: calc(22 / 26 * 1.3em);
    margin-right: calc(16 / 26 * 1.3em);
  }
  .contact-line {
    max-width: 560px;
    margin-top: 60px;
  }
}