/* # =================================================================
   # フォント
   # ================================================================= */
@font-face {
	font-family: "en-font";
	src: url("../font/newyork.woff") format("woff"),url("../font/newyork.ttf") format("truetype");
  font-weight: 400;
}
 

/* # =================================================================
   # 変数
   # ================================================================= */
:root {
  --black: #1C1C1C;
  --light: #F5F5F5;
  --intv: min(15vw,180px);
  --intvS: min(15vw,140px);
  /*--ease: cubic-bezier(.04,.44,.43,.99);*/
}

/* # =================================================================
   # 共通要素
   # ================================================================= */
html {
	font-size: 62.5%;
}
body {
  font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
  font-weight: 300;
	color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.03em;
  background: var(--black);
  width: 100%;
  overflow-x: hidden;
}
@media screen and (max-width: 600px) {
  body {
    font-size: 1.4rem;
  }
}
  
img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
  transition: all 0.25s;
}
a {
	color: inherit;
	transition: all .25s;
	text-decoration: none;
}
a:hover img {
  filter: contrast(0.8) brightness(1.2);
}
a.hover:hover, .hover a:hover {
  opacity: 0.7;
}
h1, h2, h3 {
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
p {
  line-height: 1.8;
  letter-spacing: 0.03em;
}
p:not(:last-child) {
  margin-bottom: 1.5em;
}
*::before, *::after {
    position: absolute;
    transition: all 0.25s;
}
 



header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}
.hdInner {
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  padding: 0 min(30px,5vw);
}
.hdLogo {
  width: min(15vw,260px);
  padding-top: 22px;
}
.hdLingGroup {
}
.hdLingGroup .externalLinks {
  font-size: 1.4rem;
  text-align: right;
  margin-bottom: 5px;
}
.linkToEC span {
  margin-right: 0.2em;
}
.hdLingGroup .externalLinks + div {
  display: flex;
  flex-wrap: wrap;
}
.hdLingGroup .hdNavList {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: min(1.5vw,25px);
}
.hdLinkBtnGroup {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  margin-left: min(1.5vw,25px);
}
.hdLinkBtnGroup a {
  width: 8em;
  border-radius: 30px;
  display: grid;
  place-content: center;
  padding: 0.5em;
}
.hdLinkBtnGroup .btnHdRecruit {
  color: #FFF;
  background: var(--black);
  border: 1px solid var(--black);
}
.hdLinkBtnGroup .btnHdRecruit:hover {
  color: var(--black);
  background: var(--light);
}
.hdLinkBtnGroup .btnHdContact {
  font-weight: 400;
  color: var(--black);
  background: var(--light);
  border: 1px solid var(--light);
}
.hdLinkBtnGroup .btnHdContact:hover {
  color: var(--light);
  background: var(--black);
}
@media screen and (max-width: 1300px) {
  .hdInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
  }
  .hdLogo {
    width: 160px;
    padding-top: 0;
  }
  .drawer {
    display: none;
    background: rgba(110,110,110,0.8);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 50px 0 30px;
    backdrop-filter: blur(12px);
  }
  .hdLingGroup {
    opacity: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hdLingGroup .externalLinks {
    order: 2;
  }
  .hdLingGroup .externalLinks + div {
    justify-content: center;
  }
  .hdLingGroup .hdNavList {
    width: 100%;
    text-align: center;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
  }
  .hdLingGroup .hdNavList li {
    width: 100%;
  }
  .hdLingGroup .hdNavList a {
    display: block;
    width: 100%;
    padding: 0.5em 0;
  }
  .hdLinkBtnGroup {
    width: 220px;
    gap: 12px;
    margin: 0 auto 40px;
  }
  .hdLinkBtnGroup a {
    width: 100%;
    padding: 0.7em;
  }
}
.drawerOpen .hdLingGroup {
  animation: drawer 0.8s cubic-bezier(.12,.52,.41,.99) 0.1s forwards;
    -webkit-animation: drawer 0.8s cubic-bezier(.12,.52,.41,.99) 0.1s forwards;
}
@keyframes drawer {
    0% { opacity: 0; transform: translateY(15px); }
	100% { opacity: 1; transform: translateY(0); }
}
@-webkit-keyframes drawer {
	0% { opacity: 0; transform: translateY(15px); }
	100% { opacity: 1; transform: translateY(0); }
}



.toggle {
  display: none;
}
@media screen and (max-width: 1300px) {
  .toggle {
    display: block;
    position: relative;
    top: 0;
    width: 26px;
    height: 20px;
    z-index: 2;
  }
}
.toggle::before, .toggle::after {
  content: "";
  width: 100%;
  height: 2px;
  left: calc(50% - 13px);
  background: #FFF;
}
.toggle::before {
  top: 2px;
}
.toggle::after {
  top: 17px;
}
.toggle span {
  position: absolute;
  width: 100%;
  height: 2px;
  top: calc(50% - 1px);
  left: 50%;
  transform: translateX(-50%);
  background: #FFF;
  transition: all 0.2s;
}
.drawerOpen .toggle::before {
  top: 8px;
  transform: rotate(45deg);
}
.drawerOpen .toggle::after {
  top: 8px;
  transform: rotate(135deg);
}
.drawerOpen .toggle span {
  width: 0;
}






main {
  
}




.container {
  width: min(88%, 1300px);
	margin-left: auto;
	margin-right: auto;
}
.containerM {
  width: min(88%, 1100px);
	margin-left: auto;
	margin-right: auto;
}
.containerS {
  width: min(88%, 800px);
	margin-left: auto;
	margin-right: auto;
}



.scPb {
  padding-bottom: min(15vw,80px);
}
.scMa {
  margin-top: min(15vw,80px);
  margin-bottom: min(15vw,80px);
}
.scMb {
  margin-bottom: min(15vw,80px);
}
.relative {
  position: relative;
  z-index: 1;
}
.spInline {
    display: none;
}
@media screen and (max-width: 1200px) {
  .lgNone { display: none; }
}
@media screen and (max-width: 600px) {
  .spNone { display: none!important; }
  .spInline { display: inline; }
}
.bgWh {
    background-color: #FFF;
}
.txtCenter, .txtPcCenter { text-align: center; }
.underline { text-decoration: underline;}
a.underline:hover { text-decoration: none; }
@media screen and (max-width: 600px) {
  .txtPcCenter { text-align: left; }
}
.txtGold { color: var(--g); }


footer {
  padding: min(10vw,60px) 0;
}
.ftCntnt {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.ftLogo {
  width: 176px;
  margin-bottom: 10px;
}
.ftCntnt .addr {
  font-size: clamp(1.2rem,1.16vw,1.4rem);
  font-weight: 300;
}
.ftCntnt nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  font-size: 1.4rem;

  margin-bottom: 35px;
}
.ftCntnt nav ul {
  
}
.ftCntnt nav ul li:not(:last-child){
  margin-bottom: 0.7em;
}

.copyright {
  font-size: clamp(1rem,1vw,1.2rem);
}
@media screen and (max-width: 600px) {
  .ftProf {
    margin-bottom: 30px;
  }
  .ftCntnt nav {
    gap: 30px 40px;
    margin-bottom: 30px;
  }
  .ftCntnt nav ul {
    border-left: 1px solid #FFF;
    padding-left: 15px;
  }
  .ftCntnt .linkToEC {
    /*margin: 0 auto;*/
  }
  .copyright {
    text-align: right;
  }
}



/* 表示領域に入ったらフェードイン */
.motion.fade {
    opacity: 0;
}
.motion.fade.act {
    animation: fadeIn 0.8s ease-out 0s forwards;
    -webkit-animation: fadeIn 0.8s ease-out 0s forwards;
}
@keyframes fadeIn {
    0% { opacity: 0; }
	100% { opacity: 1; }
}
@-webkit-keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
} 



/* # =================================================================
   # トップページ
   # ================================================================= */
.topMv {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-bottom: min(7vw,90px);
}
.topMv img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  animation: blur 1.8s cubic-bezier(.15,.58,.62,.99) 0.8s forwards;
    -webkit-animation: blur 1.8s cubic-bezier(.15,.58,.62,.99) 0.8s forwards;
}
.topMv h1 {
  text-align: center;
  font-size: clamp(2.4rem,4vw,4.8rem);
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%,-50%);
  opacity: 0;
  animation: through 0.6s cubic-bezier(.49,.04,.66,.98) 0.2s forwards;
    -webkit-animation: through 0.6s cubic-bezier(.49,.04,.66,.98) 0.2s forwards;
}
@keyframes through {
    0% { opacity: 0; }
	100% { opacity: 1; }
}
@-webkit-keyframes through {
	0% { opacity: 0;}
	100% { opacity: 1; }
}
@keyframes blur {
    0% { opacity: 0; filter: blur(50px); }
	100% { opacity: 1; filter: blur(0); }
}
@-webkit-keyframes blur {
	0% { opacity: 0; filter: blur(50px); }
	100% { opacity: 1; filter: blur(0); }
}
@media screen and (max-width: 600px) {
  .topMv {
    height: 60vh;
  }
  .topMv img {
    height: 62vh;
  }
    
}
.topMsg {
  text-align: center;
  font-size: clamp(1.4rem,1.6vw,2rem);
  line-height: 1.8;
  margin-bottom: min(7vw,90px);
}
.streamImg {
  
}
.streamImg .rowFst, .streamImg .rowSnd {
  width: 100%;
  display: flex;
  overflow: hidden;
  position: relative;
}
.streamImg .rowFst {
  margin-bottom: 12px;
}
.streamImg .rowFst div:nth-of-type(1) {
  animation: streamAnime 100s linear -50s infinite;
}
.streamImg .rowFst div:nth-of-type(2) {
    position: absolute;
    animation: streamAnime 100s linear 0s infinite;
}
.streamImg .rowSnd div:nth-of-type(1) {
  animation: streamAnime2 100s linear -50s infinite;
}
.streamImg .rowSnd div:nth-of-type(2) {
    position: absolute;
    animation: streamAnime2 100s linear 0s infinite;
}
@keyframes streamAnime {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
@keyframes streamAnime2 {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.streamImg img {
  max-width: 500vw;
  width: 110vw;
}
@media screen and (max-width: 600px) {
  .streamImg .rowFst {
    margin-bottom: 6px;
  }
  .streamImg img {
    width: 220vw;
  }
}

.scTtlArea {
  text-align: center;
  margin-bottom: min(8vw,45px);
}
.scTtlArea .ttlEn {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(2.8rem,3.6vw,4.4rem);
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 0.03em;
}
.scTtlArea .scTtl {
  color: var(--color-g);
  font-size: clamp(1.2rem,1.5vw,1.8rem);
  font-weight: 300;
  letter-spacing: 0.08em;
}


#scTopFeature {
  padding: var(--intvS) 0 0;
  position: relative;
}
#scTopFeature::before {
  content: "";
  z-index: -1;
  width: min(34vw,550px);
  height: min(56vw,900px);
  top: 0;
  right: 0;
  background: url("../img/bg-obj-01.png") no-repeat right top / contain;
}
#scTopFeature::after {
  content: "";
  z-index: -1;
  width: min(36vw,590px);
  height: min(54vw,860px);
  bottom: 0;
  left: 0;
  background: url("../img/bg-obj-02.png") no-repeat left bottom / contain;
}
@media screen and (max-width: 600px) {
  #scTopFeature::before {
    width: 52vw;
    height: 90vw;
  }
  #scTopFeature::after {
    width: 62vw;
    height: 95vw;
  }
}
.featureCntnt {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  position: relative;
  background: rgba(69,69,69,0.7);
  /*padding: 0 min(4vw,90px) 40px;*/
  padding: 0 min(3.5vw,50px) 40px;
  margin-top: min(9vw,140px);
}
.inView {
  opacity: 0;
  transform: translateY(15px);  
}
.inView.visible {
  animation: itemFadein 0.8s cubic-bezier(.15,.58,.62,.99) 0s forwards;
    -webkit-animation: itemFadein 0.8s cubic-bezier(.15,.58,.62,.99) 0s forwards;
}
@keyframes itemFadein {
    0% { opacity: 0; transform: translateY(15px); }
	100% { opacity: 1; transform: translateY(0); }
}
@-webkit-keyframes itemFadein {
	0% { opacity: 0; transform: translateY(15px); }
	100% { opacity: 1; transform: translateY(0); }
}

@media screen and (max-width: 1400px) {
  .featureCntnt {
    margin-top: 6vw;
  }
}
.featureCntnt:nth-child(even) {
  justify-content: flex-start;
}
.featureCntnt img {
  width: min(38vw,580px);
  position: absolute;
  left: min(3.5vw,50px);
  bottom: 40px;
}
.featureCntnt:nth-child(even) img {
  left: auto;
  right: min(3vw,40px);
}
.featureCntnt .txt {
  width: min(50%,570px);
}
@media screen and (max-width: 1024px) {
  .featureCntnt {
    justify-content: center;
    padding: 20px 20px;
    margin: 50px auto 0;
  }
  .featureCntnt img {
    position: static;
    width: 100%;
    margin-bottom: 10px;
    /*width: 53vw;
    bottom: auto;
    top: 95px;
    left: auto;
    right: -6vw;
    transform: translateY(-100%);*/
  }
  .featureCntnt:nth-child(even) {
    justify-content: center;
  }
  /*.featureCntnt:nth-child(even) img {
    left: -6vw;
    right: auto;
  }*/
  .featureCntnt .txt {
    display: contents;
  }
}
.featureCntnt .num {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #BFBFBF;
  margin: -25px 0 15px;
}
.featureCntnt .num span {
  font-size: clamp(5rem,5vw,6rem);
  letter-spacing: 0;
  color: rgba(255,255,255,0);
  -webkit-text-stroke: 1px #BFBFBF;
  margin-left: 0.1em;
}
.featureCntnt h3 {
  font-size: clamp(1.9rem,2.6vw,3.2rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  color: var(--light);
  /*display: flex;
  flex-wrap: wrap;
  align-items: baseline;*/
  margin-bottom: 0.7em;
}
.featureCntnt h3 .txtLg {
  font-size: 1.2em;
  font-weight: 700;
  /*display: flex;
  align-items: baseline;*/
}
.odometer {
  font-size: 1.3em;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  color: #FFF;
  transform: translateY(-0.1em);
}
@media screen and (max-width: 1024px) {
  .featureCntnt .num {
    position: absolute;
    top: -13px;
    left: 0;
    font-size: 2.2rem;
  }
  .featureCntnt .num span {
    
  }
  .featureCntnt h3 {
    text-align: center;
  }
  .featureCntnt h3 .txtLg {
    
  }
  .odometer {
    font-size: 2em;
  }
  /*.featureCntnt:nth-child(even) .num, .featureCntnt:nth-child(even) h3 {
    margin-left: 43vw;
  }*/
}
sup {
  top: -1.6em;
  font-size: 0.4em;
}


#scTopBusiness {
  padding: var(--intv) 0 0;
}
.topBsnsRow {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.topBsnsRow .img {
  width: 46%;
}
.topBsnsRow .txt {
  width: 47%;
}
@media screen and (max-width: 600px) {
  .topBsnsRow .img {
    width: 100%;
    order: 2;
  }
  .topBsnsRow .txt {
    width: 100%;
    margin-bottom: 30px;
  }
}
#scTopBusiness .scTtlArea {
  text-align: left;
}
.bsnsTxtLink li {
  border-bottom: 1px solid #FFF;
}
.bsnsTxtLink a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(1.6rem,2.2vw,2.6rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.8em 0;
}
.bsnsTxtLink a > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(1.2rem, 1.2vw, 1.4rem);
  font-weight: 400;
  column-gap: 5px;
  transition: all 0.25s;
}
.circleArrow {
  display: block;
  background: #D0D0D0;
  border: 1px solid #D0D0D0;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  position: relative;
  transition: all 0.25s;
}
.circleArrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-54%,-50%);
}
.bsnsTxtLink a:hover {
  color: #D0D0D0;
}
.bsnsTxtLink a:hover .circleArrow {
  background: transparent;
}
.bsnsTxtLink a:hover .strokeChange {
  stroke: #D0D0D0;
}
@media screen and (max-width: 600px) {
  .circleArrow {
    width: 34px;
    height: 34px;
  }
  .circleArrow svg {
    width: 18px;
  }
}
#scTopProduct {
  position: relative;
  padding: var(--intv) 0;
}
#scTopProduct::before {
  content: "";
  z-index: -1;
  width: min(38vw,580px);
  height: min(40vw,600px);
  top: 0;
  right: 0;
  background: url("../img/bg-obj-03.png") no-repeat right top / contain;
}
@media screen and (max-width: 600px) {
  #scTopProduct::before {
    width: 70vw;
    height: 90vw;
    top: -10vw;
  }
}
.brandItemFr a {
  background: #404040;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: min(5vw,35px);
}
.brandItemFr img {
  width: 50%;
}
.brandItemFr .txt {
  width: 50%;
  padding: min(5vw,60px) 40px;
}
.brandItemFr .catch {
  font-size: clamp(1.4rem,1.5vw,1.8rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 0.1em;
}
.brandItemFr .brandName {
  font-size: clamp(2.2rem,2.5vw,3rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: min(2vw,0.8em);
}
@media screen and (max-width: 1024px) {
  .brandItemFr img {
    width: 100%;
  }
  .brandItemFr .txt {
    width: 100%;
    padding: min(5vw,60px) 5vw;
  }
  .brandItemFr .catch {
    line-height: 1.2;
    margin-bottom: 0;
  }
}
.brandItemFr p {
  margin-bottom: min(4vw,40px);
}
.alignR {
  text-align: right;
}
.alignR .linkCircleArr {
  justify-content: flex-end;
}
.linkCircleArr {
  display: flex;
  column-gap: 0.5em;
  align-items: center;
  font-size: clamp(1.2rem,1.2vw,1.4rem);
  letter-spacing: 0.05em;
  transition: all 0.25s;
}
.linkCircleArr span {
  display: block;
  background: #D0D0D0;
  border: 1px solid #D0D0D0;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  position: relative;
  transition: all 0.25s;
}
.linkCircleArr svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-54%, -50%);
}
@media screen and (max-width: 600px) {
  .linkCircleArr span {
    width: 34px;
    height: 34px;
  }
  .linkCircleArr svg {
    width: 18px;
  }
}
.strokeChange {
  transition: all 0.25s;
}
.linkCircleArr:hover, a:hover .linkCircleArr {
  color: #D0D0D0;
}
.linkCircleArr:hover span, a:hover .linkCircleArr span {
  background: transparent;
}
.linkCircleArr:hover .strokeChange, a:hover .linkCircleArr .strokeChange {
  stroke: #D0D0D0;
}
.brandItemRow {
  display: flex;
  flex-wrap: wrap;
  gap: min(5vw,40px) 3.5%;
}
.brandItemCol {
  background: #404040;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .brandItemCol:nth-child(-n+2) {
    width: calc(96.5%/2);
  }
  .brandItemCol:nth-child(n+3) {
    width: 31%;
  }
}
.brandItemCol img {
  width: 200%;
}
.brandItemCol .txt {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.brandItemCol .brandName {
  font-size: clamp(1.6rem,4.3vw,1.8rem);
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1024px) {
  .brandItemCol .txt {
    height: 52px;
  }
}

#scTopWorks {
  margin-bottom: var(--intv);
}
#scTopWorks .scTtlArea {
  margin-bottom: min(5vw, 20px);
}
.worksPickup {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: var(--black);
  font-weight: 400;
  grid-row-gap: 5vw;
}
.worksPickup .item {
  width: 48.4%;
  background: linear-gradient(180deg,#1C1C1C 18%, #FFF 18%);
  background: -webkit-linear-gradient(270deg,#1C1C1C 18%, #FFF 18%);
  padding: 0 5% 5%;
}
.worksPickup .img {
   width: min(80%,320px);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  /*aspect-ratio: 500 / 360;*/
  object-fit: cover;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0 auto 15px;
}
@media screen and (max-width: 600px) {
  .worksPickup .item {
    width: 100%;
  }
}
.worksPickup .sideLine {
  border-left: 5px solid var(--black);
  letter-spacing: 0.05em;
  font-size: clamp(2rem,2.5vw,3rem);
  min-height: 2.3em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 0.66em;
  margin-bottom: 0.5em;
}
.worksPickup .client {
  font-size: clamp(1.6rem,1.6vw,2rem);
}
.worksPickup .productName {
  line-height: 1.4;
  font-weight: 500;
  width: 100%;
}
.worksPickup ul {
  font-size: clamp(1.4rem,1.3vw,1.6rem);
  margin-bottom: 20px;
}

#scTopNews {
  position: relative;
}
.topNewsBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border: 1px solid #FFF;
  padding: min(8vw,90px) min(8vw,100px);
}
.topNewsBox .colTtl {
  width: 280px;
}
.topNewsBox .scTtlArea {
  text-align: left;
}
.topNewsBox .newsList {
  width: calc(100% - 280px);
}
@media screen and (max-width: 600px) {
  .topNewsBox .colTtl {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .topNewsBox .linkCircleArr {
    margin-top: 7px;
  }
  .topNewsBox .newsList {
    width: 100%;
  }
}
.newsList li {
  border-bottom: 1px solid #FFF;
  padding: 0 20px;
}
.newsList li:not(:last-of-type) {
  margin-bottom: 0.7em;
}
.newsList li a {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0 0.6em;
}
.newsList .date {
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.05em;
  font-weight: 300;
  line-height: 1.8;
  width: 8em;
  color: #B5B5B5;
}
.newsList .postTtl {
  width: calc(100% - 8em);
}
@media screen and (max-width: 600px) {
  .newsList li {
    padding: 0;
  }
  .newsList .date {
    font-size: 1.2rem;
    line-height: 2.2;
    width: 100%;
  }
  .newsList .postTtl {
    width: 100%;
  }
}

#scTopNews::before {
  content: "";
  z-index: -1;
  width: min(25vw,380px);
  height: min(50vw,750px);
  bottom: 0;
  left: 0;
  background: url("../img/bg-obj-04.png") no-repeat right bottom / cover;
}
@media screen and (max-width: 600px) {
  #scTopNews::before {
    width: 56vw;
  }
}

#scTopMedia {
  /*padding: min(9vw,140px) 0;*/
  margin: var(--intv) 0;
}
.mediaAnmt, .mediaAnmtSnd {
  width: 100%;
  display: flex;
  overflow: hidden;
  position: relative;
}
.mediaAnmtSnd {
  margin-top: min(4vw,20px);
}
.mediaAnmt div:nth-of-type(1) {
  animation: streamAnime 110s linear -55s infinite;
}
.mediaAnmt div:nth-of-type(2) {
  position: absolute;
  animation: streamAnime 110s linear 0s infinite;
}

.mediaAnmtSnd div:nth-of-type(1) {
    animation: streamAnime2 110s linear -55s infinite;
}
.mediaAnmtSnd div:nth-of-type(2) {
    position: absolute;
    animation: streamAnime2 110s linear 0s infinite;
}
.mediaAnmt img, .mediaAnmtSnd img {
  max-width: 500vw;
  height: min(2.4vw,28px);
  /*width: min(90vw,1455px);*/
}
@media screen and (max-width: 600px) {
  .mediaAnmt img, .mediaAnmtSnd img {
    height: 18px;
  }
}
/* スライドの動き等速 */
.mediaSl .swiper-wrapper {
  transition-timing-function: linear;
}
/* 画像のサイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}

#scTopFaq {
  position: relative;
  margin: var(--intv) 0;
}
#scTopFaq::before {
  content: "";
  z-index: -1;
  width: min(34vw,500px);
  height: min(47vw,690px);
  top: -10vw;
  right: 0;
  background: url("../img/bg-obj-05.png") no-repeat right bottom / cover;
}
@media screen and (max-width: 600px) {
  #scTopFaq::before {
    width: 57vw;
    height: 68vw;
  }
}
.topFaqBox {
  border: 1px solid #FFF;
  padding: min(8vw, 90px) min(8vw, 100px);
}
.faqAcDList li {
  border-bottom: 1px solid #FFF;
}
.faqAcDList li:not(:last-child) {
  margin-bottom: 0.8em;
}
.faqAcDList .acdQes {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  column-gap: 0.8em;
  padding: 0 0 15px;
  cursor: pointer;
}
.alpQ, .alpA {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem,5.2vw,2.4rem);
  line-height: 1;
  font-weight: 700;
  display: grid;
  place-content: center;
  
  width: 40px;
  height: 40px;
  transform: translateY(0.05em);
}
.alpQ {
  color: var(--black);
  background: var(--light);
}
.alpA {
  background: #666;
}
.faqAcDList .question {
  width: calc(100% - 90px);
  font-size: clamp(1.4rem,1.5vw,1.8rem);
}
.acdSwitch {
  position: absolute;
  top: calc(50% - 18px);
  right: 0;
  background: var(--light);
  width: 22px;
  height: 22px;
  border-radius: 50%;
}
.acdSwitch::before, .acdSwitch::after {
  top: 50%;
  left: 50%;
  width: 60%;
  height: 1px;
  margin: auto;
  background: var(--black);
  content: "";
  transform: translate(-50%,-50%);
}
.acdSwitch::after {
  transform: translate(-50%,-50%) rotate(90deg);
}
.open .acdSwitch::after {
  transform: translate(-50%,-50%);
}
.acdAns {
  display: none;
}
.acdAns > div {
  display: flex;
  align-items: baseline;
  column-gap: 0.8em;
  padding: 0 0 40px;
}
.acdAns .answer {
  width: calc(100% - 90px);
}
@media screen and (max-width: 600px) {
  .faqAcDList .acdQes {
  }
  .alpQ, .alpA {
    width: 30px;
    height: 30px;
  }
  .faqAcDList .question {
    width: calc(100% - 70px);
  }
  .acdSwitch {
    top: 7px;
    width: 18px;
    height: 18px;
  }
  .acdAns > div {
    padding: 0 0 25px;
  }
  .acdAns .answer {
    width: calc(100% - 70px);
  }
}
.btnContainer {
  text-align: center;
  margin-top: min(6vw,40px);
}
.btnContainer .linkCircleArr {
  justify-content: center;
}

#scTopBlog {
  margin-bottom: var(--intv);
}
.blogList {
  display: flex;
  flex-wrap: wrap;
  gap: 20px calc(8%/3);
  margin-bottom: min(8vw,50px);
}
.blogList > li {
  width: 23%;
}
.blogList li a {
  display: block;
}
.blogList .thumb {
  margin-bottom: 10px;
}
.blogList .thumb img {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
@media screen and (max-width: 600px) {
  .blogList {
    gap: 3vw 6.4%;
  }
  .blogList > li {
    width: 46.8%;
  }
  .blogList .blogTtl {
    font-size: 1.4rem;
  }
}
/*@media screen and (max-width: 600px) {
  .blogList {
  }
  .blogList > li {
    width: 100%;
  }
  .blogList li a {
    display: flex;
    flex-wrap: wrap;
    padding: 8px;
  }
  .blogList .thumb {
    width: 46%;
    margin: 0;
  }
  .blogList .txt {
    width: 54%;
    padding-left: 8px;
  }
}*/
.blogList .dateArea {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 6px;
  margin-bottom: 3px;
}
.blogList .date {
font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
}
.blogList .dateArea .cate {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em 0.6em;
}
.blogList .dateArea .cate li {
  font-size: 1.1rem;
  line-height: 1.4;
  color: #B5B5B5;
  border: 1px solid #B5B5B5;
  padding: 0 0.2em;
}

#scTopAbout {
  background: rgba(69, 69, 69, 0.7);
  padding: var(--intvS) 0;
  position: relative;
}
#scTopAbout::before {
  content: "";
  background: url("../img/top-about-bg.jpg") no-repeat center center / cover;
  top: 0;
  bottom: 0;
  right: 0;
  width: 30%;
  z-index: 0;
}
#scTopAbout .scTtlArea {
  text-align: left;
}
#scTopAbout .cntnt {
  width: min(52vw,740px);
}
#scTopAbout .img {
  position: absolute;
  right: 4%;
  bottom: 8%;
  width: min(35vw,600px);
  z-index: 1;
}
@media screen and (max-width: 600px) {
  #scTopAbout::before {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 46vw;
    /*width: 130%;
    height: 64vw;
    right: -22%;
    bottom: -8%;
    transform: rotate(-22deg);*/
  }
  #scTopAbout .cntnt {
    width: 100%;
    margin-bottom: 48vw;
  }
  #scTopAbout .img {
    width: 56vw;
    right: 4%;
    bottom: 0;
  }
}
#scTopAbout h3 {
  font-size: clamp(2rem,1.8vw,2.4rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: min(7vw,45px) 0 0.6em;
}

#scContactLink {
  background: url("../img/contact-link-bg.jpg") no-repeat center bottom / cover;
  padding: min(10vw,60px) 0;
}
.contactLinkRow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 30px;
}
.contactLinkRow .item {
  text-align: center;
  width: min(100%,380px);
}
.contactLinkRow .item p {
  font-size: clamp(1.6rem,4.2vw,1.8rem);
  margin-bottom: 0.5em;
  letter-spacing: 0.05em;
}
.contactLinkRow a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  width: 100%;
  height: 100px;
  border-radius: 50px;
  border: 1px solid var(--black);
}
@media screen and (max-width: 600px) {
  .contactLinkRow .item {
    width: 300px;
  }
  .contactLinkRow a {
    height: 76px;
  }
}
.btnLgTel {
  background: var(--black);
}
.btnLgTel .telNum {
  display: flex;
  align-items: baseline;
  column-gap: 0.1em;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.6rem,1.8vw,2.2rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.03em;
}
.btnLgTel .telNum span:nth-child(2) {
  font-size: 1.45em;
}
.btnLgTel .hours {
  font-size: clamp(1.2rem,3.3vw,1.4rem);
  font-weight: 300;
}
.btnLgForm {
  background: #FFF;
  color: var(--black);
  font-size: clamp(1.6rem,4.2vw,1.8rem);
  column-gap: 15px;
}



.slArea {
  width: 100%;
  overflow: hidden;
}





/* # =================================================================
   # エンドー鞄について
   # ================================================================= */
.subpageTtlArea {
  height: 300px;
  text-align: center;
  display: grid;
  place-content: center;
  /*color: var(--black);*/
  /*background: #D0D0D0;*/
  background: #404040;
  padding-top: 30px;
}
@media screen and (max-width: 600px) {
  .subpageTtlArea {
    height: 180px;
    padding-top: 20px;
  }
}
.subpageTtlEng {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-size: clamp(3.2rem,4.3vw,5.2rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.08em;
  margin-bottom: 0.2em;
}
.subpageTtl {
  font-size: clamp(1.2rem,1.5vw,1.8rem);
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--black);
}
.subpageTtl span {
  background: #FFF;
  padding: 0 0.8em;
}

#scAbout {
  padding: 0 0 var(--intvS);
}
#scAbout .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#scAbout .txt {
  width: 50%;
}
#scAbout p {
  line-height: 2;
}
#scAbout .img {
  width: 46%;
}
@media screen and (max-width: 600px) {
  #scAbout .txt {
    width: 100%;
    order: 2;
  }
  #scAbout .img {
    width: 100%;
    margin-bottom: 20px;
  }
}
#scAbout h2 {
  font-size: clamp(2.2rem,3vw,3.6rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: min(4vw,30px);
}
#scAbout h2 span {
  font-size: 1.2em;
  padding: 0 0.3em;
  margin-right: 0.2em;
}

#scAboutPride {
  background-color: #D5D2CC;
  background-image: url("../img/pride-bg.jpg");
  background-repeat: no-repeat;
  background-position: left -10vw bottom ;
  background-size: 63vw;
  color: var(--black);
  position: relative;
  padding: var(--intvS) 0;
}
/*#scAboutPride::before {
  content: "";
  
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
}*/
@media screen and (max-width: 1920px) {
  #scAboutPride {
    background-position: right 45vw bottom ;
    background-size: contain;
    /*background-position: left -10vw bottom ;*/
  }
}
@media screen and (max-width: 1024px) {
  #scAboutPride {
    background-size: cover;
  }
}
@media screen and (max-width: 600px) {
  #scAboutPride {
    background-image: url("../img/pride-bg-sp.jpg");
    background-position: center top ;
    background-size: contain;
    padding-top: 70vw;
  }
}
#scAboutPride .container {
  
}
#scAboutPride .cntnt {
  width: min(60%,620px);
  margin: 0 0 0 auto;
}
#scAboutPride h2 {
  font-size: clamp(2.2rem,3vw,3.6rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: min(4vw,30px);
}
#scAboutPride p {
  line-height: 2;
  font-weight: 400;
}

@media screen and (max-width: 600px) {
  #scAboutPride .cntnt {
    width: 100%;
  }
  #scAbout h2, #scAboutPride h2 {
    text-align: center;
  }
}

/* # =================================================================
   # 製造販売
   # ================================================================= */
#scStartingPoint {
  padding: 0 0 var(--intv);
}
#scStartingPoint h2, #scFactory h2 {
  text-align: center;
  font-size: clamp(2rem,2.6vw,3.2rem);
  font-weight: 500;
  margin-bottom: 0.6em;
}
#scStartingPoint h2 span, #scFactory h2 span {
  font-size: 0.56em;
  display: block;
}
#scStartingPoint h2 + p {
  text-align: center;
}
.productionProcess {
  margin-top: 80px;
}
.process {
  position: relative;
  padding-top: 100px;
}
.process:not(:last-of-type) {
  margin-bottom: 140px;
}
.productionProcess .img {
  position: absolute;
  top: 0;
  width: 54%;
  z-index: 1;
}
.productionProcess .process:nth-child(even) .img {
  right: 0;
}
.process .txt {
  border: 1px solid #FFF;
  width: 50%;
  min-height: 340px;
  display: grid;
  place-content: center;
  position: relative;
}
.process:not(:last-of-type) .txt::after {
  content: "";
  width: 520px;
  height: 1px;
  background: #FFF;
  bottom: -120px;
  
}
.productionProcess .process:nth-child(odd) .txt::after {
  left: -73%;
  transform: rotate(-30deg);
}
.productionProcess .process:nth-child(even) .txt::after {
  left: 73%;
  transform: rotate(30deg);
}
.productionProcess .process:nth-child(odd) .txt {
  padding: 70px 50px 70px 90px;
  margin: 0 0 0 auto;
}
.productionProcess .process:nth-child(even) .txt {
  padding: 70px 90px 70px 50px;
}
@media screen and (max-width: 600px) {
  .process {
    padding-top: 0;
  }
  .process:not(:last-of-type) {
    margin-bottom: 80px;
  }
  .productionProcess .img {
    position: relative;
    width: 80%;
    margin-bottom: -15px;
  }
  .productionProcess .process:nth-child(even) .img {
    margin-left: auto;
    margin-right: 0;
  }
  .process .txt, .productionProcess .process:nth-child(odd) .txt, .productionProcess .process:nth-child(even) .txt {
    width: 90%;
    min-height: auto;
    padding: 40px 30px;
  }
  .process:not(:last-of-type) .txt::after {
    width: 200px;
    bottom: -60px;
  }
  .productionProcess .process:nth-child(odd) .txt::after {
    left: 28%;
    transform: rotate(50deg);
  }
  .productionProcess .process:nth-child(even) .txt::after {
    left: 3%;
    transform: rotate(-50deg);
  }
}
.process h3 {
  font-size: clamp(1.8rem,2.5vw,3rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: min(3vw,30px);
}
#scFactory {
  position: relative;
  padding: 0 0 var(--intv);
}
#scFactory::before {
  content: "";
  top: 0;
  left: 0;
  width: calc(50vw + 120px);
  height: 980px;
  background: url("../img/production-base.png") no-repeat right top / 995px;
  z-index: -2;
}
#scFactory::after {
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 440px;
  background: linear-gradient(180deg, rgba(28,28,28,0) 0%, rgba(28,28,28,1) 50%);
  background: -webkit-linear-gradient(270deg, rgba(28,28,28,0) 0%, rgba(28,28,28,1) 50%);
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  #scFactory::before {
    width: 55vw;
    height: 100vw;
    background-size: 145%;
  }
  #scFactory::after {
    height: 550px;
    background: linear-gradient(180deg, rgba(28,28,28,0) 0%, rgba(28,28,28,1) 30%);
    background: -webkit-linear-gradient(270deg, rgba(28,28,28,0) 0%, rgba(28,28,28,1) 30%);
  }
}
@media screen and (max-width: 820px) {
  #scFactory::before {
    width: 88%;
    height: 95vw;
    left: -2%;
    background-position: center top;
    background-size: contain;
  }
  #scFactory::after {
    height: 25vw;
    bottom: auto;
    top: 95vw;
    transform: translateY(-100%)
  }
}
#scFactory .cntnt {
  width: 400px;
  margin: 50px 0 min(10vw,80px) auto;
}
#scFactory .country {
  border: 1px solid #FFF;
  padding: 20px 60px;
  margin-bottom: 20px;
}
#scFactory .country h3 {
  font-size: clamp(1.8rem,2.3vw,2.8rem);
  margin-bottom: 0.2em;
}
#scFactory .country ul {
  padding-left: 0.3em;
}
#scFactory .country li {
  position: relative;
  line-height: 1.8;
  padding-left: 1em;
}
#scFactory .country li::before {
  content: "";
  top: 0.9em;
  left: 0;
  width: 0.4em;
  height: 1px;
  background: #FFF;
}
#scFactory .cntnt + p {
  text-align: center;
}
@media screen and (max-width: 820px) {
  #scFactory .cntnt {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 70vw auto min(4vw,30px);
  }
  #scFactory .country {
    width: 48%;
  }
}
@media screen and (max-width: 600px) {
  #scFactory .country {
    border: none;
    width: 100%;
    padding: 0 40px;
    margin-bottom: 25px;
  }
  #scFactory .country h3 {
    border-bottom: 1px solid #FFF;
    padding-bottom: 0.2em;
    margin-bottom: 0.3em;
  }
  #scFactory .cntnt + p {
    text-align: left;
  }
}


/* # =================================================================
   # OEM・ODM
   # ================================================================= */
#scOemReason {
  padding: 0 0 var(--intv);
}
.scJpTtlArea {
  text-align: center;
  margin-bottom: min(8vw,45px);
}
.scJpTtlArea .ttlEn {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.5rem,2vw,2.4rem);
  line-height: 1;
  letter-spacing: 0.05em;
  color: #BFBFBF;
  margin-bottom: 0.03em;
}
.scJpTtlArea .scTtl {
  font-size: clamp(2.4rem,3vw,3.6rem);
  font-weight: 500;
  letter-spacing: 0.08em;
}
.oemReason .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  grid-row-gap: 40px;
}
.oemReason .row .block:nth-child(-n+3) {
  width: 32%;
}
.oemReason .row .block:nth-child(n+4) {
  width: calc(94%/4);
}
.oemReason .block img {
  margin-bottom: 20px;
}
.oemReason .block h3 {
  font-size: clamp(1.8rem,2.2vw,2.6rem);
  font-weight: 700;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 600px) {
  .oemReason .row .block {
    width: 100%!important;
  }
}

#scOemProbrem {
  margin-bottom: var(--intv);
}
.probremGroup {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  grid-row-gap: 20px;
  margin-bottom: 50px;
}
.probremGroup .block {
  color: var(--black);
  background: #FFF;
  width: 23.8%;
  padding: 30px;
}
.probremGroup h3 {
  text-align: center;
  font-size: clamp(1.5rem,2vw,2.4rem);
  letter-spacing: 0;
  margin-bottom: 0.7em;
}
@media screen and (min-width: 601px) {
  .probremGroup div.block:nth-of-type(8) h3 {
    letter-spacing: -0.05em;
  }
}
.probremGroup .icon {
  text-align: center;
  margin: 0 auto 15px;
}
@media screen and (max-width: 600px) {
  .probremGroup {
    grid-row-gap: 15px;
  }
  .probremGroup .block {
    width: 100%;
  }
  .probremGroup .icon {
    width: 30%;
    margin: 0 auto 10px;
  }
}
.probremGroup p {
  line-height: 1.6;
  font-weight: 400;
}
.prbEmphasis {
  text-align: center;
  font-size: clamp(2.2rem,3vw,3.6rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  margin-bottom: 0.7em;
}
.prbEmphasis span:nth-of-type(2) {
  font-size: 1.27em;
}
.prbEmphasisMid {
  text-align: center;
  font-size: clamp(1.8rem,2.3vw,2.8rem);
  font-weight: 600;
  letter-spacing: 0.1em;
}
.prbEmphasisMid span {
  position: relative;
  display: inline-block;
}
.prbEmphasisMid > span::after {
  content: "";
  height: 1px;
  left: -0.3em;
  right: 0;
  bottom: -0.3em;
  background: #FFF;
}
.prbEmphasisMid .dot {
  font-size: 1.14em;
  margin-right: 0.2em;
}
.prbEmphasisMid .dot::before {
  content: "";
  top: -0.1em;
  left: 0.43em;
  right: 0.43em;
  height: 6px;
  background: url("../img/border-dot.png") no-repeat center center / contain;
}

#scOemProduct {
  background: linear-gradient(180deg,#1C1C1C 55%, #909090 55%);
  background: -webkit-linear-gradient(270deg,#1C1C1C 55%, #909090 55%);
  padding: 0 0 var(--intvS);
}
.oemProductSome {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  grid-row-gap: 30px;
}
.oemProductSome a {
  /*background: #404040;*/
  background: var(--black);
  display: block;
  width: 32%;
}
.oemProductSome .txt {
  padding: 20px;
}
@media screen and (max-width: 600px) {
  #scOemProduct {
    background: var(--black);
  }
  .oemProductSome a {
    width: 100%;
  }
  .oemProductSome .txt {
    padding: 15px 0 0;
  }
}
.oemProductSome .catchword {
  font-size: clamp(1.8rem,2.3vw,2.8rem);
  font-weight: 500;
}
.oemProductSome h3 {
  font-size: clamp(1.6rem,1.8vw,2.2rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.8em;
}
.oemProductSome p {
  font-size: 1.5rem;
}
#scOemInquiry {
  margin: var(--intvS) 0 var(--intv);
}
#scOemInquiry h2 {
  text-align: center;
  font-size: clamp(2.2rem,3vw,3.6rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: min(4vw,30px);
}
.oemInquiry {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  grid-row-gap: 25px;
  margin-bottom: 40px;
}
.oemInquiry > div {
  width: 23%;
}
.oemInquiry .icon {
  text-align: center;
  margin-bottom: 10px;
}
.oemInquiry h3 {
  text-align: center;
  font-size: clamp(1.8rem,1.6vw,2rem);
  font-weight: 500;
  margin-bottom: 0.3em;
}
.oemInquiry .cnslt {
  border: 1px solid #FFF;
  font-size: clamp(1.2rem,1.25vw,1.5rem);
  width: 100%;
  padding: min(3vw,20px) 25px;
}
.oemInquiry + p {

}
@media screen and (max-width: 600px) {
  .oemInquiry > div {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .oemInquiry .icon {
    width: 80px;
  }
  .oemInquiry h3 {
    text-align: left;
    width: calc(100% - 90px);
  }
}
#scOemVoice {
  margin-bottom: var(--intv);
}
.oemVoice {
  
}
.oemVoice > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.oemVoice > div:not(:last-of-type) {
  margin-bottom: min(8vw,40px);
}
.oemVoice .voiceCustomer {
  width: 150px;
  text-align: center;
}
.oemVoice > div:nth-of-type(even) .voiceCustomer {
  order: 2;
}
.oemVoice .voice {
  width: calc(100% - 170px);
  font-weight: 400;
  color: var(--black);
  background: var(--light);
  position: relative;
  padding: 25px 25px;
}
.oemVoice .voice::before {
  content: "";
  border-top: 12px solid transparent;
  border-right: 18px solid var(--light);
  border-bottom: 12px solid transparent;
  top: 48px;
}
.oemVoice > div:nth-of-type(odd) .voice::before {
  left: -18px;
}
.oemVoice > div:nth-of-type(even) .voice::before {
  right: -18px;
  transform: scale(-1, 1);
}
.oemVoice .icon {
  margin: 0 auto 5px;
}
.oemVoice .area {
  font-size: 1.4rem;
}
@media screen and (max-width: 600px) {
  .oemVoice .voiceCustomer {
    width: 100%;
    margin-bottom: 20px;
  }
  .oemVoice > div:nth-of-type(even) .voiceCustomer {
    order: 0; 
  }
  .oemVoice .voice {
    width: 100%;
  }
  .oemVoice .voice::before {
    top: -18px;
    left: calc(50% - 9px)!important;
    right: auto!important;
    transform: rotate(90deg)!important;
  }
  .oemVoice .icon {
    width: 100px;
  }
}
#scOemCase {
  margin-bottom: var(--intv);
}
.btnRoundWh {
  background: #FFF;
  color: var(--black);
  font-size: clamp(1.6rem, 4.2vw, 1.8rem);
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 15px;
  width: 220px;
  height: 70px;
  border-radius: 50px;
  border: 1px solid var(--black);
  margin: 0 auto;
}
#scOemCase .streamImg {
  margin-top: min(5vw,50px);
}
#scOemShowroom {
  margin-bottom: var(--intv);
}
.srNationwide {
  position: relative;
  /*background: url("../img/showroom-map.png") no-repeat left 38% top / 628px;*/
  padding-bottom: 150px;
}
.srNationwide .map {
  text-align: center;
  width: min(54%,628px);
  margin: 0 0 auto 19%;
}
.srNationwide .showroom {
  position: absolute;
  background: #404040;
  width: min(35%,480px);
  z-index: 1;
}
.srNationwide .showroom:nth-of-type(1){
  top: 0;
  left: 0;
}
.srNationwide .showroom:nth-of-type(2){
  top: 23%;
  right: 0;
}
.srNationwide .showroom:nth-of-type(3){
  bottom: 0;
  right: 8%;
}
@media screen and (max-width: 1200px) {
  .srNationwide {

  }
  .srNationwide .map {
    width: 60%;
    margin: -100px auto 10px;
  }
  .srNationwide .showroomList {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    grid-row-gap: 20px;
  }
  .srNationwide .showroom {
    position: static;
    width: 32%;
  }
}
@media screen and (max-width: 600px) {
  .srNationwide .map {
    width: 80%;
    margin: -30px auto 10px;
  }
  .srNationwide .showroom {
    width: 100%;
  }
}
.srNationwide .showroom > div {
  padding: 20px;
}
.showroom h3 {
  font-size: clamp(1.8rem,2.3vw,2.8rem);
  font-weight: 500;
  margin-bottom: 0.3em;
}

#scOemFlow {
  margin-bottom: var(--intv);
}
.oemFlow {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  grid-row-gap: 60px;
  position: relative;
}
.oemFlow li {
  background: var(--light);
  color: var(--black);
  width: 18.4%;
  position: relative;
  padding: min(1.8vw,25px);
}
.oemFlow li:nth-child(1)::before, .oemFlow li:nth-child(6)::before {
  content: "";
  left: 100px;
  width:  min(70vw, 1100px);
  top: 50%;
  height: 5px;
  transform: translateY(-50%);
  background: var(--light);
  z-index: -1;
}
.oemFlow li:nth-child(1)::after {
  content: "";
  left: min(7.6vw,116px);
  bottom: -71px;
  width:  min(71.4vw, 1066px);
  height: 82px;
  background: url("../img/flow-line.png") no-repeat center center / contain;
}
@media screen and (max-width: 1200px) {
  .oemFlow {
    grid-row-gap: 40px;
  }
  .oemFlow li:nth-child(1)::after {
    bottom: -61px;
  }
}
.oemFlow .flowStep {
  text-align: center;
  display: grid;
  place-content: center;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  line-height: 1.2;
  color: var(--light);
  background: var(--black);
  width: 80px;
  height: 80px;
  border-radius: 40px;
  margin: 0 auto 10px;
}
.oemFlow .flowStep span {
  font-size: 1.88em;
  font-weight: 400;
  line-height: 1.1;
}
.oemFlow h3 {
  text-align: center;
  font-size: clamp(2rem,1.6vw,2rem);
  margin-bottom: 0.3em;
}
.oemFlow .icon {
  text-align: center;
  margin-bottom: 8px;
}
.oemFlow p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .oemFlow {
    grid-row-gap: 20px;
  }
  .oemFlow::before {
    content: "";
    width: 3px;
    left: 50%;
    top: 0;
    bottom: 0;
    transform: translateX(-50%);
    background: var(--light);
    z-index: -1;
  }
  .oemFlow li {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 10px;
  }
  .oemFlow li::before, .oemFlow li:nth-child(1)::after {
    content: none!important;
  }
  .oemFlow .flowStep {
    width: 64px;
    height: 64px;
    font-size: 1.3rem;
    margin: 0;
  }
  .oemFlow .icon {
    width: 60px;
    order: 3;
    margin: 0;
  }
  .oemFlow .txt {
    width: calc(100% - 130px);
    padding-left: 8px;
  }
  .oemFlow h3 {
    text-align: left;
    margin-bottom: 0.1em;
  }
  .oemFlow p {
    line-height: 1.4;
  }
}

/* # =================================================================
   # 企業情報
   # ================================================================= */
#scMessage {
  padding: 0 0 var(--intv);
}
#scMessage .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#scMessage .row .txt {
  width: 50%;
}
#scMessage .row .img {
  width: 47%;
}
#scMessage .scTtlArea {
  text-align: left;
}
#scMessage h3 {
  font-size: clamp(2rem,2.5vw,3rem);
  font-weight: 500;
  width: 100%;
  margin-bottom: 0.6em;
}
.nameField {
  text-align: right;
  letter-spacing: 0.05em;
}
.nameField span {
  font-size: 1.6em;
  font-weight: 500;
  margin-left: 0.5em;
}
@media screen and (max-width: 600px) {
  #scMessage .row .txt {
    display: contents;
  }
  #scMessage .row .img {
    width: 100%;
    margin-bottom: 20px;
  }
  .nameField {
    width: 100%;
    order: 8;
  }
}
#scCompanyProfile {
  margin: 0 0 var(--intv);
}
.companyProfile {
  width: min(100%,800px);
  display: flex;
  flex-wrap: wrap;
  letter-spacing: 0.05em;
  margin: 0 auto;
}
.companyProfile dt {
  width: 10em;
  font-weight: 400;
  border-bottom: 1px solid var(--light);
  padding: 0 0 1em 1em;
}
.companyProfile dd {
  width: calc(100% - 10em);
  border-bottom: 1px solid var(--light);
  padding: 0 1em 1em 0;
}
.companyProfile dt:not(:last-of-type), .companyProfile dd:not(:last-of-type) {
  margin-bottom: 1em;
}
@media screen and (max-width: 600px) {
  .companyProfile dt {
    width: 8em;
  }
  .companyProfile dd {
    width: calc(100% - 8em);
  }
}

#scAddress {
  margin: 0 0 var(--intv);
}
.addrGroup {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: min(100%,800px);
  grid-row-gap: 60px;
  margin: 0 auto;
}
.addrGroup .ofc {
  width: 45%;
}
.ofc h3 {
  font-size: clamp(1.6rem,2vw,2.4rem);
  border-bottom: 1px solid var(--light);
  padding-bottom: 0.3em;
  margin-bottom: 0.5em;
}
.ofc .addr {
  line-height: 1.6;
  margin-bottom: 10px;
}
.otrLink {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
}
.otrLink a {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.3em;
  background: var(--light);
  color: var(--black);
  font-weight: 400;
  border-radius: 20px;
  width: 10em;
  padding: 0.3em 0;
}

#scHistory {
  margin: 0 0 var(--intv);
}
.history {
  width: min(100%, 800px);
  display: flex;
  flex-wrap: wrap;
  letter-spacing: 0.05em;
  margin: 0 auto;
}
.history dt {
  width: 10em;
  font-weight: 400;
  border-bottom: 1px solid var(--light);
  padding: 0 0 1em 1em;
}
.history dd {
  width: calc(100% - 10em);
  border-bottom: 1px solid var(--light);
  padding: 0 1em 1em 0;
}
.history dt:not(:last-of-type), .history dd:not(:last-of-type) {
    margin-bottom: 1em;
}
@media screen and (max-width: 600px) {
  .history dt {
    width: 8em;
  }
  .history dd {
    width: calc(100% - 8em);
  }
}


/* # =================================================================
   # 事例紹介
   # ================================================================= */
#scWorksAcv {
  padding: 0 0 var(--intv);
}
.worksList {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 5%;
}
.worksList li {
  width: 30%;
}
@media screen and (max-width: 600px) {
  .worksList {
    gap: 40px 6.4%;
  }
  .worksList li {
    width: 46.8%;
  }
}
.worksList .thumb {
  margin-bottom: 10px;
}
.worksList .thumb img {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.pageNav {
  
}
.pageNav nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7em;
  margin-top: 100px;
}
.pageNav nav .page-numbers {
  width: 2em;
  height: 2em;
  display: grid;
  place-content: center;
  border: 1px solid var(--light);
  border-radius: 40px;
}
.pageNav nav .current {
  color: var(--black);
  background: var(--light);
}
.pageNav nav .next, .pageNav nav .prev {
  position: relative;
  border: none;
  width: 1.5em;
}
.pageNav .next::before, .pageNav .prev::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  border-top: 1px solid var(--light);
  border-right: 1px solid var(--light);
  top: calc(50% - 0.5em);
}
.pageNav .next::before {
  transform: rotate(45deg);
  left: 0;
}
.pageNav .prev::before {
  transform: rotate(225deg);
  left: 20%;
}
/*.contributor {
  color: #FFF;
  background: #000;
  display: inline-block;
  font-size: clamp(1.2rem,3.3vw,1.4rem);
  padding: 0 0.5em;
  margin-bottom: 0.5em;
}*/

#scWorksCntnt {
  padding: 0 0 var(--intv);
}
#scWorksCntnt .client {
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 0.5em;
}
#scWorksCntnt .client span {
  display: inline-block;
  background: #404040;
  padding: 0.2em 0.5em;
}
#scWorksCntnt .worksTtl {
  text-align: center;
  font-size: clamp(2rem, 2.6vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 0.5em;
}
#scWorksCntnt .thumb {
  text-align: center;
  margin-bottom: min(12vw,60px);
}
.worksSpec {
  text-align: center;
  margin-bottom: min(6vw,30px);
}
.worksConcept {
  margin-bottom: min(12vw,60px);
}
.subTtlArea {
  text-align: center;
  margin-bottom: min(4vw, 25px);
}
.subTtlArea .ttlEn {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(2.2rem, 3vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 0.03em;
}
.subTtlArea .scTtl {
  color: var(--color-g);
  font-size: clamp(0.9rem, 1.1vw, 1.3rem);
  font-weight: 300;
  letter-spacing: 0.08em;
}
.wp-block-image {
  margin-bottom: 1.5em;
}

/* # =================================================================
   # 製品紹介
   # ================================================================= */
#productMain .subpageTtlArea {
  height: 360px;
}
@media screen and (max-width: 600px) {
  #productMain .subpageTtlArea {
    height: 220px;
  }
}
.subpageTtlArea .prdctPageTtl {
  position: relative;
  font-size: clamp(1.4rem,1.5vw,1.8rem);
  margin-bottom: 30px;
}
.subpageTtlArea .prdctPageTtl::after {
  content: "";
  width: 1px;
  height: 24px;
  left: 50%;
  bottom: -30px;
  background: var(--light);
}
#scPrdctSummary {
  padding: 0 0 var(--intv);
}
.prdctSmrRow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-row-gap: 30px;
}
.prdctSmrRow .img {
  /*width: 53%;*/
  width: 60%;
  text-align: center;
}
.prdctSmrRow .txt {
  /*width: 42%;*/
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .prdctSmrRow {
    
  }
  .prdctSmrRow .img {
    width: 100%;
  }
  .prdctSmrRow .txt {
   text-align: left;
  }
}
.prdctSmrRow h2 {
  font-size: clamp(2rem,2.6vw,3.2rem);
  font-weight: 500;
  margin-bottom: 0.6em;
}
h3.tblTtl {
  font-size: clamp(1.6rem,1.6vw,2rem);
  font-weight: 500;
  margin: 60px 0 0.5em;
}
.freqTable {
  font-size: 1.4rem;
  border: 1px solid var(--light);
  margin-bottom: 20px;
}
.freqTable .rowTblHd, .freqTable .row {
  display: flex;
  flex-wrap: wrap;
}
.freqTable .rowTblHd {
  text-align: center;
}
.freqTable .row {
  border-top: 1px solid var(--light);  
}
.freqTable .rowTblHd > div:not(:first-child) {
  border-left: 1px solid var(--light);  
}
.freqTable .rowTblHd > div:nth-child(1), .freqTable .row > div:nth-child(1) {
  width: 3em;
}
.freqTable .rowTblHd > div:nth-child(2), .freqTable .row > div:nth-child(2) {
  width: calc(100% - 27em);
}
.freqTable .rowTblHd > div:nth-child(2) {
  display: grid;
  place-content: center;
}
.freqTable .rowTblHd > div:nth-child(n+3) {
  display: flex;
  flex-wrap: wrap;
  width: 12em;
}
.freqTable .rowTblHd > div:nth-child(n+3) div:nth-child(1) {
  width: 100%;
  border-bottom: 1px solid var(--light);  
}
.freqTable .rowTblHd > div:nth-child(n+3) div:nth-child(n+2) {
  width: 50%;
  font-size: 1.2rem;
}
.freqTable .rowTblHd > div:nth-child(n+3) div:nth-child(3) {
  border-left: 1px solid var(--light);
}
.freqTable .row > div:nth-child(n+3) {
  width: 6em;
  text-align: center;
}
.freqTable .row > div:not(:first-child) {
  border-left: 1px solid var(--light);  
}
.freqTable .rowTblHd > div:nth-child(n+3) div:nth-child(1), .freqTable .rowTblHd > div:nth-child(n+3) div:nth-child(n+2), .freqTable .row > div {
  padding: min(0.5vw,0.3em) 0;
}
.freqTable .row > div:nth-child(1) {
  text-align: center;
}
.freqTable .row > div:nth-child(2) {
  padding-left: 1em;
  padding-right: 1em;
}

@media screen and (max-width: 600px) {
  .freqTable {
    font-size: 1.1rem;
  }
  .freqTable .rowTblHd > div:nth-child(1), .freqTable .row > div:nth-child(1) {
    display: none;
  }
  .freqTable .rowTblHd > div:nth-child(2), .freqTable .row > div:nth-child(2) {
    width: calc(100% - 18em);
  }
  .freqTable .rowTblHd > div:nth-child(n+3) {
    width: 9em;
  }
  .freqTable .rowTblHd > div:nth-child(n+3) div:nth-child(n+2) {
    font-size: 1rem;
  }
  
  .freqTable .row > div:nth-child(n+3) {
    width: 4.5em;
  }
}

#scPrdctSpec {
  margin: 0 0 var(--intv);
}
.specGroup {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  grid-row-gap: min(6vw,40px);
}
.specGroup .spec {
  width: 48%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.specGroup .img {
  width: 42%;
}
.specGroup .txt {
  width: 54%;
}
@media screen and (max-width: 600px) {
  .specGroup .spec {
    width: 100%;
  }
  .specGroup .img {
    width: 36%;
  }
  .specGroup .txt {
    width: 57%;
  }
}
.specGroup h3 {
  font-size: clamp(1.6rem,1.6vw,2rem);
  margin-bottom: 0.5em;
}
.specGroup p {
  line-height: 1.6;
}
#scPrdctSeries {
  margin: 0 0 var(--intv);
}
.prdctSeries {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  grid-row-gap: min(8vw,50px);
}
.prdctSeries .item {
  width: 48%;
  background: #404040;
}
.prdctSeries .txt {
  text-align: center;
  padding: min(6vw,35px) 20px;
}
@media screen and (max-width: 600px) {
  .prdctSeries .item {
    width: 100%;
  }
}
.prdctSeries h3 {
  font-family: "Poppins", sans-serif;
  text-align: center;
  font-size: clamp(2.4rem,3vw,3.6rem);
  font-weight: 500;
}
.prdctSeries .prdctName {
  font-size: clamp(1rem,1vw,1.2rem);
  margin-bottom: 1.5em;
}
.prdctSeries .catchphrase {
  font-size: clamp(1.6rem,1.5vw,1.8rem);
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  margin-bottom: 0.3em;
}
.prdctSeries p {
  font-size: clamp(1.2rem,1.16vw,1.4rem);
  line-height: 1.6;
}
.prdctSeries .btnContainer {
  margin-top: min(6vw, 30px);
}
.prdctSeries a {
  display: flex;
  column-gap: 0.5em;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.2rem, 1.2vw, 1.4rem);
  letter-spacing: 0.05em;
  width: min(100%,240px);
  height: 50px;
  border: 1px solid var(--light);
  border-radius: 30px;
  margin: 0 auto;
  transition: all 0.25s;
}
.prdctSeries .circleArrow {
  width: 30px;
  height: 30px;
}
.prdctSeries .circleArrow svg {
  width: 16px;
}

/* # =================================================================
   # お知らせ
   # ================================================================= */
#scNewsCntnt {
  padding: var(--intvS) 0 var(--intv);
}
.singlePageNav {
  
}

/* # =================================================================
   # コラム/ブログ
   # ================================================================= */
.postArea {
  padding: 0 0 var(--intv);
}
.postArea .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.postArea .postListCol {
  width: calc(100% - 330px);
}
.postListCol .blogList {
  gap: 50px calc(10% / 2);
  margin-bottom: min(8vw, 50px);
}
.postListCol .blogList > li {
  width: 30%;
}
.postArea .postSideNav {
  width: 240px;
}
@media screen and (max-width: 600px) {
  .postListCol .blogList {
    gap: 40px 6.4%;
  }
  .postListCol .blogList > li {
    width: 46.8%;
  }
  .postArea .postSideNav {
    width: 100%;
  }
}
.postSideNav section:not(:last-child) {
  margin-bottom: 40px;
}
.postSideNav section h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.6rem,1.8vw,2.2rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-left: 6px solid var(--light);
  padding: 0 0 0 0.5em;
  margin-bottom: 0.5em;
}
.postSideNav .sideNavCate li {
  border-bottom: 1px solid var(--light);
}
.postSideNav .sideNavCate li:not(:last-child) {
  margin-bottom: 0.4em;
}
.postSideNav .sideNavCate li a {
  display: block;
  position: relative;
  padding: 0 0 0.4em 1.5em;
}
.postSideNav .sideNavCate li a::before {
  content: "";
  display: block;
  width: 0.55em;
  height: 0.55em;
  border-top: 1px solid var(--light);
  border-right: 1px solid var(--light);
  top: 0.55em;
  left: 0.2em;
  transform: rotate(45deg);
}
.postSideNav .sideNavTag {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7em 0.7em;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
}
.postSideNav .sideNavTag a {
  display: block;
  color: var(--black);
  background: #D0D0D0;
  padding: 0 0.8em;
  border-radius: 2em;
}

.postContentsCol {
    width: calc(100% - 330px);
}
@media screen and (max-width: 600px) {
  .postArea .postListCol, .postContentsCol {
    width: 100%;
    margin-bottom: var(--intvS);
  }
}
.postContentsCol .dateArea {
  display: flex;
  align-items: center;
  column-gap: 0.6em;
  margin-bottom: 5px;
}
.postContentsCol .dateArea .date {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
}
.postContentsCol .dateArea .cate {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em 0.6em;
}
.postCateList {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em 0.4em;
}
.postCateList li {
  font-size: 1.1rem;
  line-height: 1.4;
  color: #B5B5B5;
  border: 1px solid #B5B5B5;
}
.postCateList li a {
  padding: 0 0.3em;
}
.postDtlTtl {
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  font-weight: 400;
  margin-bottom: 0.8em;
}
.columnMainImg {
  margin-bottom: 1.5em;
}

/* # =================================================================
   # よくある質問
   # ================================================================= */
.breadcrumbs {
  margin: 15px auto var(--intvS);
}
.breadcrumbs ul {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.3em 2em;
  font-size: clamp(1.2rem,1.16vw,1.4rem);
}
.breadcrumbs ul a {
  position: relative;
  display: block;
}
.breadcrumbs ul a::after {
  content: "";
  width: 0.6em;
  height: 0.6em;
  border-top: 1px solid var(--light);
  border-right: 1px solid var(--light);
  top: 50%;
  right: -1em;
  transform: rotate(45deg) translateY(-0.4em);
}
#scFaqAcv {
  /*padding: var(--intvS) 0 var(--intv);*/
  padding: 0 0 var(--intv);
}
.cateLinkBox {
  background: var(--light);
  color: var(--black);
  font-weight: 400;
  width: min(100%,600px);
  border-radius: 26px;
  margin: 0 auto 40px;
}
.cateLinkOpen {
  display: block;
  position: relative;
  width: 100%;
  padding: 15px 35px;
}
.cateLinkOpen::before, .cateLinkOpen::after {
  content: "";
  display: block;
  height: 1px;
  width: 1em;
  background: #404040;
  top: 50%;
  right: 35px;
}
.cateLinkOpen::after {
  transform: rotate(90deg);
}
.cateLinkOpen.linkShow::after {
  transform: rotate(0deg);
}
@media screen and (max-width: 600px) {
  .cateLinkBox {
    border-radius: 20px;
  }
  .cateLinkOpen {
    padding: 10px 25px;
  }
  .cateLinkOpen::before, .cateLinkOpen::after {
    right: 25px;
  }
}
.cateLinkAcc {
  display: none;
  padding: 5px 50px 20px;  
}
.cateLinkBox .cateLinkGrp {
  
}
.cateLinkBox .cateLinkGrp li:not(:last-child) {
  margin-bottom: 0.5em;
}
.cateLinkBox .cateLinkGrp a {
  display: block;
  text-align: center;
  background: var(--light);
  border: 1px solid #D0D0D0;
  border-radius: 26px;
  padding: 3px 20px;
}
.btnClose {
  display: block;
  position: relative;
  padding-left: 1em;
  margin: 20px auto 0;
}
.btnClose::before {
  content: "×";
  display: block;
  /*height: 1px;
  width: 1em;*/
  color: #404040;
  top: 0;
  left: -0.2em;
}

.faqList li {
  font-size: clamp(1.4rem, 1.5vw, 1.8rem);
}
.faqList li:not(:last-child) {
  margin-bottom: 0.8em;
}
.faqList a {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  column-gap: 0.8em;
  padding-bottom: 0.8em;
  position: relative;
}
.faqList a::after {
  content: "";
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background: var(--light);
}
.faqList a:hover::after {
  width: 100%;
}
.faqList .question {
  width: calc(100% - 90px);
}

#scFaqCntnt {
  padding: 0 0 var(--intv);
}
.faqCateList {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em 0.6em;
  margin-bottom: 0.8em;
}
.faqCateList li {
  font-size: 1.1rem;
  color: #B5B5B5;
  border: 1px solid #B5B5B5;
  padding: 0 0.6em;
}
.faqDtlHd {
  margin-bottom: 25px;
}
.faqDtlQ {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.faqDtlQ .question {
  width: calc(100% - 55px);
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  font-weight: 400;
  margin: 0;
}
.faqDtlAns {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: min(12vw,60px);
}
.faqDtlAns .answer {
  width: calc(100% - 55px);
}
@media screen and (max-width: 600px) {
  .faqDtlQ .question {
      width: calc(100% - 40px);
  }
  .faqDtlAns .answer {
    width: calc(100% - 40px);
  }
}
.linkPageBack {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 15px;
}
.linkPageBack .circleArrow {
  transform: scale(-1, 1);
}

.categoryArchiveTtl {
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  font-weight: 400;
  margin-bottom: 1.3em;
}

/* # =================================================================
   # お問い合わせ
   # ================================================================= */
#scContact {
  margin-bottom: var(--intv);
}
#scContact .infoTel {
  text-align: center;
  color: var(--black);
  background: #D0D0D0;
  font-weight: 400;
  padding: min(4vw,30px) 10px;
  margin-bottom: min(10vw,60px);
}
.infoTel .tel {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.8rem,2.1vw,2.6rem);
  font-weight: 500;
  line-height: 1.2;
}
.infoTel .tel a {
  font-size: 1.5em;
}
.infoTel .time {
  font-size: clamp(1.2rem,1.16vw,1.4rem);
}
#scContact h2 {
  text-align: center;
  font-size: clamp(1.6rem,2vw,2.4rem);
  line-height: 1.2;
  margin-bottom: 0.4em;
}
#formWrap h2 {
  margin-bottom: 1.3em;
}
.formRow {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
}
.formRow .labelCol {
  width: 240px;
}
.formRow .inputCol {
  width: calc(100% - 240px);
}
@media screen and (max-width: 600px) {
  .formRow .labelCol {
    width: 100%;
    margin-bottom: 5px;
  }
  .formRow .inputCol {
    width: 100%;
  }
}
.cfTxt {
  width: 100%;
  color: var(--black);
  font-weight: 400;
  padding: 0.5em 0.8em;
  border: 1px solid #D0D0D0;
  background: #FFF;
}
::placeholder {
  color: #B5B5B5;
}
.formRow .wpcf7-list-item {
  margin: 0 1em 0 0;
}
input[type=radio], input[type=checkbox] {
  position: absolute;
  left: -9999px;
}
.radioGrp input + span {
  position: relative;
  padding-left: 25px;
}
.radioGrp input + span::before {
  content: "";
  display: block;
  top: calc(50% - 9px);
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 10px;
  background: #FFF;
  border: 1px solid var(--light);
}
.radioGrp input + span::after {
  content: "";
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 10px;
  background: var(--black);
  opacity: 0;
  transition: all 0.1s;
}
input[type=radio]:checked + span::after, input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.agreeCheckArea a {
  text-decoration: underline;
}
.agreeCheckArea {
  text-align: center;
  margin-top: 40px;
}
input[type=checkbox] + span {
  position: relative;
  padding-left: 25px;
}
input[type=checkbox] + span::before {
  content: "";
  display: block;
  top: calc(50% - 8px);
  left: 0;
  width: 16px;
  height: 16px;
  background: #FFF;
}
input[type=checkbox] + span::after {
  content: "";
  top: 6px;
  left: 5px;
  transform:rotate(45deg);
  width: 6px;
  height: 10px;
  border-bottom: 2px solid var(--black);
  border-right: 2px solid var(--black);
  opacity: 0;
  transition: all 0.1s;
}

.required {
  color: #FFF;
  background: #AF1111;
  font-size: 1.1rem;
  padding: 0 0.3em;
  margin-left: 0.7em;
  transform: translateY(-0.1em);
}
.formBtnArea {
  margin: min(10vw,60px) auto 0;
}
.btnSend {
  display: block;
  width: min(60%,400px);
  height: 50px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  text-align: center;
  color: var(--black);
  background: var(--light);
  border-radius: 50px;
  border: 1px solid var(--light);
  transition: all 0.15s;
  margin: 0 auto;
}
.btnSend:hover {
  color: var(--light);
  background: var(--black);
}

/* # =================================================================
   # サンクスページ
   # ================================================================= */
#scThanks {
  margin-bottom: var(--intv);
}
#scThanks h1 {
  text-align: center;
  font-size: clamp(1.6rem,2vw,2.4rem);
  margin-bottom: 1.2em;
}
#scThanks p {
  text-align: center;
}
@media screen and (max-width: 600px) {
  #scThanks p {
    text-align: left;
  }
}

/* # =================================================================
   # プライバシーポリシー
   # ================================================================= */
#scPolicy {
  margin-bottom: var(--intv);
}
.policyItem {
  margin-bottom: min(5vw,60px);
}
.policyItem h2 {
  font-size: clamp(1.9rem,2.6vw,3.2rem);
  margin-bottom: 0.3em;
}

/* # =================================================================
   # 404
   # ================================================================= */
#sc404 {
  margin-bottom: var(--intv);
}

/* # =================================================================
   # 採用情報
   # ================================================================= */
#scRecruitAcv {
  margin-bottom: var(--intv);
}
.recruitmentList {
  
}
.recruitmentList article {
  font-weight: 400;
  color: var(--black);
  background: var(--light);
  padding: min(5vw,30px) min(5vw,60px);
  margin-bottom: min(5vw,35px);
}
.recruitmentList h2 {
  font-size: clamp(1.8rem,2.1vw,2.6rem);
  margin-bottom: 30px;
}
.recruitmentList dl, .jobDscr dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.recruitmentList dt, .jobDscr dt {
  width: 12em;
  font-weight: 400;
  border-bottom: 1px solid #D0D0D0;
  padding: 0 0 0.8em 0.8em;
  margin-bottom: 0.8em;
}
.recruitmentList dd, .jobDscr dd {
  width: calc(100% - 12em);
  border-bottom: 1px solid #D0D0D0;
  padding: 0 0.8em 0.8em 0;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 600px) {
  .recruitmentList dt, .jobDscr dt {
    width: 100%;
    border-bottom: none;
    padding: 0;
    margin-bottom: 0.6em;
  }
  .recruitmentList dd, .jobDscr dd {
    width: 100%;
     padding: 0 0 1.2em 0;
    margin-bottom: 1.2em;
  }
}

#scRecruitCntnt {
  margin-bottom: var(--intv);
}
#scRecruitCntnt h1 {
  font-size: clamp(1.6rem,2vw,2.4rem);
  margin-bottom: 1.2em;
}













/* # =================================================================
   # 投稿者アーカイブ author.php
   # ================================================================= */

@media screen and (max-width: 600px) {
  

}



/* # =================================================================
   # 
   # ================================================================= */
.mvScroll::before {
  content:"";
  position:absolute;
  bottom:0;
  left: 50%;
  width:5px;
  height:5px;
  transform: translateX(-2px);
  border-radius: 50%;
  background: var(--g);
  animation:circlemove 1.6s ease-in-out infinite,cirlemovehide 1.6s ease-out infinite;
}
@keyframes circlemove {
  0% { bottom:62px; }
  100% {bottom:-5px; }
}
@keyframes cirlemovehide {
  0%{opacity:0;}
  20%{opacity:1;}
  80%{opacity:.9;}
  100%{opacity:0;}
}



/* # =================================================================
   # 
   # ================================================================= */

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(20,20,20,0.75);
  z-index: 20;
}
.modalContent {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: min(88%, 1200px);
  background: #FFF;
  padding: min(8vw,100px) 5vw;
  max-height: 94vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #BBB var(--l);
}
.modalContent::-webkit-scrollbar{
  width: 10px;
}
.modalContent::-webkit-scrollbar-track{
  background: var(--l);
}
.modalContent::-webkit-scrollbar-thumb{
  border: 2px solid var(--l);
  background: #BBB;
  border-radius: 5px;
}
.modalClose {
  position: absolute;
  width: 22px;
  height: 22px;
  top: min(6vw,30px);
  right: min(6vw,30px);
}
.modalClose::before, .modalClose::after {
  content: "";
  width: 125%;
  height: 1px;
  top: 40%;
  left: -10%;
  background: #707070;
}
.modalClose::before {
  transform: rotate(45deg);
}
.modalClose::after {
  transform: rotate(135deg);
}
.modal .container {
  width: min(100%, 770px);
}
.modal .slArea {
  margin-bottom: min(8vw,70px);
}
.modal dl {
  display: flex;
  flex-wrap: wrap;
  font-weight: 500;
  border-top: 1px solid #707070;
}
.modal dt {
  position: relative;
  width: 23%;
  font-weight: 500;
  border-bottom: 1px solid #707070;
  padding: min(1.5vw,16px) min(2vw,16px);
}
.modal dt::after {
  content: "";
  width: 1px;
  top: 15px;
  bottom: 15px;
  right: 0;
  background: #707070;
}
.modal dd {
  width: 77%;
  border-bottom: 1px solid #707070;
  padding: min(1.5vw,16px) min(2vw,16px);
}
@media screen and (max-width: 600px) {
  .modalContent {
    padding: 60px 20px 40px;
  }
  .modal dt {
    width: 30%;
  }
  .modal dt::after {
    top: 8px;
    bottom: 8px;
  }
  .modal dd {
    width: 70%;
  }
}








