@charset "UTF-8";
/*=======================================
	breakpoint
=======================================*/
/*=======================================
	hover
=======================================*/
/*=======================================
	中央配置
=======================================*/
/*=======================================
	可変レスポンシブ
=======================================*/
/* PC */
/* TB */
/* SP */
/*=======================================
	ブラウザ別
=======================================*/
/* Safari */
/* Firefox */
/*-------------------------
- main_ttl
- container
- side_nav
- main_contents
-------------------------*/
/*=======================================
　main_ttl
=======================================*/
.main_ttl {
  background: center/cover url(../img/product/main.jpg) no-repeat;
}
@media screen and (max-width: 768px) {
  .main_ttl {
    background: center/cover url(../img/product/main_sp.jpg) no-repeat;
  }
}

/*=======================================
　container
=======================================*/
.container .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 58px;
  padding-right: 100px;
}
@media screen and (max-width: 768px) {
  .container .inner {
    padding-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 0;
  }
}

/*=======================================
　side_nav
=======================================*/
@media screen and (max-width: 768px) {
  .side_nav {
    display: block;
    padding-left: 0;
    position: static;
    padding: 20px 45px 20px 20px;
    border: 1px solid var(--main_navy);
    border-radius: 15px;
  }
}
@media screen and (max-width: 768px) {
  .side_nav ul {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 16px 43px;
    margin-inline: auto;
    padding: 0;
  }
}
.side_nav ul li {
  width: 122px;
}
@media screen and (max-width: 768px) {
  .side_nav ul li {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    position: relative;
  }
  .side_nav ul li::after {
    content: "";
    display: block;
    width: 10px;
    height: 5px;
    background: center/cover url(../img/product/arrow.svg) no-repeat;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    top: 55%;
    right: -25px;
  }
  .side_nav ul li a {
    color: var(--main_navy);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
  }
}

/*=======================================
	main_contents
=======================================*/
.sec_img-box {
  display: grid;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .sec_img-box {
    gap: 30px 9px;
  }
}
.sec_img-box:not(:last-of-type) {
  margin-bottom: 40px;
}
.sec_img-box.bll {
  grid-template-columns: 48.515% 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .sec_img-box.bll {
    grid-template-columns: 1fr 1fr;
  }
  .sec_img-box.bll figure:nth-of-type(1) {
    grid-column: 1/-1;
  }
}
.sec_img-box.bb {
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .sec_img-box.bb {
    grid-template-columns: 1fr;
  }
}
.sec_img-box.llll {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .sec_img-box.llll {
    grid-template-columns: 1fr 1fr;
  }
}
.sec_img-box.llb {
  grid-template-columns: 1fr 1fr 48.515%;
}
@media screen and (max-width: 768px) {
  .sec_img-box.llb {
    grid-template-columns: 1fr 1fr;
  }
  .sec_img-box.llb figure:nth-of-type(3) {
    grid-column: 1/-1;
  }
}
.sec_img-box figure img {
  height: 19.8019802cqi;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .sec_img-box figure img {
    height: auto;
  }
}
.sec_img-box figure figcaption {
  font-size: clamp(13px, 1.125vw, 17px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.444;
}
@media screen and (max-width: 768px) {
  .sec_img-box figure figcaption {
    font-size: 15px;
  }
}/*# sourceMappingURL=product.css.map */