

#content.l-container,
.l-article {
  max-width: none !important;
  padding: 0 !important;
  padding: initial !important;
}

.l-content {
  margin-bottom: revert;
}
.sec__container.--mw1100 {
  width: 95%;
  max-width: calc(0px + 0px*2);
  max-width: calc(var(--container_size, 0px) + var(--swl-pad_container, 0px)*2);
  margin-right: auto;
  margin-left: auto;
  margin-inline: auto;
  padding-right: 1rem;
  padding-left: 1rem;

}



.sec {
  padding-top: calc(60 / 16 * 1rem);
  padding-bottom: calc(60 / 16 * 1rem);
}



/* ============
Button
=============== */
.button {
  display: flex;
  display: block flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1rem;
  gap: 0.5em;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: calc(16 / 16 * 1rem);
  text-align: center;
  transition: all 0.3s;
}


.button .arrow {
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 25px;
}

.buttonPrimary {
  max-width: 300px;
  margin-top: calc(40 / 16 * 1rem);
  margin-right: auto;
  margin-left: auto;
  background-color: #1c293f;
  background-color: var(--main-color);
  color: #fff;
}



.arrow {
  display: grid;
  grid-template-areas: "text arrow";
}

.arrow:before,
.arrow::after {
  content: "";
}

.arrow:before {
  grid-area: arrow;
  align-self: center;
  justify-self: self-end;
  width: 21px;
  height: 1px;
  background: #fff;
}

.arrow:after {
  grid-area: arrow;
  align-self: center;
  justify-self: self-end;
  width: 0;
  height: 0;
  transform: translate(0, -50%);
  border-top: 4px solid transparent;
  border-right: 0 solid transparent;
  border-bottom: 0 solid transparent;
  border-left: 6px solid #fff;
}

.arrow.--left:after {
  top: 1px;
  justify-self: self-start !important;
  transform: translateY(-50%) scale(-1, 1) !important;
}

.button.arrow::before {
  transition: margin-left 0.1s ease;
}

.button.arrow:focus-visible::before {
  margin-left: 3px;
}
.underline {
  background: linear-gradient(transparent 65%, var(--color) 65%);
}

.underline.--yellow {
  --color: #f5e149;
}

/* ============
heading
=============== */
.heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.heading .en {
  --min-size: 40;
  --max-size: 44;
  font-weight: 700;
  font-size: var(--ClampSize);
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
}

.heading .ja {
  --min-size: 16;
  --max-size: 18;
  font-weight: 700;
  font-size: var(--ClampSize);
  letter-spacing: 0.02em;
  text-align: center;
}

.heading.--icon::before {
  display: block;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.heading.--works::before {
  background-image: url(../img/icon-door.svg);
}

.heading.--voice::before {
  background-image: url(../img/icon-voice.svg);
}

.heading.--news::before {
  background-image: url(../img/icon-news.png);
}


/* ============
MV
=============== */
.p-mainVisual__slideTitle {
  text-align: center;
}

.p-mainVisual__slideTitle img {
  --min-size: 200;
  --max-size: 500;
  width: var(--ClampSize);
}

.p-mainVisual__inner {
  height: 50vw;
  max-height: 800px;
}

/* ============
Features
=============== */
.features__title {
  display: flex;
  display: block flex;
  flex-direction: column;
  align-items: center;
}

.features__title .mgothic {
  --min-size: 27;
  --max-size: 60;
  background: linear-gradient(transparent 60%, #f5e149 60%, #f5e149 80%, transparent 80%);
  color: #333;
  font-size: var(--ClampSize);
  letter-spacing: .1em;
}

.features__title .mgothic .--small {
  font-size: 0.7em;
}

.features__title .mgothic .--italic {
  display: inline-block;
  transform: rotate(19deg);
}

.features__title .diagonalLine {
  font-family: sans-serif;
  --min-size: 18;
  --max-size: 36;
  font-size: var(--ClampSize);
  letter-spacing: .1em;

}

.diagonalLine {
  display: flex;
  align-items: center;
  justify-content: center;
}

.diagonalLine::before,
.diagonalLine::after {
  width: 25px;
  height: 2px;
  background-color: #333;
  content: "";
}

.diagonalLine::before {
  margin-right: 5px;
  transform: rotate(50deg);
}

.diagonalLine::after {
  margin-left: 5px;
  transform: rotate(-50deg);
}

.features__title {
  text-align: center;
}

.features__list {
  /* display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: calc(30 / 16 * 1rem);

  @media (min-width: 800px) {
    gap: calc(40 / 16 * 1rem);
    width: 90%;
    justify-content: space-between;
  } */

  display: grid;
  /* 2列 */
  grid-template-rows: repeat(2, 1fr);
  /* grid-template-columns: repeat(); */
  grid-template-columns: 1fr 1fr;
  max-width: 850px;
  margin-top: calc(80 / 16 * 1rem);
  margin-right: auto;
  margin-left: auto;
  grid-gap: calc(10 / 16 * 1rem);
  gap: calc(10 / 16 * 1rem);
}

.features__item:first-child {
  grid-row: 1/ 2;
  /* flex-basis: 100%; */
  /* align-items: center; */
  /* justify-content: center; */
  grid-column: 1/ -1;
}

.features__item:nth-child(2) {
  grid-row: 2/-1;
  grid-column: 1/2;
}

.features__item:nth-child(3) {
  grid-row: 2/-1;
  grid-column: 2/-1;
}

.features__item {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  align-self: center;
  justify-content: center;
  justify-self: center;
  gap: calc(10 / 16 * 1rem);
}

.features__item p {
  font-weight: 700;
  text-align: center;
  --min-size: 16;
  --max-size: 18;
  font-size: var(--ClampSize);
}

.features__icon {
  display: flex;
  position: relative;
  align-items: center;
  align-items: center;
  justify-content: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #f8f4eb;
  background-color: var(--color-beige);
  line-height: 0;
}

.features__icon::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #f8f3eb;
  content: "";
}

.features__icon img {
  display: block;
  z-index: 1;
  position: relative;
  width: 70%;
  height: auto;
  margin: auto;

  /* @media (min-width: 600px) {
    width: 50%;
  } */
}

/* ============
Work
=============== */
.works {
  position: relative;
  background-color: #fbf7f2;
}

/* .works::before,
.works::after {
  content: "";
  position: absolute;
  z-index: 2;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
} 

.works::before {
  background-image: url(../img/deco-family.png);
  width: 200px;
  height: 160px;
  top: -4rem;
  left: max(5vw, 0rem);
  display: none;
  @media (768px <= width) {
    display: block;
  }
  @media (1200px <= width) {
    width: 230px;
    height: 180px;
    top: -4rem;
  }
}
.works::after {
  background-image: url(../img/deco-home.png);
  width: 200px;
  height: 130px;
  bottom: -2rem;
  right: max(5vw, 0rem);
  z-index: 3;
  @media (1200px <= width) {
    width: 330px;
    height: 117px;
    bottom: 2rem;
  }
} */

.works .sec__container.--mw1100 {
  position: relative;
}

.works .sec__container.--mw1100::before,
.works .sec__container.--mw1100::after {
  display: block;
  z-index: 2;
  position: absolute;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.works .sec__container.--mw1100::before {
  display: none;
}

.works .sec__container.--mw1100::after {

  display: none;
}


.works__content {
  margin-top: calc(40 / 16 * 1rem);
}

.works__list {
  display: grid;
  display: block grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  grid-gap: calc(30 / 16 * 1rem);
  gap: calc(30 / 16 * 1rem);
}

.works__item {
  display: grid;
  display: block grid;
  display: grid;
  grid-template-rows: subgrid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  background-color: #fff;
  grid-gap: 1rem;
  gap: 1rem;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}

.work__link {
  display: inherit;
  grid-template-rows: inherit;
  grid-row: inherit;
  padding-bottom: calc(30 / 16 * 1rem);
  color: inherit;
}

/* .work__link:focus-visible {
  opacity: 0.8;
} */


.work__title {
  display: -webkit-box;
  order: 3;
  -webkit-line-clamp: 2;
  padding-right: calc(30 / 16 * 1rem);
  padding-left: calc(30 / 16 * 1rem);
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.work__date {
  order: 2;
  padding-right: calc(30 / 16 * 1rem);
  padding-left: calc(30 / 16 * 1rem);
}


.work__thumb {
  display: grid;
  display: block grid;
  order: 1;
}

.work__thumb>* {
  grid-row: 1/ -1;
  grid-column: 1/ -1;
}

.work__customer {
  display: inline-block;
  z-index: 1;
  align-self: self-end;
  justify-self: self-start;
  padding: calc(2 / 16 * 1rem) calc(16 / 16 * 1rem);
  background-color: var(--color-pink);
  color: #fff;
}

.work__figure {
  aspect-ratio: 1.1 / 1;
  overflow: hidden;
  border-radius: 6px;
}

.work__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
  transition: transform 0.3s ease;
}
.work__link:focus-visible .work__figure img {
    transform: scale(1.1);
  }



/*===================
Voice
===================*/
.voice {
  background-color: #eceeef;
}

.voice__content {
  margin-top: calc(40 / 16 * 1rem);
}

.voice__contentWrapper {
  position: relative;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}


.voice__item {
  border-radius: 5px;
  background-color: #fff;
}

.swiper-slide {
  height: auto !important;

}

.voice__link {
  display: flex;
  display: block flex;
  flex-direction: column;
  height: 100%;
  padding: calc(30 / 16 * 1rem);
  gap: calc(20 / 16 * 1rem);
  color: inherit;
}

.voice__figure {
  order: -1;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 8px;
  background-color: #666;
}

.voice__name {
  order: 1;
  color: #8a6839;
  text-align: right;
}

.voice__text {
  flex: 1;
}
.swiper {
  padding-top: .5% !important;
  padding-bottom: .5% !important;
}
.swiper-button-next,
.swiper-button-prev {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  background-color: var(--main-color) !important;
  transition: opacity .3s ease;
}

.swiper-button-prev {
  left: -10% !important;
}

.swiper-button-next {
  right: -10% !important;
}



.swiper-button-prev.arrow,
.swiper-button-next.arrow {
  display: grid;
  grid-template-areas: "arrow";
}

.swiper-button-prev.arrow:before,
.swiper-button-prev.arrow:after,
.swiper-button-next.arrow:before,
.swiper-button-next.arrow:after {
  top: auto;
  top: initial;
  right: auto;
  right: initial;
  bottom: auto;
  bottom: initial;
  left: auto;
  left: initial;
  content: "";
}

.swiper-button-prev.arrow:before,
.swiper-button-next.arrow:before {
  grid-area: arrow;
  align-self: center;
  justify-self: self-end;
  width: 21px;
  height: 1px;
  background: #fff;
}

.swiper-button-prev.arrow:after,
.swiper-button-next.arrow:after {
  grid-area: arrow;
  align-self: center;
  justify-self: self-end;
  width: 0;
  height: 0;
  transform: translateY(-50%);
  border-top: 4px solid transparent;
  border-right: 0 solid transparent;
  border-bottom: 0 solid transparent;
  border-left: 6px solid #fff;
}

/*===================
Contact
===================*/
.contact {
  position: relative;
  background-image: url(../img/contact-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #666;
  background-color: rgba(#8a6839, 0.4);
  background-blend-mode: overlay;
}

/* .contact:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(138, 104, 57, 0.4);
} */

.contact__title {
  text-transform: uppercase;
  --min-size: 20;
  --max-size: 24;
  color: #fff;
  font-weight: 400;
  font-size: var(--ClampSize);
  letter-spacing: .2em;
  text-align: center;
}

.contact__text {
  color: #fff;
  letter-spacing: .1em;
  text-align: center;
}

.contact__text.--read {
  --min-size: 16;
  --max-size: 28;
  padding-bottom: calc(10 / 16 * 1rem);
  font-weight: 700;
  font-size: var(--ClampSize);
}

.contact__text.--okigaruni {
  --min-size: 26;
  --max-size: 40;
  margin-top: calc(20 / 16 * 1rem);
  font-weight: 700;
  font-size: var(--ClampSize);
}

.contact__buttonWrapper {
  display: grid;
  align-items: stretch;
  /* 高さを自動で揃える */
  grid-gap: calc(30 / 16 * 1rem);
  max-width: 900px;
  margin-top: calc(40 / 16 * 1rem);
  margin-right: auto;
  margin-left: auto;
  gap: calc(30 / 16 * 1rem);
}

.contact__buttonWrapper>p {
  display: grid;
  /* place-items: center; */
  text-align: center;
}

.contact__button {
  width: 100%;
  max-width: 400px;
  height: 100%;
  min-height: 90px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 50px;
  background-color: #fff;
  color: inherit;
  line-height: 1;
}

.contact__button.--phone {
  display: flex;
  flex-direction: column;
}

.contact__button.--phone .number {
  --min-size: 20;
  --max-size: 28;
  display: flex;
  align-items: center;
  gap: .5em;
  font-weight: 700;
  font-size: var(--ClampSize);
}

.contact__button.--phone .number img {
  max-width: 34px;
}

.contact__button.--mail {
  background-color: var(--color-pink);
  color: #fff;
  text-shadow: 0 3px 3px rgba(0,0,0,.12);
}
.contact__button.--mail img{
  filter: drop-shadow(0 3px 3px rgba(0,0,0,.12));
}

.fukidashi {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  /* border-bottom: 2px solid #333333; */
  background-color: transparent;
}

.fukidashi::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  /* background: linear-gradient(to bottom, blue 0%, blue 50%, transparent 50%, transparent 100%); */
  background-image: linear-gradient(90deg, #fff 55%, transparent 55%, transparent 60%, #fff 60%);
  content: "";
}

.fukidashi::after {
  position: absolute;
  bottom: -11px;
  left: 58.2%;
  width: 2px;
  height: 14px;
  /* transform: translateY(-50%); */
  rotate: -135deg;
  background-color: #fff;
  content: "";
}

/*===================
News
===================*/
/* .news {
  background-color: #fff;
} */
.news__list {
  margin-top: calc(40 / 16 * 1rem);
  padding: calc(20 / 16 * 1rem) calc(36 / 16 * 1rem);
  background-color: var(--color-beige);
}

.news__link {
  display: flex;
  display: block flex;
  gap: 1em;
  color: inherit;
}

.news__date {
  order: -1;
}

.news__item:not(:first-child) {
  border-top: 2px solid #ded9d2;
}

.news__item {
  padding-top: calc(20 / 16 * 1rem);
  padding-bottom: calc(20 / 16 * 1rem);
}

/*===================
Wave
===================*/
.swell-block-fullWide {
  padding: 0 !important;
  padding: initial !important;
}


.js-fadeIn {
  transform: translateY(10%);
  opacity: 0;
  transition-duration: .5s;
  transition-property: opacity transform;
  transition-timing-function: ease
}

.js-fadeIn-child {
  transform: translateY(10px);
  opacity: 0;
  transition: opacity .5s ease-out, transform .5s ease-out
}

.inview.js-fadeIn {
  transform: translateY(0);
  opacity: 1
}

.js-fadeIn-child.inview {
  transform: translateY(0);
  opacity: 1
}

@media (min-width: 500px) {

.features__icon {
    width: 200px;
    max-width: 200px;
    height: 300px;
    max-height: 200px
}
}

@media (min-width: 768px) {
.sec__container.--mw1100 {
    padding-right: 0;
    padding-right: initial;
    padding-left: 0;
    padding-left: initial

}



.sec {
    padding-top: calc(100 / 16 * 1rem);
    padding-bottom: calc(100 / 16 * 1rem)
}
.button {
    padding: 1rem 2rem;
    gap: 1em
}

.buttonPrimary {
    margin-top: calc(60 / 16 * 1rem)
}

.diagonalLine::before,
.diagonalLine::after {
    width: 40px
}

.features__list {
    /* 3列 */
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    /* 自動で高さ調整 */
    gap: calc(30 / 16 * 1rem)
}

.features__item:first-child {
    grid-row: 1;
    grid-column: 1
    /* 左 */
}

.features__item:nth-child(2) {
    grid-row: 1;
    grid-column: 2
    /* 左 */
}

.features__item:nth-child(3) {
    grid-row: 1;

    grid-column: 3
    /* 左 */
}

.works .sec__container.--mw1100::before {
    display: block;
    top: -11rem;
    left: max(-6vw, -6rem);
    width: 230px;
    height: 180px;
    background-image: url(../img/deco-family.png)
}

.works .sec__container.--mw1100::after {
    display: block;
    z-index: 3;
    right: max(-8vw, -10rem);
    bottom: -5rem;

    width: 280px;
    height: 117px;
    background-image: url(../img/deco-home.png)
}

.swiper-button-prev {
    left: -6% !important
}

.swiper-button-next {
    right: -6% !important
}

.contact__text.--okigaruni {
    --min-size: 32;
    --max-size: 48;
    font-size: var(--ClampSize)
}

.contact__buttonWrapper {
    grid-template-columns: 1fr 1fr;
    margin-top: calc(60 / 16 * 1rem)
}

.contact__button {
    max-width: none
}

.fukidashi::before {
    background-image: linear-gradient(90deg, #fff 58%, transparent 58%, transparent 60%, #fff 60%)
}

.fukidashi::after {
    left: 59.2%
}
.news__list {
    margin-top: calc(60 / 16 * 1rem)
}
}

@media (min-width: 800px) {

.features__item {
    gap: calc(16 / 16 * 1rem)
}
}

@media (min-width: 1000px) {

.works__list {
    grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr))
}
}

@media (min-width: 1400px) {

.voice__contentWrapper {
    width: 100%
}
.swiper-button-next,
.swiper-button-prev {
    width: 50px !important;
    height: 50px !important
}

.swiper-button-prev {
    left: -5% !important
}

.swiper-button-next {
    right: -5% !important
}


.arrow.--left:after {
    top: 1px !important
}
}

@media (max-width: 690px) {

.works__item.sp-hide {
    display: none
}
}

@media (any-hover: hover) {
  .button.arrow:hover::before {
    margin-left: 3px;
  }
    .work__link:hover .work__figure img {
      transform: scale(1.1);
    }
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    opacity: .8;
  }
}