.pageTtl {
  margin-bottom: 40px;
}
.pageTtl .en {
  font-size: 56px;
}
@media screen and (min-width: 768px) {
  .pageTtl {
    margin-bottom: 100px;
  }
  .pageTtl .en {
    font-size: 120px;
  }
}

.secIntro {
  padding-bottom: 96px;
}
@media screen and (min-width: 768px) {
  .secIntro {
    padding-bottom: 120px;
  }
}
.secIntro__distBlk {
  width: 100%;
  padding-bottom: 96px;
}
.secIntro__distBlk_inner {
  max-width: 994px;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 32px;
}
.secIntro__distBlk_img {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}
.secIntro__distBlk_txt {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}
.secIntro__distBlk_txt strong {
  color: #ff6900;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .secIntro__distBlk {
    padding-bottom: 200px;
  }
  .secIntro__distBlk_inner {
    grid-gap: 100px;
  }
  .secIntro__distBlk_img {
    max-width: 100%;
  }
}
.secIntro__aboutBlk {
  width: 100%;
  padding: 89px 0 96px;
  background-color: #ff6900;
  color: #fff;
}
.secIntro__aboutBlk_row {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 24px;
}
.secIntro__aboutBlk_row:not(:last-child) {
  padding-bottom: 64px;
  margin-bottom: 64px;
  border-bottom: 1px solid #fff;
}
.secIntro__aboutBlk_row_txtWrap {
  width: 100%;
}
.secIntro__aboutBlk_row_txtWrap_ttl {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  grid-gap: 10px;
}
.secIntro__aboutBlk_row_txtWrap_ttl::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 14px;
  background-color: #fff;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}
.secIntro__aboutBlk_row_txtWrap > p {
  font-weight: 700;
  line-height: 1.8;
}
.secIntro__aboutBlk_row_txtWrap > p + p {
  margin-top: 1.8em;
}
.secIntro__aboutBlk_row_img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .secIntro__aboutBlk {
    padding: 100px 0;
  }
  .secIntro__aboutBlk_row {
    flex-direction: row;
    grid-gap: 40px;
  }
  .secIntro__aboutBlk_row:not(:last-child) {
    padding-bottom: 87px;
    margin-bottom: 50px;
  }
  .secIntro__aboutBlk_row:nth-child(odd) .secIntro__aboutBlk_row_txtWrap {
    margin-bottom: -10px;
  }
  .secIntro__aboutBlk_row:nth-child(even) {
    flex-direction: row-reverse;
  }
  .secIntro__aboutBlk_row:nth-child(even) .secIntro__aboutBlk_row_txtWrap {
    padding-top: 20px;
  }
  .secIntro__aboutBlk_row:nth-child(even) .secIntro__aboutBlk_row_txtWrap_ttl {
    margin-bottom: 35px;
  }
  .secIntro__aboutBlk_row_txtWrap_ttl {
    margin-bottom: 46px;
  }
  .secIntro__aboutBlk_row_img {
    width: 28.667%;
    max-width: 100%;
    flex-shrink: 0;
  }
  .secIntro__aboutBlk_row--1 {
    margin-top: -160px;
    align-items: flex-end;
  }
  .secIntro__aboutBlk_row--1 .secIntro__aboutBlk_row_img {
    width: 39.5%;
  }
}
@media screen and (min-width: 1200px) {
  .secIntro__aboutBlk_row {
    grid-gap: 88px;
  }
  .secIntro__aboutBlk_row:nth-child(even) {
    grid-gap: 70px;
  }
}

.secEx {
  padding: 0 0 96px;
}
@media screen and (min-width: 768px) {
  .secEx {
    padding: 0 0 183px;
  }
}
.secEx__ttl {
  width: 100%;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
}
.secEx__ttl::after {
  content: "";
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #ff6900 60px, #cdcdcd 60px);
  display: block;
  transition: 1s;
}
.secEx__ttl span {
  margin-right: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.5s;
}
.secEx__ttl.on::after {
  width: 100%;
}
.secEx__ttl.on span {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (min-width: 768px) {
  .secEx__ttl {
    margin-bottom: 60px;
  }
  .secEx__ttl::before {
    background: linear-gradient(90deg, #ff6900 158px, #cdcdcd 158px);
  }
}
.secEx__list {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 94px;
  display: grid;
  grid-gap: 32px;
}
@media screen and (min-width: 768px) {
  .secEx__list {
    max-width: 100%;
    margin: 0 0 120px;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .secEx__list {
    grid-gap: 32px;
  }
}
.secEx__listItem {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 22px;
}
.secEx__listItem:nth-child(1) {
  transition-delay: 0s;
}
.secEx__listItem:nth-child(2) {
  transition-delay: 0.1s;
}
.secEx__listItem:nth-child(3) {
  transition-delay: 0.2s;
}
.secEx__listItem_img {
  width: 100%;
  padding-top: 74.5%;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.secEx__listItem_txtWrap {
  width: 100%;
}
.secEx__listItem_ttl {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3333;
}
.secEx__listItem_txt {
  font-size: 14px;
  letter-spacing: -0.03em;
  line-height: 1.5;
}
.secEx__storeBlk {
  width: 100%;
  padding: 49px 0 50px;
  border: 2px solid #ff6900;
  border-radius: 20px;
}
.secEx__storeBlk_inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 28px;
}
.secEx__storeBlk_txtWrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.secEx__storeBlk_ttl {
  margin-bottom: 18px;
  color: #ff6900;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
}
.secEx__storeBlk_btn {
  width: 290px;
  margin-bottom: 24px;
  padding: 0 16px 0 30px;
  letter-spacing: 0;
  position: relative;
}
.secEx__storeBlk_insta {
  color: #ff6900;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  grid-gap: 12px;
}
.secEx__storeBlk_insta::before {
  content: "";
  width: 25px;
  height: 25px;
  background: url('data:image/svg+xml;charset=utf8,<svg width="29" height="29" viewBox="0 0 29 29" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M20.3194 0H8.19561C3.66929 0 0 3.66929 0 8.19561V20.8044C0 25.3307 3.66929 29 8.19561 29H20.3194C24.8458 29 28.515 25.3307 28.515 20.8044V8.19561C28.515 3.66929 24.8457 0 20.3194 0ZM2.90969 8.19561C2.90969 5.28083 5.28083 2.90969 8.19561 2.90969H20.3194C23.2342 2.90969 25.6053 5.28083 25.6053 8.19561V20.8044C25.6053 23.7192 23.2342 26.0903 20.3194 26.0903H8.19561C5.28083 26.0903 2.90969 23.7192 2.90969 20.8044V8.19561Z" fill="%23ff6900"/><path d="M14.2572 21.9677C18.3751 21.9677 21.7254 18.6175 21.7254 14.4996C21.7254 10.3817 18.3751 7.03125 14.2572 7.03125C10.1393 7.03125 6.78906 10.3817 6.78906 14.4996C6.78906 18.6175 10.1392 21.9677 14.2572 21.9677ZM14.2572 9.35901C17.0917 9.35901 19.3975 11.6651 19.3975 14.4996C19.3975 17.3341 17.0917 19.6402 14.2572 19.6402C11.4228 19.6402 9.11682 17.3341 9.11682 14.4996C9.11682 11.6651 11.4227 9.35901 14.2572 9.35901Z" fill="%23ff6900"/><path d="M21.9446 8.48707C22.8686 8.48707 23.6177 7.73794 23.6177 6.81385C23.6177 5.88975 22.8686 5.14062 21.9446 5.14062C21.0206 5.14062 20.2715 5.88975 20.2715 6.81385C20.2715 7.73794 21.0206 8.48707 21.9446 8.48707Z" fill="%23ff6900"/></svg>') center/contain no-repeat;
  display: block;
}
.secEx__storeBlk_imgWrap {
  width: 100%;
}
.secEx__storeBlk_img {
  width: 100%;
  margin-bottom: 10px;
}
.secEx__storeBlk_imgTxt {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .secEx__storeBlk {
    padding: 100px 0 80px;
  }
  .secEx__storeBlk_inner {
    max-width: 1032px;
    flex-direction: row;
    align-items: center;
    grid-gap: 20px;
  }
  .secEx__storeBlk_txtWrap {
    width: 100%;
  }
  .secEx__storeBlk_ttl {
    margin-bottom: 30px;
    font-size: 80px;
  }
  .secEx__storeBlk_btn {
    width: 100%;
    max-width: 453px;
    margin: 0 auto 16px;
  }
  .secEx__storeBlk_insta {
    font-size: 20px;
    line-height: 1.8;
  }
  .secEx__storeBlk_insta::before {
    width: 30px;
    height: 30px;
  }
  .secEx__storeBlk_imgWrap {
    width: 50%;
    max-width: 507px;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 1024px) {
  .secEx__storeBlk_inner {
    grid-gap: 40px;
  }
  .secEx__storeBlk_ttl {
    font-size: 100px;
  }
  .secEx__storeBlk_btn {
    height: 70px;
    padding: 0 44px 0 0px;
    border-radius: 35px;
    font-size: 20px;
    justify-content: center;
  }
  .secEx__storeBlk_btn::after {
    width: 27px;
    height: 27px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(6.7em, -50%);
  }
  .secEx__storeBlk_insta {
    padding-left: 24px;
  }
  .secEx__storeBlk_imgTxt {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .secEx__storeBlk_inner {
    grid-gap: 60px;
  }
  .secEx__storeBlk_ttl {
    font-size: 120px;
  }
}

.secRecruit {
  padding: 96px 0;
  background: url(../img/products/recruit_bg-sp.jpg) center/cover no-repeat;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .secRecruit {
    padding: 100px 0;
    background-image: url(../img/products/recruit_bg-pc.jpg);
  }
}
.secRecruit__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.secRecruit__ttl {
  margin-bottom: 20px;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .secRecruit__ttl {
    margin-bottom: 30px;
    font-size: 100px;
  }
}
.secRecruit__txt {
  margin-bottom: 32px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .secRecruit__txt {
    margin-bottom: 50px;
  }
}