@charset "utf-8";
/* ==================================================
common / module上書き
================================================== */
:root {
  --contentWidth: 1180px;
}
.content_main {
  overflow: hidden;
}
.cntSec {
}
.prod_tab {
  --fontSize: 16px;
}


/* ==================================================
共通
================================================== */
.topHeadingLv2 {
  color: var(--h2Color);
  font-size: 40px;
  font-weight: bold;
  letter-spacing: .03em;
  line-height: 1.2;
  text-align: center;
}
.topHeadingLv2-small {
  font-size: 34px;
}


/* ==================================================
MV
================================================== */
.mv {
  position: relative;
}
.mv_bg {
  aspect-ratio: 20 / 7;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.mv_bg::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #fff 0%, #fff 30.05%, rgba(255, 255, 255, 0) 56.16%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.5;
}
.mv_bg img {
  width: 100%;
}
.mv_inner {
  position: relative;
  width: calc(var(--contentWidth) + var(--contentPaddingXDouble));
  margin: auto;
  padding: 32px var(--contentPaddingX);
}
/* ----- mv_block01 ----- */
.mv_block01 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mv_headingLv1 {
  font-size: 40px;
  font-weight: bold;
}
.mv_headingLv1_sub {
  font-size: 18px;
  font-weight: bold;
  margin-top: 32px;
}
/* - mv_side - */
.mv_side {
  width: 352px;
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
}
.mv_side .emphBtn {
  --gapY: 16px;
}
.mv_side_txtLink {
  color: var(--defaultColor);
  font-size: 14px;
  margin-top: 8px;
}
.mv_side_txtLink > a {
  color: var(--defaultColor);
}
/* ----- mv_block02 ----- */
.mv_block02 {
  max-width: 1080px;
  margin: 40px auto 0;
}
/* - スライダー部分 - */
.camp_slider {
  --slideWidth: 344px;
  --slideGap: 24px;
  --swiper-navigation-size: 64px;
}
.camp_slider_inner {}
.camp_slider_list {}
.camp_label {
  --labelColor: var(--subColor);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: .03em;
  line-height: 1.7;
  text-align: center;
}
.camp_label_item {
  min-width: 106px;
  background-color: var(--labelColor);
  border-radius: 6px;
  padding: 2px 8px;
}
.camp_label_item-color02 { background-color: var(--mainColor); }
.camp_label_item-color03 { background-color: var(--colorBlue); }


/* ==================================================

================================================== */
.businessPanel {
  --gapY: 24px;
  --gapX: 40px;
  --col: 2;
  --panelPosition: flex-start;
  --minH: auto;
  margin-top: 40px;
}
.businessPanel:first-child { margin-top: 0; }
.businessPanel_list {
  min-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: var(--panelPosition);
  gap: var(--gapY) var(--gapX);
  margin: 0;
}
.businessPanel_item {
  --tPanelGap: calc(calc(var(--col) - 1) * var(--gapX));
  --tPanelWrap: calc(100% - var(--tPanelGap));
  --tPanelW: calc(var(--tPanelWrap) / var(--col));
  width: var(--tPanelW);
  flex: 0 0 auto;
}
.businessPanel_inner {
  width: 100%;
  height: auto;
  min-height: var(--minH);
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 12px;
}
.businessPanel_inner:first-child { margin-top: 0; }
.businessPanel_inner:only-child { height: 100%; }
.businessPanel_head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.businessPanel_body {
  text-align: center;
  margin-top: 24px;
}
.businessPanel_body:first-child { margin-top: 0; }
.businessPanel_foot {
  margin-top: auto;
  padding-top: 40px;
}
.businessPanel_foot:first-child { margin-top: 0; }
.businessPanel_img {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 12px;
}
.businessPanel_img:first-child { margin-top: 0; }
.businessPanel_txt_main {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-top: 24px;
}
.businessPanel_txt_main:first-child { margin-top: 0; }


/* ==================================================
お客様サポート / よくあるご質問
================================================== */
.contactSec {
}
.contact_grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
}
.contact_grid_item {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
/* ----- 見出し部分 ----- */
.contact_head {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-align: center;
}
/* ----- コンテンツ部分 ----- */
.contact_body {
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 24px;
  padding: 40px;
}
.contact_ttl {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: .03em;
  line-height: 1.5;
  text-align: center;
}
.contact_txt {
  margin-top: 24px;
}
.contact_telBox {
  display: grid;
  gap: 8px;
  place-content: center;
  margin-top: 24px;
}
.contact_telBox_head {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  background-color: var(--colorDarkGray);
  padding: 4px;
}
.contact_telBox .telNumber {
  color: var(--defaultColor);
  font-size: 40px;
}
.contact_telBox2 {
  text-align: center;
  margin-top: 24px;
}
.contact_telBox2_head {
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.55;
}
.contact_telBox2_body {
  margin-top: 8px;
}
.contact_telBox2 .telNumber {
  color: var(--defaultColor);
  font-family: var(--latoFont);
  font-size: 32px;
  font-weight: initial;
  line-height: 1;
}
/* ----- コンテンツ（block01） ----- */
.contact_body_block01 {
  display: flex;
  gap: 48px;
  text-align: center;
}
.contact_body_block01_item {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.contact_body_block01_item:not(:first-child)::before {
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
  background-color: var(--defaultColor);
}
.contact_body_block01_foot {
  padding-top: 24px;
  margin-top: auto;
}
/* ----- コンテンツ（サブ） ----- */
.contact_body_sub {
  position: relative;
  margin: auto 16px 0;
  padding: 24px 0 0;
}
.contact_body_sub .emphBtn {
  --btnMarginTop: 24px;
}
/* ----- よくあるご質問 ----- */
.contact_faq .contact_body {
  padding-top: 24px;
}
.contact_faqList {
}
.contact_faqList_item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 20px;
}
.contact_faqList_item:first-child { margin-top: 0; }
.contact_faqList_item::before {
  content: 'Q.';
  flex-shrink: 0;
  color: var(--mainColor);
  font-family: var(--latoFont);
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
}
.contact_faqList_link {
  color: var(--defaultColor);
  text-decoration: underline;
}


/* ==================================================
バナースライダー
================================================== */
.bnrList_slider {
  --slideWidth: 172px;
  --slideGap: 30px;
}
.bnrList_slider a {
  transition: var(--transOpac);
}
.bnrList_slider a:hover { opacity: var(--hoverOpac); }
