@charset "UTF-8";
/* ---------------------------------------
  トップページ
-----------------------------------------*/
#header {
  background-color: transparent;
}

.main {
  padding-top: 0;
}

/* アニメーション
--------------------------------*/
@keyframes rotateCircle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeDown {
  from {
    transform: translateY(110%);
  }
  to {
    transform: translateY(0%);
  }
}
@keyframes fadeUp {
  from {
    transform: translateY(-110%);
  }
  to {
    transform: translateY(0%);
  }
}
@keyframes blurImg {
  0% {
    opacity: 0;
    filter: blur(1rem);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
/* sec_fv
--------------------------------*/
#sec_fv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100svh;
  min-height: 60rem;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #sec_fv {
    min-height: inherit;
  }
}
#sec_fv .fv_movie {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#sec_fv .fv_movie::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, rgba(15, 14, 12, 0.5), rgba(15, 14, 12, 0.5));
  position: absolute;
  left: 0;
  top: 0;
}
#sec_fv .fv_movie video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#sec_fv .fv_ttl {
  width: fit-content;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #sec_fv .fv_ttl {
    padding-top: 4rem;
  }
}
#sec_fv .fv_ttl .ttl {
  width: 77.3rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #sec_fv .fv_ttl .ttl {
    width: 33.2rem;
  }
}
#sec_fv .fv_ttl .ttl span {
  display: block;
  overflow: hidden;
}
#sec_fv .fv_ttl .ttl span img {
  translate: 0 100%;
}
#sec_fv .fv_ttl .txt {
  font-size: 3.2rem;
  line-height: 2.3125;
  letter-spacing: 0.2em;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  #sec_fv .fv_ttl .txt {
    font-size: 1.6rem;
    line-height: 2.375;
    margin-top: 1.7rem;
  }
}
#sec_fv.is-show .fv_ttl .ttl span img {
  translate: 0 0;
  transition: translate 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}
#sec_fv .movie_btn {
  display: block;
  width: 4rem;
  height: 4rem;
  background-color: rgba(24, 20, 20, 0.8);
  border-radius: 50%;
  border: 1px solid #7A7875;
  position: absolute;
  left: calc(50% - 2rem);
  bottom: 3.2rem;
}
@media screen and (max-width: 767px) {
  #sec_fv .movie_btn {
    margin: 3.2rem auto 0;
    position: relative;
    left: 0;
    bottom: 0;
  }
}
#sec_fv .movie_btn img {
  position: absolute;
  inset: 0;
  margin: auto;
}
#sec_fv .movie_btn .ico_play {
  width: 1.1rem;
  translate: 0.2rem 0;
  opacity: 0;
}
#sec_fv .movie_btn .ico_pause {
  width: 0.6rem;
  opacity: 1;
}
#sec_fv .movie_btn.is-paused .ico_play {
  opacity: 1;
}
#sec_fv .movie_btn.is-paused .ico_pause {
  opacity: 0;
}
#sec_fv .fv_news_box {
  width: 50.9rem;
  height: 9.1rem;
  overflow: hidden;
  padding: 1.8rem 4rem 1.1rem 2.4rem;
  border-top: 1px solid #7A7875;
  border-right: 1px solid #7A7875;
  background: rgba(255, 248, 246, 0.15);
  backdrop-filter: blur(2px);
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  #sec_fv .fv_news_box {
    width: 21.2rem;
    height: 9.5rem;
    padding: 1.3rem 0.8rem 0.7rem;
  }
}
#sec_fv .fv_news_box .fv_news_list .item a {
  display: block;
}
@media screen and (max-width: 767px) {
  #sec_fv .fv_news_box .fv_news_list .item a {
    height: 7.1rem;
    overflow: hidden;
  }
}
#sec_fv .fv_news_box .fv_news_list .item a * {
  color: #FFF8F6;
}
#sec_fv .fv_news_box .fv_news_list .item .info {
  display: flex;
  align-items: flex-start;
  gap: 0 1rem;
}
@media screen and (max-width: 767px) {
  #sec_fv .fv_news_box .fv_news_list .item .info {
    gap: 0 0.5rem;
  }
}
#sec_fv .fv_news_box .fv_news_list .item .info .date {
  width: 5em;
  font-weight: 300;
  line-height: 1.375;
}
@media screen and (max-width: 767px) {
  #sec_fv .fv_news_box .fv_news_list .item .info .date {
    line-height: 1.4;
  }
}
#sec_fv .fv_news_box .fv_news_list .item .info .cate {
  flex: 1;
  font-size: 1.2rem;
  line-height: 1.3333333333;
  letter-spacing: 0.15em;
  margin-top: 0.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  #sec_fv .fv_news_box .fv_news_list .item .info .cate {
    letter-spacing: 0.05em;
  }
}
#sec_fv .fv_news_box .fv_news_list .item .info .cate span + span {
  margin-left: 0.8rem;
}
#sec_fv .fv_news_box .fv_news_list .item .ttl {
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
  margin-top: 0.4rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  #sec_fv .fv_news_box .fv_news_list .item .ttl {
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  #sec_fv .fv_news_box .fv_news_list .item .ttl {
    font-size: 1.3rem;
    line-height: 1.6923076923;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}
#sec_fv .fv_news_box .fv_news_list .item .ttl span {
  padding-bottom: 0.3rem;
  background-image: linear-gradient(90deg, #FFF8F6, #FFF8F6);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  transition: background-size 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  #sec_fv .fv_news_box .fv_news_list .item a:hover .ttl span {
    background-size: 100% 1px;
  }
}
#sec_fv .fv_recruit {
  position: absolute;
  right: -6.5rem;
  bottom: -12.3rem;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  #sec_fv .fv_recruit {
    right: -1.3rem;
    bottom: -5.3rem;
  }
}
#sec_fv .fv_recruit a {
  display: block;
  width: 33.8rem;
  height: 33.8rem;
  padding: 5.5rem 0 0 9.4rem;
  background-color: rgba(24, 20, 20, 0.8);
  border-radius: 50%;
  border: 1px solid #FFF8F6;
}
@media screen and (max-width: 767px) {
  #sec_fv .fv_recruit a {
    width: 14.6rem;
    height: 14.6rem;
    padding: 1.9rem 0 0 4.2rem;
  }
}
#sec_fv .fv_recruit a::before {
  content: "";
  width: 39.3rem;
  height: 39.3rem;
  background: url(../img/index/fv_recruit_deco_pc.svg) no-repeat center/contain;
  animation: rotateCircle 20s linear infinite;
  position: absolute;
  left: -2.4rem;
  top: -2.4rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  #sec_fv .fv_recruit a::before {
    width: 17.8rem;
    height: 17.8rem;
    background-image: url(../img/index/fv_recruit_deco_sp.svg);
    left: -1.4rem;
    top: -1.4rem;
  }
}
#sec_fv .fv_recruit .ttl {
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  #sec_fv .fv_recruit .ttl {
    font-size: 2rem;
  }
}
#sec_fv .fv_recruit .mascot {
  width: 100%;
  height: 10.5rem;
  margin-top: 2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  #sec_fv .fv_recruit .mascot {
    height: 4.8rem;
    margin-top: 0.7rem;
    margin-left: 1rem;
  }
}
#sec_fv .fv_recruit .mascot img._01 {
  width: 12.05rem;
}
@media screen and (max-width: 767px) {
  #sec_fv .fv_recruit .mascot img._01 {
    width: 5.3rem;
  }
}
#sec_fv .fv_recruit .mascot img._02 {
  width: 15.9rem;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  #sec_fv .fv_recruit .mascot img._02 {
    width: 6.9rem;
  }
}
#sec_fv .fv_recruit .mascot::before {
  content: "";
  width: 7.7rem;
  height: 6.5rem;
  background: url(../img/index/fv_recruit_fukidashi_pc.svg) no-repeat center/contain;
  position: absolute;
  left: -5.2rem;
  top: -2rem;
}
@media screen and (max-width: 767px) {
  #sec_fv .fv_recruit .mascot::before {
    width: 4.5rem;
    height: 3.4rem;
    background-image: url(../img/index/fv_recruit_fukidashi_sp.svg);
    left: -4.5rem;
    top: -0.5rem;
  }
}
@media screen and (min-width: 768px) {
  #sec_fv .fv_recruit a:hover .mascot img._01 {
    opacity: 0;
  }
  #sec_fv .fv_recruit a:hover .mascot img._02 {
    opacity: 1;
  }
}

/* sec_intro
--------------------------------*/
#sec_intro {
  background: #181414 url(../img/index/intro_bg.png) no-repeat left top/calc(50% + 23.9583333333vw) auto;
  background-blend-mode: color-dodge;
}
#sec_intro .inner {
  position: sticky;
  top: 0;
  padding: 5.5555555556vw 0 19.4444444444vw;
  padding: 5.5555555556vw 0 0;
}
@media screen and (max-width: 767px) {
  #sec_intro .inner {
    padding: 24.8rem 0 26.3rem;
  }
}
#sec_intro .intro_contents,
#sec_intro .intro_bg {
  will-change: transform;
  transition: transform 0.05s linear;
}
#sec_intro .intro_contents {
  position: relative;
  z-index: 2;
}
#sec_intro .intro_contents .wrap {
  max-width: 87.2222222222vw;
  padding: 0 1.3888888889vw;
}
@media screen and (max-width: 767px) {
  #sec_intro .intro_contents .wrap {
    max-width: inherit;
    padding: 0 1.2rem;
  }
}
#sec_intro .intro_contents .ttl {
  font-size: 2.2222222222vw;
  line-height: 2.3125;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  #sec_intro .intro_contents .ttl {
    font-size: 2rem;
    line-height: 2.3;
    letter-spacing: 0;
    text-shadow: 0 0 4rem #181414, 0 0 4rem #181414, 0 0 4rem #181414, 0 0 4rem #181414, 0 0 4rem #181414, 0 0 4rem #181414, 0 0 4rem #181414, 0 0 4rem #181414, 0 0 4rem #181414, 0 0 4rem #181414;
  }
}
#sec_intro .intro_contents .ttl .en {
  display: block;
  text-transform: uppercase;
  color: #7A7875;
  font-size: 1.3888888889vw;
  line-height: 1;
  letter-spacing: 0.1em;
  position: relative;
  padding-left: 1.3888888889vw;
}
@media screen and (max-width: 767px) {
  #sec_intro .intro_contents .ttl .en {
    font-size: 1.6rem;
    padding-left: 1.6rem;
  }
}
#sec_intro .intro_contents .ttl .en::before, #sec_intro .intro_contents .ttl .en::after {
  content: "";
  width: 0.0694444444vw;
  height: 1.0416666667vw;
  background-color: #7A7875;
  position: absolute;
  left: 0.4166666667vw;
  top: 0.1388888889vw;
}
@media screen and (max-width: 767px) {
  #sec_intro .intro_contents .ttl .en::before, #sec_intro .intro_contents .ttl .en::after {
    height: 1.2rem;
    left: 0.5rem;
    top: 0.1rem;
  }
}
#sec_intro .intro_contents .ttl .en::before {
  rotate: 45deg;
}
#sec_intro .intro_contents .ttl .en::after {
  rotate: -45deg;
}
#sec_intro .intro_contents .txt_wrap {
  max-width: 61.9444444444vw;
  padding-left: 18.8888888889vw;
  margin-top: 9.4444444444vw;
}
@media screen and (max-width: 767px) {
  #sec_intro .intro_contents .txt_wrap {
    max-width: inherit;
    padding-left: 0;
    margin-top: 32rem;
  }
}
#sec_intro .intro_contents .txt_wrap .ttl {
  font-weight: 500;
  font-size: 2.2222222222vw;
  line-height: 1.1875;
  text-shadow: 0 0 4.4444444444vw #181414, 0 0 4.4444444444vw #181414, 0 0 4.4444444444vw #181414;
  margin-bottom: 1.1111111111vw;
}
@media screen and (max-width: 767px) {
  #sec_intro .intro_contents .txt_wrap .ttl {
    text-shadow: 0 0 2rem #181414, 0 0 2rem #181414, 0 0 2rem #181414;
    margin-bottom: 1.2rem;
  }
}
#sec_intro .intro_contents .txt_wrap .ttl:not(:first-child) {
  margin-top: 5.5555555556vw;
}
@media screen and (max-width: 767px) {
  #sec_intro .intro_contents .txt_wrap .ttl:not(:first-child) {
    margin-top: 5.6rem;
  }
}
#sec_intro .intro_contents .txt_wrap .ttl._01 {
  font-size: 2.2222222222vw;
  line-height: 1.5625;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  #sec_intro .intro_contents .txt_wrap .ttl._01 {
    font-size: 2.4rem;
    line-height: 1.2083333333;
  }
}
#sec_intro .intro_contents .txt_wrap .ttl._02 {
  font-size: 1.6666666667vw;
  line-height: 1.5833333333;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  #sec_intro .intro_contents .txt_wrap .ttl._02 {
    font-size: 1.8rem;
    line-height: 1.3888888889;
  }
}
#sec_intro .intro_contents .txt_wrap .concept {
  width: 24.5833333333vw;
  margin-top: 2.2222222222vw;
}
@media screen and (max-width: 767px) {
  #sec_intro .intro_contents .txt_wrap .concept {
    width: 25.8rem;
    margin-top: 2.4rem;
  }
}
#sec_intro .intro_contents .txt_wrap .txt {
  font-size: 1.1111111111vw;
  line-height: 2.375;
  text-shadow: 0 0 4.4444444444vw #181414, 0 0 4.4444444444vw #181414, 0 0 4.4444444444vw #181414;
}
@media screen and (max-width: 767px) {
  #sec_intro .intro_contents .txt_wrap .txt {
    font-size: 1.5rem;
    line-height: 2.2;
    text-shadow: 0 0 3rem #181414, 0 0 3rem #181414, 0 0 3rem #181414, 0 0 3rem #181414, 0 0 3rem #181414, 0 0 3rem #181414, 0 0 3rem #181414, 0 0 3rem #181414;
  }
}
#sec_intro .intro_contents .txt_wrap .txt + .txt {
  margin-top: 3.3333333333vw;
}
@media screen and (max-width: 767px) {
  #sec_intro .intro_contents .txt_wrap .txt + .txt {
    margin-top: 3.2rem;
  }
}
#sec_intro .intro_contents .btn_wrap {
  max-width: 61.9444444444vw;
  display: flex;
  align-items: flex-start;
  gap: 1.6666666667vw;
  padding-left: 18.8888888889vw;
  margin-top: 6.9444444444vw;
}
@media screen and (max-width: 767px) {
  #sec_intro .intro_contents .btn_wrap {
    flex-direction: column;
    gap: 2.4rem 0;
    padding-left: 0;
    margin-top: 5.5rem;
  }
}
@media screen and (min-width: 768px) {
  #sec_intro .intro_contents .btn_wrap .btn a {
    min-width: 20.5555555556vw;
    min-height: 5vw;
    padding: 1.5972222222vw;
  }
  #sec_intro .intro_contents .btn_wrap .btn a .btn_txt {
    font-size: 1.3888888889vw;
  }
  #sec_intro .intro_contents .btn_wrap .btn a .arw {
    width: 1.5972222222vw;
    height: 0.9027777778vw;
    margin-left: 2.4305555556vw;
    margin-right: 0.5555555556vw;
  }
}
@media screen and (max-width: 767px) {
  #sec_intro .intro_contents .btn_wrap .btn a {
    min-width: 23.3rem;
  }
}
#sec_intro .intro_contents .img {
  position: absolute;
  width: 46.875vw;
  left: calc(50% - 50vw + 6.1111111111vw);
  bottom: 0;
}
@media screen and (max-width: 767px) {
  #sec_intro .intro_contents .img {
    width: 34.1rem;
    left: 1rem;
    bottom: 13.8rem;
  }
}
#sec_intro .intro_bg {
  width: 100%;
  position: absolute;
  top: 0;
}
#sec_intro .intro_bg .img {
  position: absolute;
  opacity: 0;
}
#sec_intro .intro_bg .img.is-show {
  animation: blurImg 2s ease 0.5s forwards;
}
#sec_intro .intro_bg .img._01 {
  width: 43.75vw;
  right: 0;
  top: 0;
  opacity: 1;
  animation: none;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #sec_intro .intro_bg .img._01 {
    width: 25.65rem;
  }
}
#sec_intro .intro_bg .img._02 {
  width: 14.4444444444vw;
  left: 0;
  top: 40.7638888889vw;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #sec_intro .intro_bg .img._02 {
    width: 13rem;
    left: 3.2rem;
    top: 53.2rem;
  }
}
#sec_intro .intro_bg .img._03 {
  width: 10.4166666667vw;
  right: calc(50% - 50vw + 33.8888888889vw);
  top: 75.4166666667vw;
}
@media screen and (max-width: 767px) {
  #sec_intro .intro_bg .img._03 {
    width: 9rem;
    right: 2rem;
    top: 56.8rem;
  }
}
#sec_intro .intro_bg .img._03 img {
  opacity: 0.3;
}
@media screen and (max-width: 767px) {
  #sec_intro .intro_bg .img._03 img {
    opacity: 0.8;
  }
}
#sec_intro .intro_bg .img._04 {
  width: 14.7222222222vw;
  left: calc(50% - 50vw + 12.0833333333vw);
  top: 60.3472222222vw;
}
@media screen and (min-width: 768px) {
  #sec_intro .intro_bg .img._04::before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.5) 100%);
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
  }
}
@media screen and (max-width: 767px) {
  #sec_intro .intro_bg .img._04 {
    width: 13.1rem;
    left: 14.3rem;
    top: 70rem;
  }
}
#sec_intro .intro_bg .img._04 img {
  opacity: 0.65;
}
@media screen and (max-width: 767px) {
  #sec_intro .intro_bg .img._04 img {
    opacity: 0.55;
  }
}
#sec_intro .intro_bg .img._05 {
  width: 9.6527777778vw;
  right: calc(50% - 50vw + 2.9166666667vw);
  top: 73.5416666667vw;
}
@media screen and (max-width: 767px) {
  #sec_intro .intro_bg .img._05 {
    width: 9.46rem;
    right: 0;
    top: 96.4rem;
  }
}
#sec_intro .intro_bg .img._05 img {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  #sec_intro .intro_bg .img._05 img {
    opacity: 0.7;
  }
}
#sec_intro .intro_bg .img._06 {
  width: 9.3055555556vw;
  right: calc(50% - 50vw + 22.7083333333vw);
  top: 88.3333333333vw;
}
@media screen and (max-width: 767px) {
  #sec_intro .intro_bg .img._06 {
    width: 7.9rem;
    left: 6.3rem;
    top: 107.5rem;
  }
}
#sec_intro .intro_bg .img._06 img {
  opacity: 0.4;
}
@media screen and (max-width: 767px) {
  #sec_intro .intro_bg .img._06 img {
    opacity: 0.7;
  }
}
#sec_intro .intro_bg .img._07 {
  width: 18.5416666667vw;
  right: calc(50% - 50vw + 7.3611111111vw);
  top: 99.9305555556vw;
}
@media screen and (max-width: 767px) {
  #sec_intro .intro_bg .img._07 {
    width: 16.7rem;
    right: auto;
    left: 18.4rem;
    top: 122rem;
  }
  #sec_intro .intro_bg .img._07 img {
    opacity: 0.9;
  }
}
#sec_intro .intro_bg .img._08 {
  width: 31.3194444444vw;
  left: 0;
  top: 90.2777777778vw;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #sec_intro .intro_bg .img._08 {
    width: 23.1rem;
    left: auto;
    right: 2.5rem;
    top: 168.8rem;
  }
}
#sec_intro .intro_bg .img._09 {
  width: 10.1388888889vw;
  left: 0;
  top: 78.3333333333vw;
}
@media screen and (max-width: 767px) {
  #sec_intro .intro_bg .img._09 {
    width: 9.2rem;
    left: auto;
    right: 0;
    top: 154.1rem;
  }
}
#sec_intro .intro_bg .img._09 img {
  opacity: 0.8;
}
#sec_intro .intro_bg .img._10 {
  width: 10.1388888889vw;
  right: 0;
  top: 117.4305555556vw;
}
@media screen and (max-width: 767px) {
  #sec_intro .intro_bg .img._10 {
    width: 9.2rem;
    right: auto;
    left: 0;
    top: 179.7rem;
  }
}
#sec_intro .intro_bg .img._10 img {
  opacity: 0.5;
}

/* sec_manufacturing
--------------------------------*/
#sec_manufacturing {
  position: relative;
  height: 100vh;
  height: 100lvh;
}
#sec_manufacturing .sec_ttl .en {
  color: #D0CDCC;
}
#sec_manufacturing .sec_ttl .en::before, #sec_manufacturing .sec_ttl .en::after {
  background-color: #D0CDCC;
}
#sec_manufacturing .manufacturing_contents {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100lvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/index/manufacturing_bg_pc.jpg) center center/cover no-repeat;
  overflow: hidden;
}
#sec_manufacturing .manufacturing_contents .wrap {
  display: flex;
  align-items: center;
  gap: 0 10.4rem;
  padding: 5rem 2rem;
}
@media screen and (max-width: 767px) {
  #sec_manufacturing .manufacturing_contents .wrap {
    height: 100%;
    max-height: 71.5rem;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    gap: 4rem 0;
    padding: 2rem 1.2rem;
  }
}
#sec_manufacturing .manufacturing_contents .contents_img {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #sec_manufacturing .manufacturing_contents .contents_img {
    width: 100%;
    max-height: 27.5rem;
    flex-direction: row-reverse;
    justify-content: flex-start;
    gap: 0 1.65rem;
  }
}
#sec_manufacturing .manufacturing_contents .contents_img .num_wrap {
  display: inline-flex;
  align-items: center;
  width: 3.5rem;
  height: 22rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  #sec_manufacturing .manufacturing_contents .contents_img .num_wrap {
    width: 2.6rem;
    height: 16rem;
  }
}
#sec_manufacturing .manufacturing_contents .contents_img .num_wrap .num {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem 0;
  font-style: italic;
  font-weight: 300;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  opacity: 0;
  transition: opacity 0.25s ease;
}
@media screen and (max-width: 767px) {
  #sec_manufacturing .manufacturing_contents .contents_img .num_wrap .num {
    gap: 0 0.4rem;
    font-size: 1.8rem;
  }
}
#sec_manufacturing .manufacturing_contents .contents_img .num_wrap .num .current {
  overflow: hidden;
}
#sec_manufacturing .manufacturing_contents .contents_img .num_wrap .num .current span {
  display: block;
}
#sec_manufacturing .manufacturing_contents .contents_img .num_wrap .num .total {
  padding-top: 1.8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  #sec_manufacturing .manufacturing_contents .contents_img .num_wrap .num .total {
    padding-top: 1.5rem;
  }
}
#sec_manufacturing .manufacturing_contents .contents_img .num_wrap .num .total::before {
  content: "";
  display: block;
  width: 1px;
  height: 2.2rem;
  background-color: #FFF8F6;
  rotate: 74deg;
  position: absolute;
  left: 1.6rem;
  top: -0.8rem;
}
@media screen and (max-width: 767px) {
  #sec_manufacturing .manufacturing_contents .contents_img .num_wrap .num .total::before {
    height: 2rem;
    left: 1.3rem;
    top: -0.2rem;
  }
}
#sec_manufacturing .manufacturing_contents .contents_img .num_wrap .num.is-show {
  opacity: 1;
}
#sec_manufacturing .manufacturing_contents .contents_img .num_wrap .num.is-show.is-dir-down .current span {
  animation: fadeDown 0.6s ease forwards;
}
#sec_manufacturing .manufacturing_contents .contents_img .num_wrap .num.is-show.is-dir-up .current span {
  animation: fadeUp 0.6s ease forwards;
}
#sec_manufacturing .manufacturing_contents .contents_img .num_wrap .deco {
  width: 1.5rem;
  height: 3.2rem;
  position: absolute;
  left: 50%;
  translate: -50% 0;
}
#sec_manufacturing .manufacturing_contents .contents_img .num_wrap .deco::before, #sec_manufacturing .manufacturing_contents .contents_img .num_wrap .deco::after {
  content: "";
  background-color: #FFF8F6;
  position: absolute;
}
#sec_manufacturing .manufacturing_contents .contents_img .num_wrap .deco::before {
  width: 100%;
  height: 1px;
}
#sec_manufacturing .manufacturing_contents .contents_img .num_wrap .deco::after {
  width: 1px;
  height: 100%;
  left: calc((100% - 1px) / 2);
}
#sec_manufacturing .manufacturing_contents .contents_img .num_wrap .deco._top {
  top: 0;
}
#sec_manufacturing .manufacturing_contents .contents_img .num_wrap .deco._top::before {
  top: 0;
}
#sec_manufacturing .manufacturing_contents .contents_img .num_wrap .deco._bottom {
  bottom: 0;
}
#sec_manufacturing .manufacturing_contents .contents_img .num_wrap .deco._bottom::before {
  bottom: 0;
}
#sec_manufacturing .manufacturing_contents .contents_img .img_box {
  position: relative;
  flex: 1;
  max-width: 52rem;
  aspect-ratio: 1/1;
  background-color: #2b2828;
}
@media screen and (max-width: 767px) {
  #sec_manufacturing .manufacturing_contents .contents_img .img_box {
    width: 100%;
    height: 100%;
    max-width: 27.5rem;
    aspect-ratio: unset;
  }
}
#sec_manufacturing .manufacturing_contents .contents_img .img_box .img_wrap {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0;
  margin: auto;
  opacity: 0;
}
#sec_manufacturing .manufacturing_contents .contents_img .img_box .img_wrap::before {
  content: "";
  width: 100%;
  height: 100%;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  mix-blend-mode: multiply;
}
#sec_manufacturing .manufacturing_contents .contents_img .img_box .img_wrap .img {
  position: relative;
  opacity: 0;
  transition: opacity 1s ease;
}
#sec_manufacturing .manufacturing_contents .contents_img .img_box .img_wrap .num {
  font-style: italic;
  font-weight: 300;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.01em;
  position: absolute;
  left: 2.4rem;
  top: 2.4rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #sec_manufacturing .manufacturing_contents .contents_img .img_box .img_wrap .num {
    font-size: 1.8rem;
    left: 1.55rem;
    top: 1.3rem;
  }
}
#sec_manufacturing .manufacturing_contents .contents_img .img_box .img_wrap .num span {
  display: block;
}
#sec_manufacturing .manufacturing_contents .contents_img .img_box .img_wrap .name {
  font-style: italic;
  font-weight: 300;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.02em;
  position: absolute;
  right: 2.4rem;
  bottom: 2.4rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #sec_manufacturing .manufacturing_contents .contents_img .img_box .img_wrap .name {
    font-size: 1.8rem;
    right: 1rem;
    bottom: 1.1rem;
  }
}
#sec_manufacturing .manufacturing_contents .contents_img .img_box .img_wrap .name span {
  display: block;
}
#sec_manufacturing .manufacturing_contents .contents_img .img_box .img_wrap.is-show {
  opacity: 1;
}
#sec_manufacturing .manufacturing_contents .contents_img .img_box .img_wrap.is-show .img {
  opacity: 1;
}
#sec_manufacturing .manufacturing_contents .contents_img .img_box .img_wrap.is-show.is-dir-down .num span, #sec_manufacturing .manufacturing_contents .contents_img .img_box .img_wrap.is-show.is-dir-down .name span {
  animation: fadeDown 0.6s ease forwards;
}
#sec_manufacturing .manufacturing_contents .contents_img .img_box .img_wrap.is-show.is-dir-up .num span, #sec_manufacturing .manufacturing_contents .contents_img .img_box .img_wrap.is-show.is-dir-up .name span {
  animation: fadeUp 0.6s ease forwards;
}
#sec_manufacturing .manufacturing_contents .contents_img .img_box .img_wrap._01::before {
  background-image: url(../img/index/manufacturing_img01_bg.png);
}
#sec_manufacturing .manufacturing_contents .contents_img .img_box .img_wrap._01 .img {
  width: 41.3rem;
}
@media screen and (max-width: 767px) {
  #sec_manufacturing .manufacturing_contents .contents_img .img_box .img_wrap._01 .img {
    width: 21.0975268rem;
  }
}
#sec_manufacturing .manufacturing_contents .contents_img .img_box .img_wrap._02::before {
  background-image: url(../img/index/manufacturing_img02_bg.png);
}
#sec_manufacturing .manufacturing_contents .contents_img .img_box .img_wrap._02 .img {
  width: 24.8rem;
}
@media screen and (max-width: 767px) {
  #sec_manufacturing .manufacturing_contents .contents_img .img_box .img_wrap._02 .img {
    width: 12.6687328rem;
  }
}
#sec_manufacturing .manufacturing_contents .contents_img .img_box .img_wrap._03::before {
  background-image: url(../img/index/manufacturing_img03_bg.png);
}
#sec_manufacturing .manufacturing_contents .contents_img .img_box .img_wrap._03 .img {
  width: 15.4rem;
}
@media screen and (max-width: 767px) {
  #sec_manufacturing .manufacturing_contents .contents_img .img_box .img_wrap._03 .img {
    width: 7.8668744rem;
  }
}
#sec_manufacturing .manufacturing_contents .contents_img .img_box .img_wrap._04::before {
  background-image: url(../img/index/manufacturing_img04_bg.png);
}
#sec_manufacturing .manufacturing_contents .contents_img .img_box .img_wrap._04 .img {
  width: 18.5rem;
}
@media screen and (max-width: 767px) {
  #sec_manufacturing .manufacturing_contents .contents_img .img_box .img_wrap._04 .img {
    width: 9.450466rem;
  }
}
#sec_manufacturing .manufacturing_contents .contents_img .img_box .img_wrap._05::before {
  background-image: url(../img/index/manufacturing_img05_bg.png);
}
#sec_manufacturing .manufacturing_contents .contents_img .img_box .img_wrap._05 .img {
  width: 28.7rem;
}
@media screen and (max-width: 767px) {
  #sec_manufacturing .manufacturing_contents .contents_img .img_box .img_wrap._05 .img {
    width: 14.6609932rem;
  }
}
#sec_manufacturing .manufacturing_contents .contents_img .img_box .img_wrap._06::before {
  background-image: url(../img/index/manufacturing_img06_bg.png);
}
#sec_manufacturing .manufacturing_contents .contents_img .img_box .img_wrap._06 .img {
  width: 20rem;
}
@media screen and (max-width: 767px) {
  #sec_manufacturing .manufacturing_contents .contents_img .img_box .img_wrap._06 .img {
    width: 10.21672rem;
  }
}
#sec_manufacturing .manufacturing_contents .contents_txt {
  width: 51.8rem;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  #sec_manufacturing .manufacturing_contents .contents_txt {
    width: 100%;
    padding: 0 1.2rem;
    flex: 0 0 auto;
  }
}
#sec_manufacturing .manufacturing_contents .contents_txt .ttl_wrap {
  overflow: hidden;
}
#sec_manufacturing .manufacturing_contents .contents_txt .ttl_wrap .sec_ttl {
  transform: translateY(110%);
}
#sec_manufacturing .manufacturing_contents .contents_txt .txt_wrap {
  margin-top: 4.8rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #sec_manufacturing .manufacturing_contents .contents_txt .txt_wrap {
    margin-top: 2rem;
  }
}
#sec_manufacturing .manufacturing_contents .contents_txt .txt_wrap .txt {
  transform: translateY(110%);
}
#sec_manufacturing .manufacturing_contents .contents_txt .txt_wrap .txt .txt {
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  #sec_manufacturing .manufacturing_contents .contents_txt .txt_wrap .txt .txt {
    margin-top: 1.6rem;
  }
}
#sec_manufacturing .manufacturing_contents .contents_txt .btn {
  margin-top: 7.2rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #sec_manufacturing .manufacturing_contents .contents_txt .btn {
    margin-top: 3.2rem;
  }
}
#sec_manufacturing .manufacturing_contents .contents_txt .btn a {
  transform: translateY(110%);
}
#sec_manufacturing.is-show .manufacturing_contents .contents_txt {
  opacity: 1;
}
#sec_manufacturing.is-show .manufacturing_contents .contents_txt .ttl_wrap .sec_ttl {
  animation: fadeDown 0.6s ease forwards;
}
#sec_manufacturing.is-show .manufacturing_contents .contents_txt .txt_wrap .txt {
  animation: fadeDown 0.6s ease forwards;
}
#sec_manufacturing.is-show .manufacturing_contents .contents_txt .btn a {
  animation: fadeDown 0.6s ease forwards;
}

/* sec_civil
--------------------------------*/
#sec_civil .sec_ttl .en {
  color: #D0CDCC;
}
#sec_civil .sec_ttl .en::before, #sec_civil .sec_ttl .en::after {
  background-color: #D0CDCC;
}
#sec_civil .civil_contents {
  min-height: 100vh;
  min-height: 100lvh;
  padding: 14rem 0 5.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  #sec_civil .civil_contents {
    padding: 5rem 0;
  }
}
#sec_civil .civil_contents .contents_bg {
  width: 100%;
  height: 100%;
  min-height: 100lvh;
  background-color: #7A7875;
  position: absolute;
  inset: 0;
}
#sec_civil .civil_contents .contents_bg::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(26, 22, 22, 0.3);
  position: absolute;
  inset: 0;
}
#sec_civil .civil_contents .contents_bg .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
#sec_civil .civil_contents .contents_bg .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#sec_civil .civil_contents .contents_bg .bg.is-show {
  opacity: 1;
}
#sec_civil .civil_contents .wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  align-items: center;
  gap: 0 3.2rem;
  padding-left: 9.4rem;
  padding: 0 2rem 0 9.4rem;
}
@media screen and (max-width: 767px) {
  #sec_civil .civil_contents .wrap {
    height: 100%;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 4rem 0;
    padding: 0 6.4rem 0 2.4rem;
  }
}
#sec_civil .civil_contents .contents_img {
  position: relative;
  flex: 1;
  aspect-ratio: 592/570;
}
@media screen and (max-width: 767px) {
  #sec_civil .civil_contents .contents_img {
    width: 100%;
  }
}
#sec_civil .civil_contents .contents_img .img_wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
#sec_civil .civil_contents .contents_img .img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#sec_civil .civil_contents .contents_img .img_wrap.is-show {
  opacity: 1;
}
#sec_civil .civil_contents .contents_txt {
  width: 51.8rem;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  #sec_civil .civil_contents .contents_txt {
    width: 100%;
    flex: 0 0 auto;
  }
}
#sec_civil .civil_contents .contents_txt .ttl_wrap {
  overflow: hidden;
}
#sec_civil .civil_contents .contents_txt .ttl_wrap .sec_ttl {
  transform: translateY(110%);
}
#sec_civil .civil_contents .contents_txt .txt_wrap {
  margin-top: 4.8rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #sec_civil .civil_contents .contents_txt .txt_wrap {
    margin-top: 2rem;
  }
}
#sec_civil .civil_contents .contents_txt .txt_wrap .txt {
  transform: translateY(110%);
}
#sec_civil .civil_contents .contents_txt .txt_wrap .txt + .txt {
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  #sec_civil .civil_contents .contents_txt .txt_wrap .txt + .txt {
    margin-top: 1.6rem;
  }
}
#sec_civil .civil_contents .contents_txt .btn {
  margin-top: 7.2rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #sec_civil .civil_contents .contents_txt .btn {
    margin-top: 3.2rem;
  }
}
#sec_civil .civil_contents .contents_txt .btn a {
  transform: translateY(110%);
}
#sec_civil .civil_contents .civil_progress {
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 9.6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  #sec_civil .civil_contents .civil_progress {
    width: 3rem;
    height: 100%;
    flex-direction: column;
    margin-top: 0;
    position: absolute;
    right: 1.6rem;
    top: 2rem;
  }
}
#sec_civil .civil_contents .civil_progress .num_wrap {
  width: 11rem;
  height: 2.4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  #sec_civil .civil_contents .civil_progress .num_wrap {
    width: 100%;
    height: 6rem;
  }
}
#sec_civil .civil_contents .civil_progress .num_wrap .num {
  display: flex;
  align-items: center;
  gap: 0 0.4rem;
  color: #D0CDCC;
  font-style: italic;
  font-weight: 300;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  position: absolute;
  inset: 0;
  margin: auto;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  #sec_civil .civil_contents .civil_progress .num_wrap .num {
    flex-direction: column;
    font-size: 1.8rem;
  }
}
#sec_civil .civil_contents .civil_progress .num_wrap .num .current {
  overflow: hidden;
}
#sec_civil .civil_contents .civil_progress .num_wrap .num .current span {
  display: block;
}
#sec_civil .civil_contents .civil_progress .num_wrap .num small {
  font-size: 1.2rem;
  margin: 0.1em 0.5em 0;
}
#sec_civil .civil_contents .civil_progress .num_wrap .num .total {
  padding-left: 1.6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  #sec_civil .civil_contents .civil_progress .num_wrap .num .total {
    padding-left: 0;
    padding-top: 1.5rem;
  }
}
#sec_civil .civil_contents .civil_progress .num_wrap .num .total::before {
  content: "";
  display: block;
  width: 1px;
  height: 1.5rem;
  background-color: #FFF8F6;
  rotate: 45deg;
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
}
@media screen and (max-width: 767px) {
  #sec_civil .civil_contents .civil_progress .num_wrap .num .total::before {
    height: 2rem;
    rotate: 74deg;
    left: 1.3rem;
    top: -0.2rem;
  }
}
#sec_civil .civil_contents .civil_progress .num_wrap .num.is-show {
  opacity: 1;
}
#sec_civil .civil_contents .civil_progress .num_wrap .num.is-show .current span {
  animation: fadeDown 0.6s ease forwards;
}
#sec_civil .civil_contents .civil_progress .name_wrap {
  width: 21rem;
  height: 2.4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  #sec_civil .civil_contents .civil_progress .name_wrap {
    width: 100%;
    height: 14rem;
  }
}
#sec_civil .civil_contents .civil_progress .name_wrap .name {
  text-align: right;
  color: #D0CDCC;
  font-style: italic;
  font-weight: 300;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  inset: 0;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  #sec_civil .civil_contents .civil_progress .name_wrap .name {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 1.8rem;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    top: auto;
    bottom: 0;
  }
}
#sec_civil .civil_contents .civil_progress .name_wrap .name span {
  display: block;
}
#sec_civil .civil_contents .civil_progress .name_wrap .name.is-show {
  opacity: 1;
}
#sec_civil .civil_contents .civil_progress .name_wrap .name.is-show span {
  animation: fadeDown 0.6s ease forwards;
}
#sec_civil .civil_contents .civil_progress {
  /* プログレスバー本体 */
}
#sec_civil .civil_contents .civil_progress .bar {
  flex: 1;
  height: 1px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #sec_civil .civil_contents .civil_progress .bar {
    width: 1px;
    height: 100%;
  }
}
#sec_civil .civil_contents .civil_progress .bar::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  inset: 0;
  background-color: #7A7875;
}
@media screen and (max-width: 767px) {
  #sec_civil .civil_contents .civil_progress .bar::before {
    width: 1px;
    height: 100%;
  }
}
#sec_civil .civil_contents .civil_progress .bar::after {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--progress, 0%);
  background-color: #FFF8F6;
}
@media screen and (max-width: 767px) {
  #sec_civil .civil_contents .civil_progress .bar::after {
    height: var(--progress, 0%);
  }
}
#sec_civil.is-show .civil_contents .contents_txt {
  opacity: 1;
}
#sec_civil.is-show .civil_contents .contents_txt .ttl_wrap .sec_ttl {
  animation: fadeDown 0.6s ease forwards;
}
#sec_civil.is-show .civil_contents .contents_txt .txt_wrap .txt {
  animation: fadeDown 0.6s ease forwards;
}
#sec_civil.is-show .civil_contents .contents_txt .btn a {
  animation: fadeDown 0.6s ease forwards;
}

/* sec_products
--------------------------------*/
#sec_products {
  padding: 12.8rem 0 16.8rem;
  background: url(../img/index/products_bg_pc.jpg) no-repeat center center/cover;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #sec_products {
    display: flex;
    flex-direction: column;
    padding: 4rem 0 4.8rem;
    background-image: url(../img/index/products_bg_sp.jpg);
  }
}
#sec_products::before {
  content: "";
  width: 100%;
  height: 30.6rem;
  background: linear-gradient(180deg, rgba(26, 22, 22, 0) 9.67%, #7A7875 92.53%);
  position: absolute;
  left: 0;
  bottom: -4.2rem;
}
@media screen and (max-width: 767px) {
  #sec_products::before {
    bottom: 0;
  }
}
#sec_products .ttl_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  #sec_products .ttl_wrap {
    display: contents;
  }
  #sec_products .ttl_wrap .sec_ttl {
    order: 1;
    padding: 0 1.2rem;
  }
  #sec_products .ttl_wrap .btn {
    order: 3;
    padding: 0 1.2rem;
    margin-top: 5.6rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  #sec_products .ttl_wrap .btn {
    margin-top: 4.8rem;
  }
}
@media screen and (max-width: 767px) {
  #sec_products .ttl_wrap .btn a {
    margin: 0 auto;
  }
}
#sec_products .products_tab {
  margin-top: 12.4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  #sec_products .products_tab {
    order: 2;
    margin-top: 4.8rem;
  }
}
#sec_products .products_tab .tab_wrap {
  display: flex;
  gap: 4.05rem;
}
@media screen and (max-width: 767px) {
  #sec_products .products_tab .tab_wrap {
    gap: 0 1.2rem;
    padding-bottom: 1rem;
    overflow-y: hidden;
    overflow-x: auto;
  }
}
#sec_products .products_tab .tab_wrap .tab {
  flex: 1;
  height: 7.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF8F6;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.16em;
  padding: 1.5rem 0.8rem;
  border-bottom: 1px solid #FFF8F6;
  transition: background-color 0.3s ease-out;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  #sec_products .products_tab .tab_wrap .tab {
    height: 4.8rem;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
  }
}
#sec_products .products_tab .tab_wrap .tab.is-current {
  background-color: rgba(255, 248, 246, 0.15);
}
@media screen and (min-width: 768px) {
  #sec_products .products_tab .tab_wrap .tab:hover {
    background-color: rgba(255, 248, 246, 0.15);
  }
}
#sec_products .products_tab .contents_wrap {
  width: calc(50% + 62.8rem);
  padding-left: 2rem;
  margin-top: 3.2rem;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  #sec_products .products_tab .contents_wrap {
    width: 100%;
    padding-left: 2.4rem;
    margin-top: 3rem;
  }
}
#sec_products .products_tab .contents_wrap .contents {
  display: none;
  overflow: hidden;
}
#sec_products .products_tab .contents_wrap .contents.is-open {
  display: block;
}
#sec_products .products_tab .contents_wrap .contents .list_wrap {
  width: auto;
  min-height: 40.1rem;
  overflow-x: auto;
  padding-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  #sec_products .products_tab .contents_wrap .contents .list_wrap {
    cursor: grab;
    -ms-overflow-style: none;
    scrollbar-width: none;
    user-select: none;
  }
  #sec_products .products_tab .contents_wrap .contents .list_wrap::-webkit-scrollbar {
    display: none;
  }
  #sec_products .products_tab .contents_wrap .contents .list_wrap.is-active {
    cursor: grabbing;
  }
  #sec_products .products_tab .contents_wrap .contents .list_wrap.is-active .simplebar-scrollbar:before {
    opacity: 0.5;
  }
  #sec_products .products_tab .contents_wrap .contents .list_wrap.simplebar-scrolling a {
    pointer-events: none;
  }
  #sec_products .products_tab .contents_wrap .contents .list_wrap .simplebar-track.simplebar-horizontal {
    width: 121.6rem;
  }
  #sec_products .products_tab .contents_wrap .contents .list_wrap .simplebar-scrollbar:before {
    height: 0.5rem;
    background-color: #D0CDCC;
    border-radius: 100vh;
    opacity: 0;
  }
}
@media screen and (max-width: 767px) {
  #sec_products .products_tab .contents_wrap .contents .list_wrap {
    min-height: 30rem;
    padding-bottom: 2rem;
  }
}
#sec_products .products_tab .contents_wrap .contents .products_list {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 2rem;
}
#sec_products .products_tab .contents_wrap .contents .products_list::after {
  content: "";
  flex-shrink: 0;
  width: calc((100vw - 127.6rem) / 2);
  width: calc(100% - 123.6rem);
}
@media screen and (max-width: 767px) {
  #sec_products .products_tab .contents_wrap .contents .products_list::after {
    width: 0.4rem;
  }
}
#sec_products .products_tab .contents_wrap .contents .products_list + .products_list {
  margin-top: 5.6rem;
}
@media screen and (max-width: 767px) {
  #sec_products .products_tab .contents_wrap .contents .products_list + .products_list {
    margin-top: 2.4rem;
  }
}
#sec_products .products_tab .contents_wrap .contents .products_list .item {
  flex-shrink: 0;
  width: 26.5rem;
}
@media screen and (max-width: 767px) {
  #sec_products .products_tab .contents_wrap .contents .products_list .item {
    width: 19.7rem;
  }
}
#sec_products .products_tab .contents_wrap .contents .products_list .item a {
  display: block;
}
#sec_products .products_tab .contents_wrap .contents .products_list .item .link_txt {
  line-height: 1.375;
  margin-top: 2.4rem;
  position: relative;
  padding-right: 3rem;
  white-space: normal;
}
@media screen and (max-width: 767px) {
  #sec_products .products_tab .contents_wrap .contents .products_list .item .link_txt {
    line-height: 1.4;
    margin-top: 1.6rem;
  }
}
#sec_products .products_tab .contents_wrap .contents .products_list .item .link_txt .txt {
  padding-bottom: 0.1rem;
  background-image: linear-gradient(90deg, #FFF8F6, #FFF8F6);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  transition: background-size 0.3s ease-out;
}
#sec_products .products_tab .contents_wrap .contents .products_list .item .link_txt .arw {
  display: inline-block;
  width: 2.2rem;
  height: 1.3rem;
  border-right: 1px solid #7A7875;
  margin-right: 0.1rem;
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
}
#sec_products .products_tab .contents_wrap .contents .products_list .item .link_txt .arw::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #7A7875;
  position: absolute;
  right: 0;
  top: calc((100% - 1px) / 2);
  transition: width 0.3s ease-out;
  transform-origin: left center;
}
@media screen and (min-width: 768px) {
  #sec_products .products_tab .contents_wrap .contents .products_list .item a:hover .link_txt .txt {
    background-size: 100% 1px;
  }
  #sec_products .products_tab .contents_wrap .contents .products_list .item a:hover .link_txt .arw::before {
    width: 1.2rem;
  }
}

/* sec_case
--------------------------------*/
#sec_case .sec_ttl {
  width: 100%;
  position: absolute;
  top: 8.8rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #sec_case .sec_ttl {
    font-size: 2.6rem;
    line-height: 1.6153846154;
    top: 4rem;
  }
}
#sec_case .sec_ttl .en {
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 767px) {
  #sec_case .sec_ttl .en {
    margin-bottom: 0.8rem;
  }
}
@media screen and (max-width: 767px) {
  #sec_case .case_contents {
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100lvh;
    background-color: #7A7875;
  }
  #sec_case .case_contents .contents_bg {
    width: 100%;
    height: 100lvh;
    background-color: #7A7875;
    position: absolute;
    inset: 0;
    z-index: -1;
  }
  #sec_case .case_contents .contents_bg .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
  }
  #sec_case .case_contents .contents_bg .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #sec_case .case_contents .contents_bg .bg.is-show {
    opacity: 1;
  }
}
#sec_case .case_contents .wrap {
  max-width: inherit;
  height: 100%;
  padding: 0;
}
@media screen and (min-width: 768px) {
  #sec_case .case_contents .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
#sec_case .case_contents .case_list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  #sec_case .case_contents .case_list {
    width: 100%;
    height: 100%;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  #sec_case .case_contents .case_list .item {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    margin: auto;
    background-size: cover;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
  }
}
#sec_case .case_contents .case_list .item a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  background-size: 100% auto;
  background-position: center top;
}
@media screen and (max-width: 767px) {
  #sec_case .case_contents .case_list .item a {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
#sec_case .case_contents .case_list .item a::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
#sec_case .case_contents .case_list .item a::after {
  content: "";
  width: 100%;
  height: 39.9rem;
  background: linear-gradient(180deg, rgba(26, 22, 22, 0.3) -3.97%, #1A1616 21.29%);
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  #sec_case .case_contents .case_list .item a::after {
    height: calc(100vh - 48rem);
  }
}
@media screen and (min-width: 768px) {
  #sec_case .case_contents .case_list .item._01 a {
    background-image: url(../img/index/case_bg01.jpg);
  }
  #sec_case .case_contents .case_list .item._02 a {
    background-image: url(../img/index/case_bg02.jpg);
  }
  #sec_case .case_contents .case_list .item._03 a {
    background-image: url(../img/index/case_bg03.jpg);
  }
}
#sec_case .case_contents .case_list .item .inner {
  height: 100%;
  padding: 25rem 4.8rem 12.2rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #sec_case .case_contents .case_list .item .inner {
    height: auto;
    padding: 15.2rem 1.2rem 8rem;
  }
}
#sec_case .case_contents .case_list .item .img {
  width: 100%;
  position: relative;
}
#sec_case .case_contents .case_list .item .img::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(255, 248, 246, 0.2), rgba(255, 248, 246, 0.2));
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
#sec_case .case_contents .case_list .item .txt_wrap {
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  #sec_case .case_contents .case_list .item .txt_wrap {
    margin-top: 2.4rem;
  }
}
#sec_case .case_contents .case_list .item .txt_wrap .txt {
  color: #FFF8F6;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  #sec_case .case_contents .case_list .item .txt_wrap .txt {
    font-size: 1.8rem;
    line-height: 1.6111111111;
  }
}
#sec_case .case_contents .case_list .item .txt_wrap .txt span {
  padding-bottom: 0.3rem;
  background-image: linear-gradient(90deg, #FFF8F6, #FFF8F6);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  transition: background-size 0.3s ease-out;
}
#sec_case .case_contents .case_list .item .num {
  color: #7A7875;
  font-style: italic;
  font-weight: 200;
  font-size: 16rem;
  line-height: 1;
  opacity: 0.4;
  position: absolute;
  right: 0;
  bottom: -0.12em;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #sec_case .case_contents .case_list .item .num {
    font-size: 12rem;
    overflow: hidden;
    opacity: 0;
  }
}
#sec_case .case_contents .case_list .item .num span {
  display: block;
}
@media screen and (min-width: 768px) {
  #sec_case .case_contents .case_list .item a:hover::before {
    opacity: 1;
  }
  #sec_case .case_contents .case_list .item a:hover .img::before {
    opacity: 1;
  }
  #sec_case .case_contents .case_list .item a:hover .txt_wrap .txt span {
    background-size: 100% 1px;
  }
}
@media screen and (max-width: 767px) {
  #sec_case .case_contents .case_list .item.is-show {
    opacity: 1;
    pointer-events: auto;
  }
  #sec_case .case_contents .case_list .item.is-show .num {
    opacity: 1;
  }
  #sec_case .case_contents .case_list .item.is-show.is-dir-down .num span {
    animation: fadeDown 0.6s ease forwards;
  }
  #sec_case .case_contents .case_list .item.is-show.is-dir-up .num span {
    animation: fadeUp 0.6s ease forwards;
  }
}

/* sec_news
--------------------------------*/
#sec_news {
  padding: 6.4rem 0 56rem;
  background: url(../img/index/news_bg_pc.png) no-repeat center bottom/cover;
  margin-bottom: -34rem;
}
@media screen and (max-width: 767px) {
  #sec_news {
    padding: 3.2rem 0 9.5rem;
    background-image: url(../img/index/news_bg_sp.png);
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  #sec_news .sec_ttl {
    font-size: 2.6rem;
    line-height: 1.6153846154;
  }
}
#sec_news::before {
  content: "";
  width: 100%;
  height: 61.8rem;
  background: linear-gradient(360deg, #FFF8F6 31.25%, rgba(255, 248, 246, 0) 63.94%);
  position: absolute;
  left: 0;
  bottom: 7.9rem;
}
@media screen and (max-width: 767px) {
  #sec_news::before {
    height: 15.2rem;
    background: linear-gradient(360deg, #FFF8F6 20.61%, rgba(255, 248, 246, 0) 57.66%);
    bottom: 0;
  }
}
#sec_news .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  #sec_news .wrap {
    flex-direction: column;
  }
}
#sec_news .ttl_wrap {
  flex: 1;
}
@media screen and (max-width: 767px) {
  #sec_news .ttl_wrap {
    display: contents;
  }
}
#sec_news .btn {
  margin-top: 4.8rem;
}
@media screen and (max-width: 767px) {
  #sec_news .btn {
    order: 3;
    margin-top: 4rem;
    margin-left: auto;
  }
}
#sec_news .news_list {
  width: 72.4rem;
  margin-top: 4.8rem;
}
@media screen and (max-width: 767px) {
  #sec_news .news_list {
    width: 100%;
    margin-top: 5rem;
  }
}
#sec_news .news_list .item + .item {
  margin-top: 4.8rem;
}
@media screen and (max-width: 767px) {
  #sec_news .news_list .item + .item {
    margin-top: 2.8rem;
  }
}
#sec_news .news_list .item a {
  display: block;
}
#sec_news .news_list .item .info {
  display: flex;
  align-items: flex-start;
  gap: 0 1.3rem;
}
@media screen and (max-width: 767px) {
  #sec_news .news_list .item .info {
    gap: 0 1.6rem;
  }
}
#sec_news .news_list .item .info .date {
  width: 5em;
  color: #7A7875;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1;
}
#sec_news .news_list .item .info .cate {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.2rem;
  line-height: 1.3333333333;
  letter-spacing: 0.15em;
}
#sec_news .news_list .item .ttl {
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-top: 1em;
  position: relative;
}
@media screen and (max-width: 767px) {
  #sec_news .news_list .item .ttl {
    font-size: 1.3rem;
    line-height: 1.6923076923;
    margin-top: 1rem;
  }
}
#sec_news .news_list .item .ttl span {
  padding-bottom: 0.3rem;
  background-image: linear-gradient(90deg, #181414, #181414);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  transition: background-size 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  #sec_news .news_list .item a:hover .ttl span {
    background-size: 100% 1px;
  }
}

/* sec_other
--------------------------------*/
#sec_other {
  padding: 0 0 9.6rem;
}
@media screen and (max-width: 767px) {
  #sec_other {
    padding: 0.8rem 0 6.4rem;
  }
}
#sec_other .other_list .item {
  width: 100%;
  height: 30rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  #sec_other .other_list .item {
    height: 17.6rem;
  }
}
#sec_other .other_list .item + .item {
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  #sec_other .other_list .item + .item {
    margin-top: 1.6rem;
  }
}
#sec_other .other_list .item a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 6rem 7.2rem 6.8rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #sec_other .other_list .item a {
    padding: 4rem 2rem;
  }
}
#sec_other .other_list .item .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: scale 0.3s ease-out;
}
#sec_other .other_list .item .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#sec_other .other_list .item .inner {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #sec_other .other_list .item .sec_ttl {
    font-size: 1.8rem;
    line-height: 1.6;
    letter-spacing: 0.1em;
  }
  #sec_other .other_list .item .sec_ttl .en {
    font-size: 1.4rem;
    padding-left: 1.5rem;
  }
  #sec_other .other_list .item .sec_ttl .en::before, #sec_other .other_list .item .sec_ttl .en::after {
    height: 1.3rem;
    top: 0;
  }
}
#sec_other .other_list .item .txt {
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  #sec_other .other_list .item .txt {
    font-size: 1.3rem;
    line-height: 1.6923076923;
    margin-top: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  #sec_other .other_list .item._sustainable {
    padding-bottom: 1.1rem;
  }
}
#sec_other .other_list .item._sustainable .sec_ttl .en {
  color: #D0CDCC;
}
#sec_other .other_list .item._sustainable .sec_ttl .en::before, #sec_other .other_list .item._sustainable .sec_ttl .en::after {
  background-color: #D0CDCC;
}
#sec_other .other_list .item._sustainable .img {
  width: 49.55rem;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  #sec_other .other_list .item._sustainable .img {
    width: 14.7rem;
    bottom: -0.9rem;
  }
}
#sec_other .other_list .item._crosstalk {
  border: 1px solid #615F5C;
}
#sec_other .other_list .item._crosstalk .bg {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  margin: -1px;
}
@media screen and (min-width: 768px) {
  #sec_other .other_list .item a:hover .bg {
    scale: 1.08;
  }
}
#sec_other .btn_wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.2rem;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  #sec_other .btn_wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-top: 3.2rem;
  }
}
#sec_other .btn_wrap .btn a {
  width: 100%;
  min-width: inherit;
  min-height: 12.4rem;
}
@media screen and (max-width: 767px) {
  #sec_other .btn_wrap .btn a {
    min-height: 7.8rem;
  }
}
#sec_other .btn_wrap .btn a .btn_txt {
  letter-spacing: 0.075em;
}
@media screen and (max-width: 767px) {
  #sec_other .btn_wrap .btn a .btn_txt {
    font-size: 1.2rem;
    line-height: 1.4166666667;
  }
}

/* sec_recruit
--------------------------------*/
#sec_recruit {
  padding: 7.2rem 0 5.6rem;
  background-color: #181414;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #sec_recruit {
    padding: 2.7rem 0 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  #sec_recruit .wrap {
    padding: 0;
  }
}
#sec_recruit .ttl .en {
  display: block;
  color: #FFF8F6;
  font-weight: 900;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 2.7rem;
}
@media screen and (max-width: 767px) {
  #sec_recruit .ttl .en {
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
  }
}
#sec_recruit .ttl img {
  display: block;
  width: 49.9rem;
  object-fit: cover;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #sec_recruit .ttl img {
    width: 36.6rem;
  }
}
#sec_recruit .img_wrap {
  width: 112rem;
  height: 16.4rem;
  margin: 4.5rem auto 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #sec_recruit .img_wrap {
    left: calc(50% - 56rem);
    margin: 2rem auto 0;
  }
}
#sec_recruit .img_wrap::after {
  content: "";
  width: 43.3rem;
  height: 4.5rem;
  background: url(../img/index/recruit_hole_line.svg) no-repeat center bottom/contain;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  z-index: 2;
}
#sec_recruit .img_wrap .inner {
  width: 112rem;
  height: 112rem;
  border-radius: 50%;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  overflow: hidden;
}
#sec_recruit .img_wrap .hole {
  width: 43.3rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}
#sec_recruit .img_wrap .mascot {
  width: 30rem;
  position: absolute;
  left: calc(50% - 15.3rem);
  bottom: -4.6rem;
  z-index: 2;
  translate: 0 120%;
  transition: translate 0.3s ease;
  transition-delay: 0.5s;
  z-index: 1;
}
#sec_recruit.is-show .img_wrap .mascot {
  translate: 0 0;
}
#sec_recruit .recruit_btn {
  margin-top: 4.8rem;
}
@media screen and (max-width: 767px) {
  #sec_recruit .recruit_btn {
    margin-top: 6.2rem;
  }
}
#sec_recruit .recruit_btn a {
  width: 7.1rem;
  height: 7.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFF8F6;
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1;
  border: 1px solid #FFF8F6;
  border-radius: 50%;
  position: relative;
}
@media screen and (min-width: 768px) {
  #sec_recruit .recruit_btn a {
    transition: opacity 0.3s ease-out;
    cursor: pointer;
  }
  #sec_recruit .recruit_btn a:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  #sec_recruit .recruit_btn a {
    width: 10.3rem;
    height: 10.3rem;
    font-size: 3.5rem;
  }
}
#sec_recruit .recruit_btn a::before {
  content: "";
  width: 9.4rem;
  height: 3.4rem;
  background: url(../img/index/recruit_btn_deco.svg) no-repeat center top/contain;
  position: absolute;
  left: calc(50% - 4.5rem);
  top: -2.3rem;
}
@media screen and (max-width: 767px) {
  #sec_recruit .recruit_btn a::before {
    width: 13.6rem;
    height: 5rem;
    left: calc(50% - 6.4rem);
    top: -3.3rem;
  }
}

/* footer_visual
--------------------------------*/
#footer_visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #7A7875;
  overflow: hidden;
}
#footer_visual .img {
  flex-shrink: 0;
  width: 100%;
}

/* 英語ページ
--------------------------------*/
html[lang=en] #sec_fv .fv_ttl .txt {
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  html[lang=en] #sec_fv .fv_ttl .txt {
    line-height: 1.8;
  }
}
html[lang=en] #sec_fv .fv_link {
  position: absolute;
  right: -6.5rem;
  bottom: -12.3rem;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  html[lang=en] #sec_fv .fv_link {
    right: -1.3rem;
    bottom: -5.3rem;
  }
}
html[lang=en] #sec_fv .fv_link a {
  display: block;
  width: 33.8rem;
  height: 33.8rem;
  padding: 9.2rem 5rem;
  background-color: rgba(24, 20, 20, 0.8);
  border-radius: 50%;
  border: 1px solid #FFF8F6;
}
@media screen and (min-width: 768px) {
  html[lang=en] #sec_fv .fv_link a {
    transition: opacity 0.3s ease-out;
    cursor: pointer;
  }
  html[lang=en] #sec_fv .fv_link a:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  html[lang=en] #sec_fv .fv_link a {
    width: 14.6rem;
    height: 14.6rem;
    padding: 3.7rem 2rem;
  }
}
html[lang=en] #sec_fv .fv_link a::before {
  content: "";
  width: 39.7rem;
  height: 39.7rem;
  background: url(../img/index/fv_link_deco_pc.svg) no-repeat center/contain;
  animation: rotateCircle 20s linear infinite;
  position: absolute;
  left: -2.5rem;
  top: -2.5rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  html[lang=en] #sec_fv .fv_link a::before {
    width: 17.8rem;
    height: 17.8rem;
    left: -1.3rem;
    top: -1.3rem;
  }
}
html[lang=en] #sec_fv .fv_link .logo {
  width: 21.2rem;
}
@media screen and (max-width: 767px) {
  html[lang=en] #sec_fv .fv_link .logo {
    width: 10rem;
  }
}
html[lang=en] #sec_intro .intro_contents .ttl {
  letter-spacing: 0.1em;
}
html[lang=en] #sec_intro .intro_contents .txt_wrap .ttl._02 {
  letter-spacing: 0.05em;
}
html[lang=en] #sec_products .products_tab .tab_wrap .tab {
  letter-spacing: 0.05em;
}
html[lang=en] #sec_news .sec_ttl .en {
  display: none;
}

/* 中国語ページ
--------------------------------*/
html[lang=zh] #sec_fv .fv_ttl .txt {
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  html[lang=zh] #sec_fv .fv_ttl .txt {
    line-height: 1.8;
  }
}
html[lang=zh] #sec_products .products_tab .tab_wrap .tab {
  letter-spacing: 0.05em;
}
html[lang=zh] #sec_news .sec_ttl .en {
  display: none;
}