@charset "UTF-8";

/*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---------------------------------------------------------------
ページレイアウト
---------------------------------------------------------------
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/

/*フレーム*/
#wrapper {
  margin: 0 auto;
  padding: 0;
  width: 100%;

  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
}

#wrapper main {
  flex-grow: 1;
}

/*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---------------------------------------------------------------
ヘッダー
---------------------------------------------------------------
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/

#fixedArea {
  position: fixed;
  top: 0;
  right: 0;
  display: inline-block;
  min-width: 1060px;
  text-align: right;
  z-index: 5;
}
#headerAreaSection {
  display: inline-block;
  opacity: 0.9;
  z-index: 5;
  position: relative;
}
#headerAreaOuter {
}
#headerArea {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
#headerAreaImage {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/*ロゴ*/
#headerArea #HdLogo {
  display: block;
  margin-left: 25px;
}
#headerArea #HdLogo a {
  display: block;
}
#headerArea #HdLogo a img {
  max-height: 40px;
}

/*SNSボタンエリア*/
#snsButtonArea {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-grow: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-right: 25px;
  text-align: left;
}
#snsButtonArea ul {
  list-style: none;
  margin-left: -13px;
  overflow: hidden;
}
#snsButtonArea ul li {
  display: inline-block;
  margin-left: 13px;
}
#snsButtonArea ul li a {
  float: left;
  display: block;
  width: 22px;
  height: 22px;
  text-indent: -9999px;
  background-position: 0 0;
  background-repeat: no-repeat;
  transition: opacity 0.3s;
}
#snsButtonArea ul li.snsButtonAreaFacebook a {
  background-image: url(../common-img/sns_btn_facebook.png);
}
#snsButtonArea ul li.snsButtonAreaTwitter a {
  background-image: url(../common-img/sns_btn_twitter.png);
}
#snsButtonArea ul li.snsButtonAreaGooglePlus a {
  background-image: url(../common-img/sns_btn_googleplus.png);
}
#snsButtonArea ul li.snsButtonAreaHatena a {
  background-image: url(../common-img/sns_btn_hatena.png);
}
#snsButtonArea ul li a:hover {
  opacity: 0.7;
}

/*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---------------------------------------------------------------
ナビゲーション
---------------------------------------------------------------
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/

#globalNaviAreaSection {
  z-index: 6;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  line-height: 1em;
  font-size: 75%;
  width: 100%;
  text-align: left;
}
#globalNaviAreaOuter {
  display: flex;
  align-items: center;
  height: 100%;
}
#globalNaviArea {
  margin-left: 25px;
  margin-right: 25px;
}

/*-------------------------------------------------------------
グローバルナビゲーション
-------------------------------------------------------------*/
.menuFirst {
  list-style: none;
}
.menuFirst > li {
  position: relative; /*float: left; vertical-align: bottom;*/
  display: inline-block;
  vertical-align: top;
}
.menuFirst > li > a {
  display: table;
  cursor: pointer;
  font-size: 15px;
  font-weight: normal;
  text-decoration: none;
  line-height: 1em;
}
.menuFirst > li > a > span {
  display: table-cell;
  vertical-align: middle;
  padding: 0 20px 0 20px;
}
.menuFirst > li > a.m_item_btn {
  padding: 0;
  background-repeat: no-repeat;
  background-position: 0 0;
  text-indent: -9999px;
} /* 画像ボタンにした場合 */
.menuFirst > li > a img {
  float: left;
  max-width: 15px;
  max-height: 15px;
  margin-right: 7px;
  position: relative;
  top: -1px;
}
.menuFirst > li > a span.txtOuter {
  float: left;
}
.menuFirst > li > a span span.subTxt {
  display: block;
  font-size: 10px;
  line-height: 1em;
  margin-top: 3px;
}

/*-------------------------------------------------------------
ローカルナビゲーション
-------------------------------------------------------------*/
.menuSecond {
  list-style: none;
  position: absolute;
  left: 0;
  display: none;
  visibility: hidden;
  margin: 0;
  padding: 0;
  display: block;
  box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.09);
  left: 20px;
}
.menuSecond > li {
  display: list-item;
  line-height: normal;
  white-space: nowrap;
  margin: 0;
  padding: 0;
  border-top-width: 1px;
  border-top-style: dotted;
  border-top-color: rgba(255, 255, 255, 0.5);
}
.menuSecond > li > a {
  display: block;
  padding: 14px 20px 12px 20px;
  font-size: 13px;
  transition: background-color 0.3s;
}
.menuSecond > li > a.l_item_btn {
  padding: 0;
  background-repeat: no-repeat;
  background-position: 0 0;
  text-indent: -9999px;
} /* 画像ボタンにした場合 */
.menuSecond > li > a span.txtOuter {
  float: left;
}
.menuSecond > li > a span span.subTxt {
  display: block;
  font-size: 10px;
}

/*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---------------------------------------------------------------
カバー
---------------------------------------------------------------
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/

#coverAreaSection {
  width: 100%;
  position: relative;
}
#coverAreaOuter {
  margin: 0 auto;
}
#coverArea {
  margin: 0 auto;
  overflow: hidden;
}
#coverAreaInner {
  position: relative;
  overflow: hidden;
}
#coverAreaImage {
  overflow: hidden;
}
#coverArea h3 {
  line-height: normal;
  position: absolute;
  white-space: nowrap;
  vertical-align: baseline;
}
#coverWrap {
  height: 550px;
}
#coverWrap .swiper-slide {
  background-position: center;
  background-size: cover;
}
#coverAreaSection .swiper-container-horizontal > .swiper-pagination-bullets {
  width: auto !important;
  right: 0 !important;
  left: auto !important;
  bottom: 25px !important;
  display: inline-block !important;
  text-align: right;
  margin-right: 25px;
  box-sizing: border-box;
  line-height: 8px;
}
#coverAreaSection
  .swiper-container-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet:last-child {
  margin-right: 0 !important;
}
#coverAreaSection .swiper-pagination-bullet {
  background: #fff !important;
  opacity: 1 !important;
}
#coverAreaSection .swiper-pagination-bullet-active {
  background: #000 !important;
}

/*フリーエリア*/
#freeArea {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%); /* Safari用 */
  transform: translate(-50%, -50%);
  z-index: 2;
  display: block;
  text-align: center;
}
#freeArea p.leadTxt {
  line-height: 1.2em;
  font-size: 40px;
  font-weight: bold;
  padding: 35px 65px;
  display: inline-block;
  color: rgba(255, 255, 255, 0.9);
  border-style: solid;
  border-width: 5px;
  border-color: rgba(255, 255, 255, 0.8);
  background-color: rgba(
    255,
    255,
    255,
    0.1
  ); /*box-shadow: 0 0 6px 3px rgba(0,0,0,0.1);*/ /*text-shadow: 0 1px 3px #999;*/
}

/*スクロールボタン*/
.scrollBtn {
  display: none;
  width: 22px;
  height: 40px;
  background: url(../common-img/ico_scrolldown.png) no-repeat 0 0;
  position: absolute;
  bottom: 30px;
  left: 50%;
  margin-left: -11px;
  opacity: 0.8;
  text-indent: -9999px;
  z-index: 2;
  transition: opacity 0.4s;
}
.scrollBtn:hover {
  opacity: 0.4;
}
#page1 .scrollBtn {
  display: block;
}

/*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---------------------------------------------------------------
アンカーナビゲーション
---------------------------------------------------------------
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/

#anchorNaviArea {
  position: absolute;
  right: 0;
  background-color: #000;
}
#anchorNaviArea .bAnchorNaviInner {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: auto;
}
#anchorNaviArea .bAnchorNaviInner ul {
  position: relative;
  list-style: none;
  text-align: right;
}
#anchorNaviArea .bAnchorNaviInner ul li {
  position: relative;
  vertical-align: top;
  display: inline-block;
}
#anchorNaviArea .bAnchorNaviInner ul li.bg a {
  padding: 0;
  background-repeat: no-repeat;
  background-position: 0 0;
  text-indent: -9999px;
} /* 画像ボタンにした場合 */
#anchorNaviArea .bAnchorNaviInner ul li a {
  display: block;
  padding: 14px 20px 12px 20px;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  font-size: 15px;
  color: #fff;
  line-height: 1.3em;
  transition: color 0.3s;
  transition: background-color 0.3s;
}
#anchorNaviArea .bAnchorNaviInner ul li a img {
  margin-right: 5px;
}
#anchorNaviArea .bAnchorNaviInner ul li a:hover {
  color: #000;
  background-color: #fff;
}

/*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---------------------------------------------------------------
コンテンツ
---------------------------------------------------------------
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/

/*コンテンツエリア*/
#contentsAreaSection {
  width: 100%;
  position: relative;
  z-index: 3;
}
#contentsAreaOuter {
}
#contentsArea {
}
#contentsAreaInner {
}

/*メインエリア*/
#mainArea {
  width: 100%;
}

/*ユーザー編集領域*/
#user-area {
  width: 100%;
}

/*パンくずリスト*/
#breadcrumbsList {
  padding: 25px 0 80px 0;
  width: calc(100% - 50px);
  margin: 0 auto;
  font-size: 0.8em;
  text-align: right;
}
#breadcrumbsList ul {
  list-style: none;
}
#breadcrumbsList li {
  display: inline;
  margin: 0 12px 0 0;
  padding: 0 18px 0 0;
  background: url(../common-img/ico_arrow.png) no-repeat right;
}
#breadcrumbsList li:last-child {
  background-image: none;
  margin-right: 0;
  padding-right: 0;
}
#breadcrumbsList li a {
}

/*ページトップボタン*/
#pagetop {
  display: none;
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 25px;
  right: 25px;
  z-index: 50;
}

#pagetop a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
}

#pagetop a span {
  position: absolute;
  width: 50px;
  height: 50px;
  transition: opacity 0.3s;
  cursor: pointer;
  z-index: 2;
  background: #141414;
  text-indent: -9999px;
}

#pagetop a span:before {
  content: "";
  position: absolute;
  right: 16px;
  top: 22px;
  width: 15px;
  height: 15px;
  border-right: solid 2px #fff;
  border-top: solid 2px #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#pagetop a span:hover {
  opacity: 0.8;
}

/*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---------------------------------------------------------------
フッター
---------------------------------------------------------------
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/

/*フッターエリア*/
#footerAreaSection {
  width: 100%;
  padding: 40px;
  box-sizing: border-box;
}
#footerAreaOuter {
  width: 100%;
}
#footerArea {
  width: 100%;
  text-align: center;
}

/*フッターフリーエリア*/
#footerFreeArea {
  margin-bottom: 20px;
}

/*フッターナビゲーションエリア*/
#footerNaviArea {
  width: 100%;
  overflow: hidden;
}
#footerNaviArea ul {
  list-style: none;
}
#footerNaviArea ul li {
  display: inline;
  margin-right: 30px;
}
#footerNaviArea ul li a {
  white-space: nowrap;
  text-decoration: none;
}
#footerNaviArea ul li a:hover {
  text-decoration: underline;
}

/*コピーライト*/
p#pCopyright {
  text-align: center;
  font-size: 0.8em;
  margin-top: 30px;
}

/*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---------------------------------------------------------------
CUSTOM
---------------------------------------------------------------
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/

/* ==============================
HEADER
  ============================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 100%;
  width: 100%;
  /* 子要素の絶対配置の基準にする */
  z-index: 10;
  /* メガメニューより上（オーバーレイz=100） */
  background: #fff;
}
.header:after {
  content: "";
  height: 2px;
  width: 100%;
  background-color: #cccccc;
  display: block;
}
.header .container {
  padding-left: 20px;
  padding-right: 20px;
  width: 1240px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.header .container .headerTopContainer {
  max-width: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
}

.header {
  height: 122px;
}

.headerSub {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.headerSub ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
  list-style-type: none;
}
.headerSub ul li a {
  transition: 0.3s;
  text-decoration: none;
}
.headerSub ul li a:hover {
  opacity: 0.6;
}

/* ロゴ：縦中央配置。左右位置・サイズはレスポンシブで調整 */
.headerLogo {
  aspect-ratio: 462/25;
  max-width: 462px;
  width: 100%;
}
.headerLogo a {
  display: block;
  background-image: url(../common-img/logo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  text-align: left;
  text-indent: -9999px;
  transition: 0.3s;
}
.headerLogo a:hover {
  opacity: 0.6;
}

/* グローバルナビ：PCのみ表示。縦中央に配置 */
.headerNavWrapper {
  position: relative;
  max-width: 100%;
  width: 100%;
}

.headerNavWrapper ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.headerNavWrapper ul li.subGnavi {
  margin-left: auto;
}
.headerNavWrapper ul li a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  box-sizing: border-box;
  padding: 0 0 10px 0;
  border: none;
  background: none;
  color: inherit;
  font: inherit;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 300ms;
  list-style-type: none;
  text-decoration: none;
}
.headerNavWrapper ul li a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #be0008;
  transform: scaleX(0);
  transition: transform 350ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.headerNavWrapper ul li a:hover::before,
.headerNavWrapper ul li a:active::before,
.headerNavWrapper ul li a.is-active::before {
  transform: scaleX(1);
}
.headerNavWrapper ul li a.subGnaviText {
  font-weight: 400;
}

/* 右端の「お問い合わせ」：PCのみ */
.headerMembers,
.footerMembers {
  padding-left: 25px;
  list-style-type: none;
}
.headerMembers a,
.footerMembers a {
  padding: 12px 25px 10px 45px;
  border-radius: 9999px;
  background: #231815;
  color: #fff;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  text-decoration: none;
  transition: background-color 300ms;
  position: relative;
  text-decoration: none;
}
.headerMembers a:hover,
.footerMembers a:hover {
  background: #be0008;
}
.headerMembers a:before,
.footerMembers a:before {
  content: "";
  aspect-ratio: 1/1;
  background-image: url(../common-img/memberIcon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 20px;
  width: 20px;
  display: block;
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translate(0, -50%);
}

.footerMembers a {
  background: #ffffff;
  color: #231815;
}
.footerMembers a:before {
  background-image: url(../common-img/memberIconBk.svg);
}
.footerMembers a:hover {
  color: #ffffff;
}
.footerMembers a:hover:before {
  background-image: url(../common-img/memberIcon.svg);
}

/* 背景オーバーレイ（ぼかし＋半透明）。
	 非表示時は visibility/opacity/pointer-events で無効化 */
.megaOverlay {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility 0ms 400ms, opacity 400ms linear;
}

/* メガメニュー本体コンテナ。高さアニメはJSで付与 */
.megaContainer {
  position: fixed; /* absolute */
  left: 0;
  z-index: 9;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility 0ms 400ms, opacity 400ms linear;
}

.megaContainer {
  top: 120px;
}

.megaSection {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  max-width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0ms 400ms, opacity 400ms linear;
  display: flex;
  justify-content: flex-start;
  gap: 100px;
}

/* 本文領域（PCは常に表示、SPは閉じておく） */
.megaBody {
  position: relative;
  padding-bottom: 40px;
  padding-top: 40px;
  display: inline-block;
}
.megaBody h3 {
  font-size: 0.8em;
  font-weight: 400;
  color: #808080;
}

.megaList {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 40px;
}
.megaList ul {
  list-style-type: none;
}
.megaList a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transition: 0.3s;
  text-decoration: none;
}
.megaList a .megaThumb {
  position: relative;
  max-width: 60px;
  width: 100%;
}
.megaList a .megaThumb > img {
  display: block;
  max-width: 60px;
  width: 60px;
}
.megaList a .megaText > span {
  padding-left: 10px;
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
.megaList a:hover {
  opacity: 0.6;
}

/* 表示中のセクション。PCで前面に出し、フェードを有効化 */
.megaSection.is-open {
  position: relative;
  left: auto;
  top: auto;
  width: auto;
  visibility: visible;
  opacity: 1;
  transition: visibility 0ms, opacity 400ms linear;
}

/* アコーディオン展開時は＋を−に変形 */
.megaSection.is-expanded .mega-header a > span::after {
  transform: rotate(0deg);
}

/* メガメニュー表示状態：オーバーレイ／本体の表示をまとめてON */
.mega.is-open .megaOverlay,
.mega.is-open .megaContainer {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: visibility 0ms, opacity 400ms linear;
}

/* ==============================
COVER SLIDER
  ============================== */
.overflowClear.bcontainer-outer,
.overflowClear.bcontainer-coln .bcontainer-inner,
.overflowClear.bcontainer-coln .bcontainer-inner .coln,
.overflowClear.bcontainer-coln .bcontainer-inner .coln .swiper-container {
  overflow: visible !important;
}
.coverSliderWrapper .coverContentWrapper {
}
.coverSliderWrapper .bSlideShowS .caption {
  background-color: transparent;
}
.coverContentWrapper {
  width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}
.coverSliderWrapper .swiper-button-next {
  position: absolute;
  top: auto;
  right: 100px;
  bottom: 40px;
  width: 50px;
  aspect-ratio: 1/1;
  transition: 0.3s;
}
.coverSliderWrapper .swiper-button-prev {
  position: absolute;
  right: 146px;
  top: auto;
  left: auto;
  bottom: 40px;
  width: 50px;
  aspect-ratio: 1/1;
  transition: 0.3s;
}
.coverSliderWrapper .swiper-button-next:hover,
.coverSliderWrapper .swiper-button-prev:hover {
  opacity: 0.6;
}
.coverSliderWrapper .swiper-pagination-bullets {
  bottom: -30px !important;
}
.coverSliderWrapper .swiper-pagination-bullet {
  border-radius: 0;
  width: 40px;
  height: 5px;
  background-color: #cccccc;
}
.coverSliderWrapper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #be0008;
}

/* 詳しくはこちらボタン */
.coverSliderWrapper .textBtn {
  padding: 16px 30px 16px 30px;
  border-radius: 9999px;
  background: transparent;
  color: #ffffff !important;
  border: 2px solid #ffffff;
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  text-decoration: none !important;
  transition: background-color 300ms;
  position: relative;
  transition: 0.3s;
}
.coverSliderWrapper .textBtn:hover {
  opacity: 0.6;
}

/* 各スライダー設定：class名の頭にsliderXXXXXと設定 */
.sliderWaveLogo {
  background-image: url(../common-img/coverSlider/sliderWaveLogo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 523/77;
  max-width: 45%;
  width: 100%;
  display: block;
  text-indent: -9999px;
  margin-bottom: 40px;
}
.sliderTalkieLogo {
  background-image: url(../common-img/coverSlider/sliderTalkieLogo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 530/76;
  max-width: 50%;
  width: 100%;
  display: block;
  text-indent: -9999px;
  margin-bottom: 40px;
}
.sliderNCLogo {
  background-image: url(../common-img/coverSlider/sliderNCLogo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 626/110;
  max-width: 50%;
  width: 100%;
  display: block;
  text-indent: -9999px;
  margin-bottom: 40px;
}
.sliderBikomLogo {
  background-image: url(../common-img/coverSlider/sliderBikomLogo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 523/77;
  max-width: 50%;
  width: 100%;
  display: block;
  text-indent: -9999px;
  margin-bottom: 40px;
}

/* トップカテゴリータイトル */
.topCatTitleWrapper .bTtlS.type7 .inner .ttlAreaWrapper .title {
  padding-bottom: 0;
}
.topCatTitleWrapper .bTtlS.type7 .inner .ttlAreaWrapper .subtext {
  margin-top: 5px;
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
}

/* トップカテゴリーボタン */
.topCatBtn,
.topRecommendBtn {
  overflow: hidden;
}
.topCatBtn a,
.topRecommendBtn a {
  text-decoration: none !important;
  transition: 0.3s;
  overflow: hidden;
}
.topCatBtnWrapper .bCustomS {
  aspect-ratio: 268/455;
  position: relative;
  display: flex;
  align-items: flex-end;
  transition: 0.3s;
}
.topRecommendBtn .bCustomS {
  aspect-ratio: 1380/450;
  position: relative;
  display: flex;
  align-items: flex-end;
  transition: 0.3s;
}
.topCatBtnWrapper .bCustomS:after,
.topRecommendBtn .bCustomS:after {
  content: "";
  display: block;
  background-color: rgba(50, 50, 50, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
}
.topCatBtnWrapper:hover .bCustomS:after,
.topRecommendBtn:hover .bCustomS:after {
  background-color: rgba(50, 50, 50, 0);
}
.topCatBtnWrapper:hover .bCustomS,
.topRecommendBtn:hover .bCustomS {
  transform: scale(1.05);
}
.topCatBtnWrapper .bCustomS .bcu_title1,
.topRecommendBtn:hover .bCustomS .bcu_title1 {
  position: relative;
  z-index: 1;
  text-decoration: none;
}
.topCatBtnWrapper .bCustomS .bcu_title2,
.topRecommendBtn:hover .bCustomS .bcu_title2 {
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  position: relative;
  z-index: 1;
  text-decoration: none;
}
.topCatBtnWrapper .bCustomS .bcu_text1,
.topRecommendBtn .bCustomS .bcu_text1 {
  position: relative;
  z-index: 1;
  color: #ffffff;
  line-height: 1.5;
  font-size: 0.9em;
  padding-bottom: 20px;
  padding-top: 20px;
}
.topCatBtnWrapper .textBtn,
.topRecommendBtn .textBtn {
  padding: 16px 30px 16px 30px;
  border-radius: 9999px;
  background: transparent;
  color: #ffffff !important;
  border: 2px solid #ffffff;
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  text-decoration: none !important;
  transition: background-color 300ms;
  position: relative;
  transition: 0.3s;
}
.topCatBtnWrapper .textBtn:hover,
.topRecommendBtn .textBtn:hover {
  opacity: 0.6;
}
.topRecommendBtn .productCat {
  background-color: #ffffff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #3e3a39;
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-size: 0.8rem;
  line-height: 1;
  border-radius: 9999px;
  padding: 8px 20px;
  z-index: 1;
  margin-bottom: 20px;
}

/* トップページお知らせ欄 */
.topNewsListWrapper .bCatList ul {
  border-top: 1px solid #3e3a39;
}
.topNewsListWrapper .bCatList ul li {
  padding: 25px 0 15px 0;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  background-image: none;
  border-bottom: 1px solid #3e3a39;
}
.topNewsListWrapper .bCatList ul li:last-child {
  border-bottom: 1px solid #3e3a39;
  margin-bottom: 20px;
}
.topNewsListWrapper .bCatList ul li .bCatListDate {
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 16px;
  width: 8em;
  line-height: 1.5;
  margin-bottom: 5px;
  max-width: 100%;
  width: 100%;
  color: #939494;
}
.topNewsListWrapper .bCatList ul li .bCatListLabel {
  position: absolute;
  top: 25px;
  right: 0;
}
.topNewsListWrapper .bCatList ul li .bCatListLabel .bcatlabel {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  background-color: #231815;
  color: #ffffff;
  line-height: 1;
}
.topNewsListWrapper .bCatList ul li h5 {
  font-weight: 600;
  font-size: 16px;
  max-width: calc(100% - 8em);
  line-height: 1.5;
  max-width: 100%;
  width: 100%;
}

/* =======================
FOOTER
========================*/
.footer {
  max-width: 100%;
  width: 100%;
  background-color: #141414;
}
.footer .container {
  width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 70px;
  padding-bottom: 70px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer .container .leftBox {
  min-width: 30%;
}
.footer .container .leftBox .footerLogoBox a {
  aspect-ratio: 292/56;
  background-image: url(../common-img/senaLogoWhite.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  max-width: 292px;
  width: 100%;
  text-indent: -9999px;
  transition: 0.3s;
}
.footer .container .leftBox .footerLogoBox a:hover {
  opacity: 0.6;
}
.footer .container .rightBox {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 60px;
}
.footer .container .rightBox .footerNaviList li a,
.footer .container .rightBox .footerSubNaviList li a {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.3s;
  line-height: 2.2;
  text-decoration: none;
}
.footer .container .rightBox .footerNaviList li a:hover,
.footer .container .rightBox .footerSubNaviList li a:hover {
  opacity: 0.6;
}
.footer .container .rightBox .footerSubNaviList li a {
  color: #b2b2b2;
  font-weight: 400;
}
.footer .footerBottomWrapper {
  max-width: 100%;
  width: 100%;
  border-top: 1px solid #555555;
}
.footer .footerBottomWrapper .container {
  max-width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .footerBottomWrapper .container .snsWrapper {
  max-width: 30%;
  width: 100%;
}
.footer .footerBottomWrapper .container .snsWrapper ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}
.footer .footerBottomWrapper .container .snsWrapper ul li {
  max-width: 30px;
  width: 100%;
}
.footer .footerBottomWrapper .container .snsWrapper ul li a {
  display: block;
  text-indent: -9999px;
  aspect-ratio: 1/1;
  max-width: 30px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.3s;
}
.footer .footerBottomWrapper .container .snsWrapper ul li a:hover {
  opacity: 0.6;
}
.footer .footerBottomWrapper .container .snsWrapper ul li.snsFacebook a {
  background-image: url(../common-img/snsFacebook.svg);
}
.footer .footerBottomWrapper .container .snsWrapper ul li.snsX a {
  background-image: url(../common-img/snsX.svg);
}
.footer .footerBottomWrapper .container .snsWrapper ul li.snsYoutube a {
  background-image: url(../common-img/snsYoutube.svg);
}
.footer .footerBottomWrapper .container .snsWrapper ul li.snsInstagram a {
  background-image: url(../common-img/snsInstagram.svg);
}
.footer .footerBottomWrapper .container .copyright {
  color: #888888;
  font-size: 0.9rem;
}

/* 管理画面用 */
.adminView > #wrapper > .header {
  top: 60px !important;
}
.adminView > #wrapper > .header .headerNavWrapper ul li a {
  pointer-events: none;
}
.adminView > #wrapper > .mega > .megaContainer {
  top: 180px !important;
}
