@charset "UTF-8";

.pad {
  padding: 0 max(32px, 5.2vw);
}

.navi-only {
  display: none;
}

@media screen and (max-width: 1024px) {
  .navi-only {
    display: block;
  }
}

#header,
.breadcrumbs,
.site-footer {
  display: none;
}

#content {
  padding-top: 0;
}

#landingPage {
  background: #fff;
}

.lpMain {
  position: relative;
  background-image: url("../images/lp/lp-main.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  aspect-ratio: 16/9;
}

@media screen and (max-width: 1024px) {
  .lpMain {
    aspect-ratio: 12/9;
    background-position: top right 25%;
  }
}

@media screen and (max-width: 768px) {
  .lpMain {
    aspect-ratio: 9/9;
    background-image: url("../images/lp/lp-main-sp.jpg");
  }
}

@media screen and (max-width: 500px) {
  .lpMain {
    aspect-ratio: 9/16;
  }
}

.lpMain__logo {
  position: absolute;
  top: 24px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.lpMain__logo img {
  width: 110px;
}

.lpMain__logo p {
  font-size: 1.5rem;
}

@media screen and (max-width: 1024px) {
  .lpMain__logo p span {
    display: inline-block;
    translate: -0.4em 0;
  }
}

.lpMain__copy {
  position: absolute;
  top: 47%;
  left: 26%;
}

@media screen and (max-width: 1024px) {
  .lpMain__copy {
    left: 20%;
  }
}

@media screen and (max-width: 768px) {
  .lpMain__copy {
    top: 45%;
    left: 10%;
  }
}

.lpMain__copy img {
  width: 18vw;
  min-width: 230px;
}

@media screen and (max-width: 768px) {
  .lpMain__copy img {
    width: 35vw;
    min-width: 210px;
  }
}

.lpMain__sub {
  position: absolute;
  top: 15%;
  right: 5%;
  /*フォントサイズをpxに戻す*/
  /*少数第３位で四捨五入*/
  font-size: clamp(1.5rem, 1.374rem + 0.35vw, 1.9rem);
  line-height: 2.4;
}

@media screen and (max-width: 768px) {
  .lpMain__sub {
    top: 44.5%;
    right: 5%;
  }
}

.lpMain__sub span {
  display: inline-block;
  border-bottom: solid 2px #000;
  line-height: 1.3;
  font-weight: 700;
}

.lpFixBtn {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(15px);
  border-top-left-radius: 24px;
  border: 1px solid #f0f0f0;
  padding: 24px;
  box-sizing: border-box;
  max-width: 330px;
}

@media screen and (max-width: 768px) {
  .lpFixBtn {
    padding: 6px 12px;
    border-radius: 0;
    width: 100%;
    max-width: 100%;
  }
}

.lpFixBtn p {
  /*フォントサイズをpxに戻す*/
  /*少数第３位で四捨五入*/
  font-size: 1.5rem;
  margin-bottom: 0.65em;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .lpFixBtn p {
    margin-bottom: 0;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .lpFixBtn p br {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .lpFixBtn__container__btn {
    display: flex;
    gap: 8px;
  }
}

.lpFixBtn__container__btn{
  vertical-align: middle;
}

.lpFixBtn__container__btn a {
  display: inline-block;
  /*フォントサイズをpxに戻す*/
  /*少数第３位で四捨五入*/
  font-size: 1.6rem;
  border: solid 1px #000;
  padding: 8px 20px;
  width: 100%;
  border-radius: 999px;
  box-sizing: border-box;
  text-align: center;
  margin-top: 8px;
}

@media screen and (max-width: 768px) {
  .lpFixBtn__container__btn a {
    margin-top: 4px;
    padding: 8px 5px;
    vertical-align: middle;
    font-size: 1.3rem;
    letter-spacing: 0.02em;
  }
}

.lpFixBtn__container__btn a:hover {
  background: #fff;
}

.lpAbout__container {
  background: url(../images/about1Main.jpg) no-repeat center;
}

.lpAbout__container__grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 0 10%;
}

@media screen and (max-width: 1024px) {
  .lpAbout__container__grid {
    gap: 0 6%;
  }
}

@media screen and (max-width: 768px) {
  .lpAbout__container__grid {
    grid-template-columns: 1fr;
  }
}

.lpAbout__container__grid__text {
  color: #fff;
  padding: 40% 0 40% 25%;
}

@media screen and (max-width: 1024px) {
  .lpAbout__container__grid__text {
    padding: 20% 0 20% 15%;
  }
}

@media screen and (max-width: 768px) {
  .lpAbout__container__grid__text {
    padding: 25% 10% 5%;
  }
}

.lpAbout__container__grid__text h4 {
  /*フォントサイズをpxに戻す*/
  /*少数第３位で四捨五入*/
  font-size: clamp(1.9rem, 0.925rem + 1.39vw, 3.6rem);
  line-height: 2;
  font-weight: 700;
}

.lpAbout__container__grid__text p {
  /*フォントサイズをpxに戻す*/
  /*少数第３位で四捨五入*/
  font-size: clamp(1.6rem, 1.537rem + 0.18vw, 1.8rem);
  line-height: 2.7;
  margin-top: 2.5em;
}

.lpAbout__container__grid__img {
  background: url(../images/about1MainMap.png) no-repeat top right;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .lpAbout__container__grid__img {
    width: 100%;
    aspect-ratio: 1.2/1;
  }
}

.lpMes {
  margin-top: max(140px, 20%);
}

.lpMes__text {
  text-align: center;
}

.lpMes__text p {
  color: #d2d2d2;
  /*フォントサイズをpxに戻す*/
  /*少数第３位で四捨五入*/
  font-size: clamp(1.8rem, 1.547rem + 0.7vw, 2.6rem);
  font-style: italic;
}

.lpMes__text h6 {
  /*フォントサイズをpxに戻す*/
  /*少数第３位で四捨五入*/
  font-size: clamp(2rem, 1.495rem + 1.4vw, 3.6rem);
  line-height: 2.9;
  font-weight: 700;
  margin-top: 1em;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 768px) {
  .lpMes__text h6 {
    letter-spacing: 0.12em;
  }
}

.lpMes__img {
  margin-top: max(110px, 13%);
}

.lpMes__img__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.lpMes__img__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lpQuality {
  margin-top: max(80px, 18%);
}

.lpQuality__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 5%;
}

@media screen and (max-width: 768px) {
  .lpQuality__grid {
    grid-template-columns: 1fr;
  }
}

.lpQuality__grid__text {
  padding: 10% 0 10% 20%;
}

@media screen and (max-width: 768px) {
  .lpQuality__grid__text {
    padding: 25% 10% 15%;
  }
}

.lpQuality__grid__text span {
  color: #d2d2d2;
  /*フォントサイズをpxに戻す*/
  /*少数第３位で四捨五入*/
  font-size: clamp(2rem, 1.747rem + 0.7vw, 2.8rem);
  font-style: italic;
  font-weight: 700;
}

.lpQuality__grid__text h4 {
  /*フォントサイズをpxに戻す*/
  /*少数第３位で四捨五入*/
  font-size: clamp(2.4rem, 2.021rem + 1.05vw, 3.6rem);
  font-weight: 700;
  margin-top: 0.3em;
  letter-spacing: 0.18em;
}

.lpQuality__grid__text p {
  /*フォントサイズをpxに戻す*/
  /*少数第３位で四捨五入*/
  font-size: clamp(1.6rem, 1.537rem + 0.18vw, 1.8rem);
  line-height: 2.1;
  margin-top: 2em;
  max-width: 540px;
}

.lpListTit {
  margin-top: max(100px, 23%);
  padding: 0 32px 48px;
}

@media screen and (max-width: 768px) {
  .lpListTit {
    padding: 0 12px 12px;
  }
}

.lpListTit img {
  width: 36vw;
  min-width: 260px;
}

/* SCSS */
.container {
  align-items: flex-start;
  background: #EFEFEF;
}

.col--left {
  position: relative;
  border-right: solid 1px #C7C7C7;
}

@media screen and (max-width: 1024px) {
  .col--left {
    border-right: none;
  }
}

.col__inner {
  position: absolute;
  width: 28vw;
  padding: 48px;
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .col__inner {
    position: relative;
    width: 100%;
  }
}

.col__inner__img {
  background: url(../images/expoHead-item.jpg) no-repeat center;
  background-size: cover;
  aspect-ratio: 1.3/1;
}

.col__inner p.eng {
  font-weight: 700;
  /*フォントサイズをpxに戻す*/
  /*少数第３位で四捨五入*/
  font-size: clamp(3rem, 2.558rem + 1.23vw, 4.4rem);
  margin-top: 0.2em;
}

.col__inner p.eng span {
  font-weight: 400;
  font-size: 0.8em;
  display: inline-block;
  translate: 0 -0.17em;
}

.col__inner p.tit {
  /*フォントサイズをpxに戻す*/
  /*少数第３位で四捨五入*/
  font-size: clamp(2rem, 1.842rem + 0.44vw, 2.5rem);
  font-weight: 700;
  margin-top: 0.5em;
  line-height: 1.75;
}

.col__inner p.txt {
  /*フォントサイズをpxに戻す*/
  /*少数第３位で四捨五入*/
  font-size: clamp(1.4rem, 1.337rem + 0.18vw, 1.6rem);
  margin-top: 1.3em;
  line-height: 1.75;
}

.col--right {
  margin-left: 28vw;
  box-sizing: border-box;
  padding: 48px 0 72px 48px;
  border-left: solid 1px #C7C7C7;
}

@media screen and (max-width: 1024px) {
  .col--right {
    margin-left: 0;
    padding-top: 16px;
  }
}

.col--right section:not(:first-child) {
  margin-top: 72px;
}

.col--right section h2 {
  /*フォントサイズをpxに戻す*/
  /*少数第３位で四捨五入*/
  font-size: clamp(2.5rem, 2.342rem + 0.44vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.4em;
}

.item-cat-box a {
  display: inline-block;
  aspect-ratio: 1/1;
  position: relative;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.item-cat-box a:hover img {
  scale: 1.06;
}

.item-cat-box__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.item-cat-box__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease-in-out;
}

.item-cat-box__text {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0) 100%);
  height: 50%;
  color: #fff;
  padding: 1.2em;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}

.item-cat-box__text p {
  /*フォントサイズをpxに戻す*/
  /*少数第３位で四捨五入*/
  font-size: clamp(1.7rem, 1.605rem + 0.26vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.2em;
}

.item-cat-box__text span::before {
  display: inline-block;
  content: "";
  width: 1.1em;
  height: 1em;
  background-image: url("../images/lp/icon-comp.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 0.4em;
  translate: 0 0.1em;
  opacity: 0.7;
}

.item-cat-block {
  position: relative;
}

.slider-button {
  position: absolute;
  top: 8px;
  right: 16px;
  z-index: 50;
}

.slider-button-prev,
.slider-button-next {
  display: inline-block;
  background: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}

.slider-button-prev::before,
.slider-button-next::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-top: solid 2px #000;
  transform-origin: 0 0;
}

.slider-button-prev::before {
  border-left: solid 2px #000;
  rotate: -45deg;
}

.slider-button-next::before {
  border-right: solid 2px #000;
  rotate: 45deg;
}

.lpFactory__container {
  background: #DFDFDF;
  padding: max(5%, 72px) 0;
}

.lpFactory__container__tit {
  display: flex;
  align-items: center;
  gap: 8px 4em;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.lpFactory__container__tit h4 {
  /*フォントサイズをpxに戻す*/
  /*少数第３位で四捨五入*/
  font-size: clamp(4rem, 3.874rem + 0.35vw, 4.4rem);
  font-weight: 700;
}

.lpFactory__container__tit p {
  /*フォントサイズをpxに戻す*/
  /*少数第３位で四捨五入*/
  font-size: clamp(1.5rem, 1.405rem + 0.26vw, 1.8rem);
  line-height: 1.5;
}

.lpFactory__container .company-cat-block {
  display: flex;
}

@media screen and (max-width: 768px) {
  .lpFactory__container .company-cat-block {
    display: block;
  }
}

.lpFactory__container .company-cat-block .company-cat-title {
  width: 30vw;
  max-width: 30vw;
  min-width: 30vw;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .lpFactory__container .company-cat-block .company-cat-title {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    padding: 0 32px;
    flex-direction: row;
    gap: 0 16px;
    margin-bottom: 16px;
  }
}

.lpFactory__container .company-cat-block .company-cat-title .exHeadImg {
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
  box-sizing: border-box;
  padding: 16px;
  width: 120px;
  aspect-ratio: 1/1;
}

.lpFactory__container .company-cat-block .company-cat-title .exHeadImg img {
  border-radius: 25%;
}

@media screen and (max-width: 768px) {
  .lpFactory__container .company-cat-block .company-cat-title .exHeadTxt {
    text-align: left;
  }
}

.lpFactory__container .company-cat-block .company-cat-title .exHeadTxt h1 {
  position: relative;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}

.lpFactory__container .company-cat-block .company-cat-title .exHeadTxt h1::after {
  display: inline-block;
  content: "";
  width: 1.5em;
  height: 2px;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .lpFactory__container .company-cat-block .company-cat-title .exHeadTxt h1::after {
    left: 0;
    transform: translateX(0);
  }
}

.lpFactory__container .company-cat-block .company-cat-title .exHeadTxt h1 p {
  /*フォントサイズをpxに戻す*/
  /*少数第３位で四捨五入*/
  font-size: clamp(1.5rem, 1.437rem + 0.18vw, 1.7rem);
}

.lpFactory__container .company-cat-block .company-cat-in {
  width: 70vw;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .lpFactory__container .company-cat-block .company-cat-in {
    padding-left: 32px;
    width: 100%;
  }
}

.lpFactory__container section:not(:first-child) {
  margin-top: 64px;
}

.lpFactory__container .swiper-slide {
  display: flex;
  height: 100%;
}

.lpFactory__container .company-box {
  background: #fff;
  padding: 16px 16px 24px;
}

.lpFactory__container .company-box__img {
  width: 100%;
  aspect-ratio: 1/1;
}

.lpFactory__container .company-box__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lpFactory__container .company-box__text {
  margin-top: 16px;
}

.lpFactory__container .company-box__text p {
  /*フォントサイズをpxに戻す*/
  /*少数第３位で四捨五入*/
  font-size: clamp(1.7rem, 1.637rem + 0.18vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0;
}

.lpFactory__container .company-box__text span {
  margin-top: 0.75em;
  /*フォントサイズをpxに戻す*/
  /*少数第３位で四捨五入*/
  font-size: clamp(1.4rem, 1.337rem + 0.18vw, 1.6rem);
  display: -webkit-box;
  /* flex ではなく box モデルで行数制御 */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  /* ここで表示したい行数を指定 */
  overflow: hidden;
  text-overflow: ellipsis;
  /* … にする */
}

.lpOfficial__container__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
}

@media screen and (max-width: 768px) {
  .lpOfficial__container__grid {
    grid-template-columns: 1fr;
  }
}

.lpOfficial__container__grid__img {
  background-image: url("../images/main-1-2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .lpOfficial__container__grid__img {
    width: 100%;
    aspect-ratio: 1.4/1;
  }
}

.lpOfficial__container__grid__text {
  background: #EFEFEF;
  text-align: center;
  padding: 10%;
  box-sizing: border-box;
}

.lpOfficial__container__grid__text p.tit {
  /*フォントサイズをpxに戻す*/
  /*少数第３位で四捨五入*/
  font-size: clamp(3.2rem, 2.821rem + 1.05vw, 4.4rem);
  font-weight: 700;
}

.lpOfficial__container__grid__text p.sub {
  /*フォントサイズをpxに戻す*/
  /*少数第３位で四捨五入*/
  font-size: clamp(1.4rem, 1.337rem + 0.18vw, 1.6rem);
}

.lpOfficial__container__grid__text__btn {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.lpOfficial__container__grid__text__btn div:last-child a {
  background: #FA7500;
}

.lpOfficial__container__grid__text__btn div:last-child a span::after {
  border-color: #FA7500;
}

.lpOfficial__container__grid__text__btn a {
  display: inline-block;
  box-sizing: border-box;
  /*フォントサイズをpxに戻す*/
  /*少数第３位で四捨五入*/
  font-size: clamp(1.9rem, 1.805rem + 0.26vw, 2.2rem);
  line-height: 1;
  color: #fff;
  padding: 0.75em 2.5em;
  background: #0087FA;
  transition: 0.25s ease-in-out;
  border-radius: 2px;
}

.lpOfficial__container__grid__text__btn a:hover {
  opacity: 0.6;
}

.lpOfficial__container__grid__text__btn a span {
  font-weight: 700;
  display: inline-block;
  position: relative;
  padding-right: 1.5em;
}

.lpOfficial__container__grid__text__btn a span::before,
.lpOfficial__container__grid__text__btn a span::after {
  display: inline-block;
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}

.lpOfficial__container__grid__text__btn a span::before {
  width: 1em;
  height: 1em;
  background: #fff;
  border-radius: 50%;
  right: 0;
}

.lpOfficial__container__grid__text__btn a span::after {
  width: 0.25em;
  height: 0.25em;
  border-top: solid 2px #0087FA;
  border-right: solid 2px #0087FA;
  right: 0.4em;
  rotate: 45deg;
}

.lpFooter__container {
  background: #fff;
  text-align: center;
  padding: max(6%, 64px) 0 24px;
}

.lpFooter__container__logo img {
  margin: 0 auto;
  max-width: 210px;
}

.lpFooter__container__link a {
  text-decoration: underline;
}

.lpFooter__container__link a:hover {
  opacity: 0.5;
}

.lpFooter__container p.sub {
  margin: 2em 0 3em;
}

.lpFooter__container p.copyright {
  font-size: 1.2rem;
  margin-top: 3em;
}

.container-store {
  background: white;
}

.container-store .col__inner__img {
  background-image: url("../../../../uploads/2025/08/00F093FD-4EB5-4A5C-BE01-03D8E11BCEAC.png");
}

.store-box__img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.store-box__img a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.store-box__img a:hover img {
  scale: 1.06;
}

.store-box__img a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease-in-out;
}

.store-box__text {
  margin-top: 16px;
}

.store-box__text p.tit {
  font-weight: 400;
  /*フォントサイズをpxに戻す*/
  /*少数第３位で四捨五入*/
  font-size: clamp(1.9rem, 1.742rem + 0.44vw, 2.4rem);
}

.store-box__text p.txt {
  /*フォントサイズをpxに戻す*/
  /*少数第３位で四捨五入*/
  font-size: clamp(1.4rem, 1.337rem + 0.18vw, 1.6rem);
  font-weight: 400;
  margin: 0.5em 0;
}

.store-box__text p.link a {
  font-weight: 400;
  color: #AAAAAA;
}

.store-box__text p.link a:hover {
  color: #000;
}

.store-box__text span {
  display: inline-block;
  margin-top: 8px;
  text-indent: -1.5em;
  padding-left: 1.5em;
}

.store-box__text span:before {
  display: inline-block;
  content: "";
  width: 1.1em;
  height: 1em;
  background-image: url("../images/lp/icon-comp.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 0.4em;
  translate: 0 0.1em;
  opacity: 0.3;
  filter: invert(1);
}

/*# sourceMappingURL=lp.css.map */