@charset "UTF-8";
/*------------------------------------------------------------
	カラー
------------------------------------------------------------*/
/*------------------------------------------------------------
	フォント
------------------------------------------------------------*/
/*------------------------------------------------------------
	ブレイクポイント
	デザイン幅：PC 1512px / SP 375px　1rem = 10px
------------------------------------------------------------*/
/* タブレット：SPデザイン(375px)を1rem=15pxまで比例拡大し、
   563px以上はコンテンツ列(37.5rem=562px)を中央寄せする境界 */
/* Works / Process セクションのドット地紋
   （Figma実測：#eaeaea・直径2px・5px間隔。テクスチャなので画面幅で変えずpx固定） */
/* タブレット（SPレイアウトを中央寄せする幅） */
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.flex, .flexA, .flexB, .flexC {
  display: flex;
  flex-wrap: wrap;
}

.flexA {
  justify-content: space-around;
}

.flexB {
  justify-content: space-between;
}

.flexC {
  justify-content: center;
}

/*------------------------------------------------------------
	content　※デザイン幅1512px－左右余白168px＝1176px
------------------------------------------------------------*/
.content {
  position: relative;
  z-index: 1;
  width: 117.6rem;
  max-width: 100%;
  margin: 0 auto;
}

/*------------------------------------------------------------
	fadeInUp
------------------------------------------------------------*/
.fadeInUp {
  opacity: 0;
  transform: translate(0, 20px);
  transition: transform ease-in-out 0.8s, opacity ease-in-out 0.8s;
}

.fadeInUp.on {
  opacity: 1;
  transform: translate(0, 0);
}

.dely02 {
  transition-delay: 0.2s;
}

.dely03 {
  transition-delay: 0.4s;
}

.dely04 {
  transition-delay: 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  .fadeInUp {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/*------------------------------------------------------------
	headLine01　セクション見出し（英字＋日本語）
------------------------------------------------------------*/
.headLine01 {
  display: flex;
  align-items: center;
  gap: 3rem;
  color: #fff;
}
.headLine01 .deco {
  display: block;
  width: 6.6rem;
  height: 11.8rem;
}
.headLine01 .txtBox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  width: 56.9rem;
}
.headLine01 .en {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 8rem;
  line-height: 7rem;
  white-space: nowrap;
}
.headLine01 .ja {
  display: block;
  width: 100%;
  font-weight: 700;
  font-size: 3rem;
  line-height: normal;
  letter-spacing: 0.15rem;
}

.headLine01.black {
  color: #383838;
}

/*------------------------------------------------------------
	comBtn01　白地に黒枠の丸ボタン
------------------------------------------------------------*/
.comBtn01 a {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: 1.4rem 2rem 1.4rem 3rem;
  border: 2px solid #383838;
  border-radius: 5rem;
  background-color: #fff;
}
@media (hover: hover) {
  .comBtn01 a:hover {
    opacity: 0.65;
  }
}

.comBtn01 .txt {
  font-weight: 700;
  font-size: 2.2rem;
  line-height: normal;
  letter-spacing: 0.176rem;
}

/* 「＞」：横5px × 縦10px */
.comBtn01 .arrow {
  display: block;
  width: 0.707rem;
  height: 0.707rem;
  border-top: 2px solid #383838;
  border-right: 2px solid #383838;
  transform: rotate(45deg);
  box-sizing: content-box;
}

/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter {
  /* リンクが増えても住所が切れないよう、高さは決めずに最低値だけ持たせる */
  min-height: 44rem;
  padding: 6rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8rem;
  background-color: #383838;
  /* ロゴを左、サイトリンクを右に置き、リンクは横に広げて余白を埋める */
  /* 4列。上から3件ずつ縦に流すので、11件だと最後の列だけ2件になる */
}
#gFooter .fInner {
  width: 132rem;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6rem;
}
#gFooter .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
}
#gFooter .logo .mark {
  display: block;
  width: 10rem;
  height: 8.0001rem;
}
#gFooter .logo .name {
  display: block;
  width: 16.2253rem;
  height: 3rem;
}
#gFooter .fNavi {
  flex: 1 1 auto;
  max-width: 92rem;
}
#gFooter .fNavi ul {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  justify-content: space-between;
  justify-items: start;
  column-gap: 4rem;
  row-gap: 2.2rem;
}
#gFooter .fNavi a {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  color: #fff;
  /* 英語だけでは分かりにくいので、日本語を小さく添える */
}
#gFooter .fNavi a:link, #gFooter .fNavi a:visited, #gFooter .fNavi a:hover {
  color: #fff;
}
@media (hover: hover) {
  #gFooter .fNavi a:hover {
    opacity: 0.65;
  }
}
#gFooter .fNavi a .en {
  font-weight: 700;
  font-size: 2rem;
  line-height: normal;
}
#gFooter .fNavi a .ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: normal;
  letter-spacing: 0.055rem;
  opacity: 0.7;
}
#gFooter address {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.9rem;
  text-align: center;
}

/*------------------------------------------------------------
	SP
------------------------------------------------------------*/
@media all and (max-width: 896px) {
  .content {
    width: auto;
    padding: 0 2rem;
  }
  .headLine01 {
    gap: 2rem;
  }
  .headLine01 .deco {
    width: 3.1rem;
    height: 5.5rem;
  }
  .headLine01 .txtBox {
    width: auto;
    gap: 0.5rem;
  }
  .headLine01 .en {
    font-size: 3.5rem;
    line-height: 3rem;
  }
  .headLine01 .ja {
    width: auto;
    font-size: 1.5rem;
    letter-spacing: 0.075rem;
    white-space: nowrap;
  }
  /* フッター */
  #gFooter {
    min-height: 0;
    padding: 6rem 2rem 11rem;
    gap: 2.2rem;
    /* 幅が足りないので2列に戻し、横いっぱいには広げない */
  }
  #gFooter .fInner {
    flex-direction: column-reverse;
    gap: 10rem;
  }
  #gFooter .fNavi {
    flex: 0 0 auto;
    max-width: 100%;
  }
  #gFooter .fNavi ul {
    grid-template-rows: repeat(6, auto);
    justify-content: start;
    column-gap: 4.8rem;
    row-gap: 1.5rem;
  }
  #gFooter .logo {
    gap: 0.9rem;
  }
  #gFooter .logo .mark {
    width: 7rem;
    height: 5.6rem;
  }
  #gFooter .logo .name {
    width: 9.2253rem;
    height: 1.7057rem;
  }
}
/*------------------------------------------------------------
	タブレット（563px〜896px）
------------------------------------------------------------*/
@media all and (min-width: 563px) and (max-width: 896px) {
  /* ヘッダーのロゴもコンテンツ列の左端（列左 + 2rem）に合わせる
     （MENUは画面右上に固定のまま） */
  #gHeader .comLogo {
    left: calc(50% - 16.75rem);
  }
}
