/* CSS Document */
/*==========================================================================================
　★★★★★★★★★★ レスポンシブ種類は以下を参考 ★★★★★★★★★★
==========================================================================================*/
/******************** PC：デスクトップ（1025px〜）********************/
@media screen and (min-width: 1025px) {
  /* デスクトップ（1025px〜）に反映するCSS */
}
/******************** SP：スマホ／TB：タブレット（〜1024px）********************/
@media screen and (max-width: 1024px) {
  /* スマホ／タブレット（〜1024px）に反映するCSS */
}
/******************** TB：タブレット（821px〜1024px）********************/
@media (min-width: 821px) and (max-width: 1024px) {
  /* タブレット（821px〜1024px）に反映するCSS */
}
/******************** AirPad Mini〜AirPad Air（768px〜820px）********************/
@media (min-width: 768px) and (max-width: 820px) {
  /* AirPad Mini〜AirPad Air（768px〜820px）に反映するCSS */
}
/******************** SP：スマホ〜AirPad Air（〜820px）********************/
@media screen and (max-width: 820px) {
  /* スマホ〜AirPad Air（〜820px）に反映するCSS */
}
/******************** SP：スマホ（〜767px）********************/
@media screen and (max-width: 767px) {
  /* スマホ（〜767px）に反映するCSS */
}
/*==========================================================================================
　★★★★★★★★★★ ディスプレイ切り替え ★★★★★★★★★★
==========================================================================================*/
/*
PC：1025px〜（パソコン）
TB：821px〜1024px（タブレット）
SP：〜820px（スマホ）
*/
/* PC only（PCだけ表示） */
@media screen and (max-width: 1024px) {
  .forPc {
    display: none !important;
  }
}
/* TB only（TBだけ表示） */
@media screen and (max-width: 820px), screen and (min-width: 1025px) {
  .forTb {
    display: none !important;
  }
}
/* SP only（SPだけ表示） */
@media screen and (min-width: 821px) {
  .forSp {
    display: none !important;
  }
}
/*==========================================================================================
　★★★★★★★★★★ フォントサイズ参考 ★★★★★★★★★★
　ベース：16px
　12px｜0.667rem
　14px｜0.778rem
　16px｜0.889rem
　18px｜1rem
　20px｜1.112rem
　22px｜1.225rem
　24px｜1.333rem
　26px｜1.444rem
　28px｜1.556rem
　30px｜1.667rem
　32px｜1.778rem
　36px｜2rem
==========================================================================================*/
/*==========================================================================================
　★★★★★★★★★★【全ページ共通】common ★★★★★★★★★★
==========================================================================================*/
html, body, p {
  padding: 0;
  margin: 0;
}
html {
  font-size: 18px;
}
body {
  color: var(--text-color);
  font-size: 1rem; /* 18px */
  font-family: var(--text-font-family) !important;
  line-height: 1.8;
  overflow-x: hidden;
}
body.fixed {
  position: fixed;
  width: 100%;
  overflow: hidden;
}
/*--------------------------------------------------------------------------------
　common - section
--------------------------------------------------------------------------------*/
section {
  position: relative;
  width: 100%;
  padding: 100px 0;
}
section .secInner {
  position: relative;
  width: 100%;
}
.columnDetailWrapper section .secInner {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}
section .secInner .secContainer {
  position: relative;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
section .secInner .secContainer .secContainerBlock {
  margin-bottom: 70px;
}
/******************** TB：タブレット（821px〜1024px）********************/
@media (min-width: 821px) and (max-width: 1024px) {
  section {
    padding: 70px 0;
  }
  section .secInner .secContainer {
    max-width: 800px;
  }
  section .secInner .secContainer .secContainerBlock {
    margin-bottom: 60px;
  }
}
/******************** AirPad Mini〜AirPad Air（768px〜820px）********************/
@media (min-width: 768px) and (max-width: 820px) {
  section .secInner .secContainer {
    max-width: 600px;
  }
}
/******************** SP：スマホ〜AirPad Air（〜820px）********************/
@media screen and (max-width: 820px) {
  section {
    padding: 50px 0;
  }
  section .secInner .secContainer .secContainerBlock {
    margin-bottom: 44px;
  }
}
/*--------------------------------------------------------------------------------
　common - section - 背景色
--------------------------------------------------------------------------------*/
section.white {
  background-color: var(--text-wht-color);
}
section.secWhite {
  background: var(--bk-wht-color);
}
section.secLightGray {
  background: var(--lava-light-gray);
}
section.secOrange {
  background: var(--lava-grad-orange);
}
/*--------------------------------------------------------------------------------
　common - title
--------------------------------------------------------------------------------*/
h2, h3, h4, h5 {
  color: var(--text-color);
  margin: 0;
  padding: 0;
}
/*========== h1 ==========*/
.visuallyHidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
/*========== h2 ==========*/
.secTitle {
  position: relative;
  line-height: 1;
  margin-bottom: 70px;
}
.secTitle_en {
  display: block;
  font-weight: 500;
  font-size: clamp(70px, 9vw, 140px);
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
}
.secWhite .secTitle_en {
  color: var(--lava-light-gray);
}
.secLightGray .secTitle_en {
  color: var(--text-wht-color);
}
.secTitle_ja {
  display: block;
  color: var(--text-color);
  font-size: clamp(20px, 2.2vw, 50px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-top: -30px;
}
/*========== h3 ==========*/
h3 {
  font-size: clamp(20px, 1.8vw, 32px);
  font-weight: 700;
  text-align: center;
  line-height: 2;
  margin-bottom: 50px;
}
/*========== h4 ==========*/
h4 {
  font-size: clamp(18px, 1.2vw, 22px);
  font-weight: 700;
  line-height: 2;
  margin-bottom: 30px;
}
/*========== h5 ==========*/
h5 {
  font-size: clamp(18px, 1vw, 18px);
  font-weight: 700;
  line-height: 2;
  margin-bottom: 14px;
}
/******************** TB：タブレット（821px〜1024px）********************/
@media (min-width: 821px) and (max-width: 1024px) {
  /*========== h2 ==========*/
  .secTitle {
    margin-bottom: 60px;
  }
  /*========== h3 ==========*/
  h3 {
    margin-bottom: 40px;
  }
  /*========== h4 ==========*/
  h4 {
    margin-bottom: 24px;
  }
  /*========== h5 ==========*/
  h5 {
    margin-bottom: 12px;
  }
}
/******************** SP：スマホ〜AirPad Air（〜820px）********************/
@media screen and (max-width: 820px) {
  /*========== h2 ==========*/
  .secTitle {
    margin-bottom: 44px;
  }
  .secTitle_ja {
    margin-top: -20px;
  }
  /*========== h3 ==========*/
  h3 {
    margin-bottom: 34px;
    line-height: 1.6;
  }
  /*========== h4 ==========*/
  h4 {
    margin-bottom: 20px;
    line-height: 1.6;
  }
  /*========== h5 ==========*/
  h5 {
    margin-bottom: 8px;
    line-height: 1.6;
  }
}
/*--------------------------------------------------------------------------------
　common - text
--------------------------------------------------------------------------------*/
span, em, strong {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  vertical-align: baseline;
  font-size: 100%;
}
p {
  color: var(--text-color);
  font-size: 1rem; /* 18px */
}
section .secInner p {
  line-height: 2;
}
/*========== 注釈 ==========*/
.note {
  font-size: 0.778rem; /* 14px */
  line-height: 1.6;
}
/*========== マーカー ==========*/
.markerYellow {
  display: inline;
  background: linear-gradient(transparent 54%, #fef624 54%);
  font-weight: inherit;
  padding-bottom: 2px;
}
/******************** AirPad Mini〜TB：タブレット（768px〜1024px）********************/
@media (min-width: 768px) and (max-width: 1024px) {
  p {
    font-size: 1.112rem; /* 20px */
  }
}
/******************** SP：スマホ（〜767px）********************/
@media screen and (max-width: 767px) {
  p {
    font-size: 0.889rem; /* 16px */
  }
}
/*--------------------------------------------------------------------------------
　common - list
--------------------------------------------------------------------------------*/
ul, ol, dl, table {
  padding: 0;
  margin: 0;
}
li {
  list-style: none;
}
li, dt, dd, th, td {
  color: var(--text-color);
  font-family: var(--text-font-family);
}
/******************** PC：デスクトップ（1025px〜）********************/
@media screen and (min-width: 1025px) {
  li, dt, dd, th, td {
    font-size: 1rem; /* 18px */
  }
}
/******************** AirPad Mini〜TB：タブレット（768px〜1024px）********************/
@media (min-width: 768px) and (max-width: 1024px) {
  li, dt, dd, th, td {
    font-size: 1.112rem; /* 20px */
  }
}
/******************** SP：スマホ（〜767px）********************/
@media screen and (max-width: 767px) {
  li, dt, dd, th, td {
    font-size: 0.889rem; /* 16px */
  }
}
/*--------------------------------------------------------------------------------
　common - link
--------------------------------------------------------------------------------*/
a, a:hover {
  color: var(--text-color);
  text-decoration: none;
}
/******************** PC：デスクトップ（1025px〜）********************/
@media screen and (min-width: 1025px) {
  a {
    font-size: 1rem; /* 18px */
  }
}
/******************** AirPad Mini〜TB：タブレット（768px〜1024px）********************/
@media (min-width: 768px) and (max-width: 1024px) {
  a {
    font-size: 1.112rem; /* 20px */
  }
}
/******************** SP：スマホ（〜767px）********************/
@media screen and (max-width: 767px) {
  a {
    font-size: 0.889rem; /* 16px */
  }
}
/*--------------------------------------------------------------------------------
　common - img
--------------------------------------------------------------------------------*/
img {
  width: 100%;
}
/*==========================================================================================
　★★★★★★★★★★【全ページ共通】header ★★★★★★★★★★
==========================================================================================*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--text-wht-color);
  border-bottom: 0;
  z-index: 999;
}
.headerInner {
  position: relative;
  width: 100%;
  height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.l-header + * {
  margin-top: 100px;
}
/******************** AirPad Mini〜TB：タブレット（768px〜1024x）********************/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .headerInner {
    height: 80px;
  }
  .l-header + * {
    margin-top: 80px;
  }
}
/******************** SP：スマホ（〜767px）********************/
@media screen and (max-width: 767px) {
  .headerInner {
    height: 60px;
  }
  .l-header + * {
    margin-top: 60px;
  }
}
/*--------------------------------------------------------------------------------
  header - logo
--------------------------------------------------------------------------------*/
.logo {
  flex-shrink: 0;
  margin-left: 5%;
}
.logo a, .logo picture {
  display: block;
}
.logo img {
  display: block;
  width: auto;
  height: 50px;
  border-radius: 0;
  vertical-align: bottom;
}
/******************** 限定レスポンシブ（〜1400px）********************/
@media screen and (max-width: 1400px) {
  .logo {
    margin-left: 10px;
  }
}
/******************** TB：タブレット（821px〜1024px）********************/
@media (min-width: 821px) and (max-width: 1024px) {
  .logo img {
    height: 50px;
  }
}
/******************** SP：スマホ〜AirPad Air（〜820px）********************/
@media screen and (max-width: 820px) {
  .logo {
    display: flex;
    align-items: center;
  }
  .logo img {
    height: 46px;
  }
}
/*==========================================================================================
　★★★★★★★★★★【全ページ共通】header（PC：デスクトップ（1280px〜）で表示）★★★★★★★★★★
==========================================================================================*/
/*--------------------------------------------------------------------------------
  header - menu - グローバルメニュー全体
--------------------------------------------------------------------------------*/
.p-navigation-global {
  flex: 1;
  height: 100px;
}
.p-navigation-global__list {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 0;
  height: 100%;
  margin: 0;
  padding-left: 0;
}
.p-navigation-global__list-item {
  display: flex;
  align-items: center;
  height: 100%;
  list-style: none;
}
.p-navigation-global__list-item a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 18px;
  font-weight: 600;
}
nav ul li.cont a {
  color: var(--text-color);
  text-decoration: none;
}
nav ul li.cont a:hover {
  text-decoration: none;
}
nav ul li.is-open {
  background: var(--bk-gray-color);
}
/******************** PC：デスクトップ（1025px〜）********************/
@media screen and (min-width: 1025px) {
  .p-navigation-global {
    display: block;
  }
}
/******************** TB：タブレット（821px〜1024px）********************/
@media (min-width: 821px) and (max-width: 1024px) {
  .p-navigation-global {
    display: none;
  }
}
/******************** SP：スマホ〜AirPad Air（〜820px）********************/
@media screen and (max-width: 820px) {
  .p-navigation-global {
    display: none;
  }
}
/*--------------------------------------------------------------------------------
  header - menu - グローバルメニュー - サービス
--------------------------------------------------------------------------------*/
.p-megaMenu {
  position: static;
}
.p-megaMenu__navigation {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: 380px;
  padding: 30px 0 0;
  visibility: hidden;
  z-index: 20;
  transition: all 0.7s;
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
}
.p-megaMenu.is-open .p-megaMenu__navigation {
  visibility: visible;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
.p-megaMenu.is-open .p-megaMenu__open::before {
  rotate: 180deg;
}
.p-megaMenu__open {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  cursor: pointer;
  line-height: 1;
  font-size: 1rem;
  font-weight: 700;
  padding: 0 18px;
  height: 100%;
  background: none;
  border: 0;
}
.p-megaMenu__open::before {
  content: "";
  background-image: url("../images/ico/ico_arrow_orange.png");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 17px;
  height: 11px;
  margin-right: 7px;
  transition: rotate 0.5s;
}
/*========== グローバルメニュー > サービス > 各メニュー ==========*/
.p-megaMenu__list {
  position: relative;
  top: 10px;
  left: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: fit-content;
  max-width: 95%;
  margin-inline: auto;
  padding-left: 0;
}
.p-megaMenu__list-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  padding: 5px 10px;
  text-decoration: none;
}
.p-megaMenu__list-item a div:nth-child(4) {
  margin-left: -45px;
}
.studio .p-megaMenu__list-item {
  width: 14.28%;
}
.sp .p-megaMenu__list-item {
  width: 12.5%;
}
/* カード */
.p-megaMenu__list .serviceCard {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.p-megaMenu__list .serviceCard a {
  display: block;
  height: 100%;
}
.p-megaMenu__list .serviceCard_img {
  overflow: hidden;
  border-radius: 4px;
}
.p-megaMenu__list .serviceCard_img img {
  display: block;
  width: 100%;
  height: auto;
}
.p-megaMenu__list .serviceCard_label {
  position: relative;
  display: block;
  z-index: 2;
  width: fit-content;
  min-width: 220px;
  margin: -12px auto 0;
  padding: 8px 28px;
  background: var(--lava-orange);
  clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 10px 100%, 0 50%);
  color: var(--text-wht-color);
  font-size: 0.778rem; /* 14px */
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
/******************** TB：タブレット（768px〜）以上 ********************/
@media (min-width: 768px) {
  .p-megaMenu__navigation::before {
    content: "";
    display: block;
    position: absolute;
    top: -30px;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 370px;
    background-color: rgba(0, 0, 0, 0.5);
    filter: blur(10px);
  }
  .p-megaMenu__navigation::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 380px;
    background: var(--bk-gray-color);
    opacity: 0.9;
  }
  .p-navigation-global__list {
    gap: 0;
  }
  .p-megaMenu__list-item a {
    padding: 0;
  }
  .p-megaMenu__list {
    flex-direction: row;
    gap: 20px;
    width: 90%;
    max-width: 1200px;
  }
  nav .p-megaMenu__list:nth-child(2) li {
    padding-top: 30px;
  }
  nav .p-megaMenu__list:nth-child(2) li:nth-child(1) {
    margin-right: 20px;
    padding-right: 35px;
    border-right: 1px dashed var(--lava-dark-gray);
  }
  nav .p-megaMenu__list:nth-child(1) li {
    width: auto;
    text-align: center;
  }
  nav .p-megaMenu__list:nth-child(1) li:nth-child(1) {
    flex: 1;
  }
  nav .p-megaMenu__list:nth-child(1) li:nth-child(2) {
    flex: 1.85;
  }
  nav .p-megaMenu__list:nth-child(1) li span {
    padding: 3px 10px;
    background-color: var(--lava-dark-gray);
    color: var(--text-wht-color);
    font-size: 17px;
    font-weight: 500;
  }
}
/*--------------------------------------------------------------------------------
  header menu - 資料DLボタン、お問い合わせボタン
--------------------------------------------------------------------------------*/
nav ul li.dl_doc, nav ul li.free_counseling {
  display: flex;
  align-items: stretch;
  height: 100%;
  padding: 0 20px;
  color: var(--text-wht-color);
  list-style: none;
}
nav ul li.dl_doc a, nav ul li.free_counseling a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--text-wht-color);
  text-decoration: none;
}
/* 個別カラー */
nav ul li.dl_doc {
  background-color: var(--lava-dark-gray);
  margin-left: 10px;
}
nav ul li.free_counseling {
  background-color: var(--lava-orange);
}
/*==========================================================================================
　★★★★★★★★★★【全ページ共通】header（SP／TB（〜1024px）で表示）★★★★★★★★★★
==========================================================================================*/
.headerSpNav {
  display: none;
  margin-left: auto;
}
/******************** SP：スマホ／TB：タブレット（〜1024px）********************/
@media screen and (max-width: 1024px) {
  .headerSpNav {
    display: flex;
    align-items: center;
  }
}
/*--------------------------------------------------------------------------------
  header - menu - ハンバーガーメニュー オープン用 三本線
--------------------------------------------------------------------------------*/
.toggle_btn {
  position: relative;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 1002;
}
.toggle_btn span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: var(--text-color);
  border-radius: 9999px;
  transition: all 0.3s;
}
.toggle_btn span:nth-child(1) {
  top: 20px;
}
.toggle_btn span:nth-child(2) {
  top: 29px;
}
.toggle_btn span:nth-child(3) {
  top: 38px;
}
.open .toggle_btn span {
  background: var(--bk-wht-color);
}
.open .toggle_btn span:nth-child(1) {
  transform: translate(-50%, 9px) rotate(-45deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  transform: translate(-50%, -9px) rotate(45deg);
}
/******************** AirPad Mini〜TB：タブレット（768px〜1024px）********************/
@media (min-width: 768px) and (max-width: 1024px) {
  .toggle_btn {
    width: 80px;
    height: 80px;
  }
}
/******************** AirPad Mini〜AirPad Air（768px〜820px） ********************/
@media screen and (min-width: 768px) and (max-width: 820px) {
  .toggle_btn span:nth-child(1) {
    top: 30px;
  }
  .toggle_btn span:nth-child(2) {
    top: 39px;
  }
  .toggle_btn span:nth-child(3) {
    top: 48px;
  }
}
/******************** TB：タブレット（821px〜1024px）********************/
@media (min-width: 821px) and (max-width: 1024px) {
  .toggle_btn span {
    width: 30px;
  }
  .toggle_btn span:nth-child(1) {
    top: 27px;
  }
  .toggle_btn span:nth-child(2) {
    top: 39px;
  }
  .toggle_btn span:nth-child(3) {
    top: 51px;
  }
  .open .toggle_btn span {
    width: 30px;
  }
  .open .toggle_btn span:nth-child(1) {
    transform: translate(-50%, 12px) rotate(-45deg);
  }
  .open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }
  .open .toggle_btn span:nth-child(3) {
    transform: translate(-50%, -12px) rotate(45deg);
  }
}
/*--------------------------------------------------------------------------------
  header - menu - ハンバーガーメニュー全体
--------------------------------------------------------------------------------*/
.hMenu {
  display: none;
}
/******************** SP：スマホ／TB：タブレット（〜1024px）以下 ********************/
@media screen and (max-width: 1024px) {
  .hMenu {
    display: block;
  }
}
/*--------------------------------------------------------------------------------
  header - menu - ハンバーガーメニュー - メニュー一覧
--------------------------------------------------------------------------------*/
.hMenu_accordion {
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: transparent;
  z-index: 1001;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.hMenu.open .hMenu_accordion {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.hMenu_accordion-container {
  position: relative;
  z-index: 2;
  width: min(78vw, 360px);
  height: 100%;
  padding: 0;
  background: var(--bk-wht-color);
}
.hMenu_home {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--lava-dark-gray);
  border: 1px solid #fff;
  cursor: pointer;
}
.hMenu_home a {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 1em;
  color: var(--text-wht-color);
}
.hMenu_home::after {
  content: "";
  display: inline-block;
  width: 17px;
  height: 15px;
  margin-right: 18px;
  background-image: url("../images/ico/ico_arrow_wht.png");
  background-repeat: no-repeat;
  background-size: 85% auto;
  transform: rotate(-90deg);
  transition: transform 0.25s;
}
/******************** TB：タブレット（821px〜1024px）********************/
@media (min-width: 821px) and (max-width: 1024px) {
  .hMenu_home a {
    padding: 1em 1.4em;
  }
}
/******************** AirPad Mini〜TB：タブレット（768px〜1024x）********************/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hMenu_accordion-container {
    width: min(50vw, 512px);
  }
}
/******************** SP：スマホ（〜767px）********************/
@media screen and (max-width: 767px) {
  .hMenu_accordion-container {
    width: 320px;
    max-width: 78%;
  }
}
/*--------------------------------------------------------------------------------
  header - menu - ハンバーガーメニュー - メニュー - サービス
--------------------------------------------------------------------------------*/
/*========== アコーディオン見出し ==========*/
.hMenu_accordion-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--lava-dark-gray);
  border: 1px solid #fff;
  color: var(--text-wht-color);
  cursor: pointer;
}
.hMenu_accordion-title::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 10px;
  margin-right: 5px;
  background-image: url("../images/ico/ico_arrow_wht.png");
  background-repeat: no-repeat;
  background-size: 85% auto;
  transform: rotate(0deg);
  transition: transform 0.25s;
}
.hMenu_accordion-title.open::after {
  top: 45%;
  transform: rotate(180deg);
}
/*========== アコーディオン中身 ==========*/
.hMenu_accordion-content {
  display: none;
  padding: 0;
}
.hMenu_accordion-content p, .hMenu_accordion-content a {
  color: var(--text-color);
  text-decoration: none;
}
.hMenu_accordion-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  border-bottom: 1px solid #f5cdaf;
  background: #fef8f3;
}
.hMenu_accordion-content p:last-child {
  border: none;
}
.hMenu_accordion-content p.service {
  background: var(--lava-light-gray) !important;
  border-top: 2px solid var(--lava-dark-gray) !important;
  border-bottom: 2px solid var(--lava-dark-gray) !important;
  padding: 0.5rem 0 0.5rem 1.2rem;
}
.hMenu_accordion-content p.service + p {
  background: var(--bk-wht-color);
  border-bottom: var(--border-dashed);
}
.hMenu_accordion-content p.service + p + p {
  background: var(--bk-wht-color);
}
.hMenu_accordion-content p a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
}
.hMenu_accordion-content p a::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 10px;
  background-image: url("../images/ico/ico_arrow_dark_gray.png");
  background-repeat: no-repeat;
  background-size: 85% auto;
  transform: rotate(-90deg);
}
.hMenu_accordion-content p.service::after {
  background-image: none;
}
/******************** TB：タブレット（821px〜1024px）********************/
@media (min-width: 821px) and (max-width: 1024px) {
  /*========== アコーディオン見出し ==========*/
  .hMenu_accordion-title {
    padding: 1em 1.4em;
  }
  /*========== アコーディオン中身 ==========*/
  .hMenu_accordion-content p.service {
    padding: 0.7rem 0 0.7rem 1.4rem !important;
  }
  .hMenu_accordion-content p a {
    padding: 18px 0 18px 24px;
  }
  .hMenu_accordion-content p a::after {
    right: 24px;
  }
}
/******************** SP：スマホ〜AirPad Air（〜820px）********************/
@media screen and (max-width: 820px) {
  /*========== アコーディオン見出し ==========*/
  .hMenu_accordion-title {
    padding: 1em;
  }
  /*========== アコーディオン中身 ==========*/
  .hMenu_accordion-content p.service {
    padding: 0.5rem 0 0.5rem 1.2rem !important;
  }
  .hMenu_accordion-content p a {
    padding: 15px 0 15px 20px;
  }
  .hMenu_accordion-content p a::after {
    right: 20px;
  }
}
/******************** PC：デスクトップ（1025px〜）********************/
@media screen and (min-width: 1025px) {
  .hMenu_accordion-title, .hMenu_accordion-content p {
    font-size: 1rem; /* 18px */
  }
}
/******************** AirPad Mini〜TB：タブレット（768px〜1024px）********************/
@media (min-width: 768px) and (max-width: 1024px) {
  .hMenu_accordion-title, .hMenu_accordion-content p {
    font-size: 1.112rem; /* 20px */
  }
}
/******************** SP：スマホ（〜767px）********************/
@media screen and (max-width: 767px) {
  .hMenu_accordion-title, .hMenu_accordion-content p {
    font-size: 1rem; /* 18px */
  }
}
/*--------------------------------------------------------------------------------
  header - menu - ハンバーガーメニュー - マスク
--------------------------------------------------------------------------------*/
#mask {
  display: none;
}
.hMenu.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--lava-dark-gray);
  opacity: 0.6;
  z-index: 1000;
  cursor: pointer;
}
/*--------------------------------------------------------------------------------
  header menu - 資料DLボタン、お問い合わせボタン
--------------------------------------------------------------------------------*/
.contact {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: stretch;
  height: 100%;
}
.contact_download, .contact_form {
  height: 80px;
}
.contact a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  padding: 0;
  color: var(--text-wht-color);
  text-decoration: none;
  font-size: 0.9rem;
}
/* 個別カラー */
.contact_download a {
  background: var(--lava-dark-gray);
}
.contact_form a {
  background: var(--lava-orange);
}
/* アイコン */
.contact .icon {
  width: 16px;
  margin: 0 auto;
}
.contact .icon img {
  display: block;
  height: 16px;
  width: auto;
  border-radius: 0;
}
/* テキスト */
.contact .txt {
  margin-top: 6px;
  color: var(--text-wht-color);
  font-size: 0.625rem; /* 10px */
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
  text-align: center;
  font-feature-settings: "palt";
}
/******************** TB：タブレット（821px〜1024px）********************/
@media (min-width: 821px) and (max-width: 1024px) {
  /* アイコン */
  .contact .icon img {
    height: 20px;
  }
}
/******************** SP：スマホ（〜767px）********************/
@media screen and (max-width: 767px) {
  .contact_download, .contact_form {
    height: 60px;
  }
  .contact a {
    height: 60px;
  }
}
/*==========================================================================================
　★★★★★★★★★★【全ページ共通】footer ★★★★★★★★★★
==========================================================================================*/
footer {
  background: var(--bk-gray-color);
}
footer a {
  color: var(--text-color);
  text-decoration: none;
}
footer .secInner {
  display: flex;
  justify-content: space-between;
}
/*--------------------------------------------------------------------------------
　footer - LAVAロゴ
--------------------------------------------------------------------------------*/
.footer_logo a {
  display: block;
  width: 30%;
  max-width: 240px;
}
.footer_logo img {
  border-radius: 0;
}
/******************** SP：スマホ（〜767px）********************/
@media screen and (max-width: 767px) {
  .footer_logo a {
    width: 50%;
  }
}
/*--------------------------------------------------------------------------------
　footer - navi
--------------------------------------------------------------------------------*/
.footer_nav {
  width: 100%;
  margin: 30px 0 50px;
}
.footer_nav ul {
  display: flex;
  justify-content: space-between;
}
.footer_nav ul li {
  white-space: nowrap;
  margin-left: 30px;
}
.footer_nav ul li:first-child {
  margin-left: 0;
}
.footer_nav ul li:last-child {
  margin-bottom: 0;
}
.footer_nav ul li::before {
  content: "";
  background-image: url("../images/ico/ico_arrow_orange.png");
  background-repeat: no-repeat;
  background-size: 85% auto;
  display: inline-block;
  width: 17px;
  height: 15px;
  margin-right: 0px;
  transform: rotate(-90deg);
}
.footer_nav ul li.service {
  margin-left: 20px;
}
.footer_nav ul li.service + li {
  margin-left: 20px;
}
.footer_nav ul li.service + li + li {
  margin-left: 20px;
}
.footer_nav ul li.service::before {
  content: inherit;
  background-image: none;
  display: inline-block;
  width: inherit;
  height: inherit;
  margin-right: inherit;
  transform: inherit;
}
.footer_nav ul li.service span {
  margin-bottom: 0px;
}
.footer_nav ul li ul {
  margin-left: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.footer_nav ul li ul li {
  margin: 0 0 20px 0;
}
.footer_nav ul li.footer_nav_none::before {
  display: none;
}
/******************** SP：スマホ／TB：タブレット（〜1024px）以下 ********************/
@media screen and (max-width: 1024px) {
  .footer_nav ul {
    margin-left: 0;
    padding-left: 0;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  .footer_nav ul li {
    margin-bottom: 20px;
    white-space: nowrap;
    margin-left: 0px;
  }
  .footer_nav ul li.service {
    margin-left: 0;
  }
  .footer_nav ul li.service + li {
    margin-left: 0px;
  }
  .footer_nav ul li.service + li + li {
    margin-left: 0px;
  }
}
/*--------------------------------------------------------------------------------
　footer - SNSリンク
--------------------------------------------------------------------------------*/
.footer_sns {
  border-top: 1px dashed #999;
  margin-top: 0px;
  padding-top: 50px;
}
.footer_sns ul {
  display: flex;
  justify-content: space-around;
}
.footer_sns ul li {
  margin: 0 15px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footer_sns ul li:first-child {
  margin-left: 0;
}
.footer_ico {
  margin: 0 auto;
  margin-bottom: 15px;
}
.footer_ico a {
  display: block;
}
/******************** SP：スマホ〜AirPad Air（〜820px）********************/
@media screen and (max-width: 820px) {
  .footer_sns ul {
    flex-direction: column;
    justify-content: inherit;
    padding-left: 0;
  }
  .footer_sns ul li {
    display: flex;
    justify-content: inherit;
    flex-wrap: inherit;
    margin-bottom: 15px;
  }
}
/******************** SP：スマホ〜AirPad Air（〜820px）********************/
@media screen and (max-width: 820px) {
  .footer_sns ul li:first-child {
    margin-left: 15px !important;
  }
  .footer_ico {
    margin: inherit;
    width: 35%;
    max-width: 100px;
  }
}
/*--------------------------------------------------------------------------------
　footer - プライバシーポリシー
--------------------------------------------------------------------------------*/
.footer_privacy {
  background: var(--bk-wht-color);
  margin-top: 50px;
  padding: 4%;
}
.footer_privacy {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.footer_privacy .footer_privacy_text {
  width: 86%;
}
.footer_privacy .footer_privacy_text p {
  font-size: 0.778rem; /* 14px */
}
.footer_privacy .footer_privacy_ico {
  width: 10%;
}
.footer_privacy .footer_privacy_ico a {
  display: block;
}
@media (max-width: 768px) {
  .footer_privacy {
    display: block;
  }
  .footer_privacy .footer_privacy_text, .footer_privacy .footer_privacy_ico {
    width: 100%;
  }
  .footer_privacy .footer_privacy_ico a {
    max-width: 100px;
    margin: 0 auto;
  }
}
/*==========================================================================================
　★★★★★★★★★★【全ページ共通】パンくず ★★★★★★★★★★
==========================================================================================*/
.breadcrumbs {
  padding: 12px 0;
}
.breadcrumbsList, .breadcrumbsList li, .breadcrumbsList li a {
  font-size: 0.778rem; /* 14px */
}
.breadcrumbsList {
  display: flex;
}
.breadcrumbsList li {
  display: flex;
  margin: 0 15px;
}
.breadcrumbsList li:first-child {
  margin-left: 0px;
}
.breadcrumbsList li a {
  text-decoration: underline;
}
/*あとで消す↓*/
.categoryTop > ul {
  margin: 0;
  padding: 0;
  display: flex;
}
.categoryTop > ul li {
  display: flex;
  margin: 0 15px;
}
.categoryTop > ul li:first-child {
  margin-left: 0px;
}
.categoryTop > ul li a {
  color: var(--text-color);
  text-decoration: underline;
}
/******************** SP：スマホ〜AirPad Air（〜820px）********************/
@media screen and (max-width: 820px) {
  .breadcrumbs {
    display: none;
  }
}
/*==========================================================================================
　★★★★★★★★★★【全ページ共通】追従TOPボタン ★★★★★★★★★★
==========================================================================================*/
.floating-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 9999;
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.floating-top.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.top-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  text-decoration: none;
  color: var(--text-wht-color);
  font-weight: bold;
  font-size: 1.112rem; /* 20px */
  background: radial-gradient(circle, #FFC069 0%, #FF6A1E 100%);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  animation: floatY 2.5s ease-in-out infinite;
}
.top-btn:hover {
  color: var(--text-wht-color);
  transform: translateY(-5px);
}
/* ▲アイコン */
.top-arrow {
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 16px solid #fff;
  margin-bottom: 4px;
}
/* TOPの文字 */
.top-text {
  font-size: 1.112rem; /* 20px */
  letter-spacing: 1px;
}
/* ゆらゆらアニメーション */
@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/******************** SP：スマホ（〜767px）********************/
@media screen and (max-width: 767px) {
  .floating-top {
    right: 20px;
    bottom: 20px;
  }
  .top-btn {
    width: 80px;
    height: 80px;
  }
  /* ▲アイコン */
  .top-arrow {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #fff;
  }
}
/*==========================================================================================
　★★★★★★★★★★ 【全ページ共通】MV ★★★★★★★★★★
==========================================================================================*/
/*========== TOPページMV ==========*/
.topMv {
  position: relative;
  padding: 0;
  margin-bottom: -32px;
}
/* PC */
.topMv_pc {
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
}
.topMv_main {
  width: 64%;
}
.topMv_sub {
  width: 36%;
  flex-shrink: 0;
  border-radius: 20px;
  box-shadow: 0 30px 20px -14px rgba(255, 106, 30, 0.6);
  z-index: 2;
}
.topMv_main img, .topMv_sub img {
  width: 100%;
  height: auto;
  display: block;
}
/* SP */
.topMv_sp {
  display: none;
}
.topMv_sp img {
  width: 100%;
  height: auto;
  display: block;
}
/*========== TOPページMV（ボタン） ==========*/
.topMv_btn {
  position: absolute;
  left: 140px;
  bottom: 120px;
  display: flex;
  gap: 16px;
  z-index: 3;
}
/*========== 下層ページMV ==========*/
.pageMv {
  position: relative;
  width: 100%;
  padding: 0;
}
.pageMv picture, .pageMv img {
  display: block;
  width: 100%;
  height: auto;
}
/*========== 下層ページMV（ボタン） ==========*/
.pageMv_hasOverlay {
  overflow: hidden;
}
.pageMv_hasOverlay .pageMv_btnWrap {
  position: absolute;
  left: 4%;
  top: 41%;
  pointer-events: auto;
}
.pageMv_hasOverlay .note {
  margin-top: 8px;
  color: var(--text-wht-color);
  text-align: center;
}
/******************** TB：タブレット（821px〜1024px）********************/
@media (min-width: 821px) and (max-width: 1024px) {
  /*========== TOPページMV（ボタン） ==========*/
  .topMv_btn {
    left: 120px;
    bottom: 90px;
  }
  .mvBtn {
    min-width: 200px;
    padding: 10px 20px;
    font-size: 1.2rem;
  }
  /*========== 下層ページMV（ボタン） ==========*/
  .pageMv_hasOverlay .pageMv_btnWrap {
    top: 38%;
  }
}
/******************** AirPad Mini〜AirPad Air（768px〜820px）********************/
@media (min-width: 768px) and (max-width: 820px) {
  /*========== TOPページMV（ボタン） ==========*/
  .topMv_btn {
    left: 50%;
    bottom: 300px;
    transform: translateX(-50%);
    flex-direction: column;
    width: min(82%, 400px);
    gap: 10px;
  }
  .mvBtn {
    width: 80%;
  }
}
/******************** SP：スマホ〜AirPad Air（〜820px）********************/
@media screen and (max-width:820px) {
  /*========== TOPページMV ==========*/
  .topMv {
    margin-bottom: 0;
  }
  /* PC */
  .topMv_pc {
    display: none;
  }
  /* SP */
  .topMv_sp {
    display: block;
  }
  /*========== 下層ページMV（ボタン） ==========*/
  .pageMv_hasOverlay .pageMv_btnWrap {
    left: 10%;
    top: 34%;
  }
}
/******************** SP：スマホ（〜767px）********************/
@media screen and (max-width: 767px) {
  /*========== TOPページMV（ボタン） ==========*/
  .topMv_btn {
    left: 50%;
    bottom: 140px;
    transform: translateX(-50%);
    flex-direction: column;
    width: min(82%, 320px);
    gap: 10px;
  }
  /*========== 下層ページMV（ボタン） ==========*/
  .pageMv_hasOverlay .pageMv_btnWrap {
    top: 32%;
  }
}
/*==========================================================================================
　★★★★★★★★★★【全ページ共通】CTA ★★★★★★★★★★
==========================================================================================*/
.commonCta {
  overflow: hidden;
  background-image: url("../images/cta/cta_bg_pc.webp");
  background-size: cover;
  background-position: center;
}
/*========== CTAテキスト ==========*/
.commonCtaLead {
  color: var(--text-wht-color);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  line-height: 2;
}
.commonCtaLead span, .commonCtaLead strong {
  font-size: 1.25em;
  font-weight: 400;
}
.commonCtaLead span {
  background: #FEF97B;
  color: var(--lava-dark-gray);
  padding: 6px 10px;
  border-radius: 4px;
  margin: 0 10px;
}
.commonCtaLead .commonCta_sp {
  display: none;
}
/* 下線 */
.commonCtaLead strong {
  position: relative;
  margin: 0 4px;
  z-index: 2;
}
.commonCtaLead strong::after {
  content: "";
  position: absolute;
  left: -6px;
  bottom: -6px;
  width: 100%;
  height: 20px;
  background: var(--lava-orange);
  z-index: -1;
}
/*========== ボタン ==========*/
.commonCta_btns {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}
.commonCta_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
/*========== 人物画像 ==========*/
.commonCta_person {
  position: absolute;
  right: 60px;
  bottom: 0;
  width: 360px;
  z-index: 1;
}
.commonCta_person img {
  width: 100%;
  height: auto;
  display: block;
}
/******************** TB：タブレット（821px〜1024px）********************/
@media (min-width: 821px) and (max-width: 1024px) {
  /*========== CTAテキスト ==========*/
  /* 下線 */
  .commonCtaLead strong::after {
    bottom: -6px;
    height: 16px;
  }
  /*========== 人物画像 ==========*/
  .commonCta_person {
    width: 260px;
  }
}
/******************** AirPad Mini〜AirPad Air（768px〜820px）********************/
@media (min-width: 768px) and (max-width: 820px) {
  /*========== 人物画像 ==========*/
  .commonCta_person {
    right: 40px;
    width: 340px;
  }
}
/******************** SP：スマホ〜AirPad Air（〜820px）********************/
@media screen and (max-width:820px) {
  .commonCta {
    background-image: url("../images/cta/cta_bg_sp.webp");
  }
  .commonCta .commonCtaLead strong.pc {
    display: none;
  }
  /*========== CTAテキスト ==========*/
  /* 下線 */
  .commonCtaLead strong::after {
    bottom: -6px;
    height: 16px;
  }
  /*========== ボタン ==========*/
  .commonCta_btns {
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
  }
  .commonCta_btn {
    width: 80%;
    padding: 10px 0;
  }
}
/******************** SP：スマホ（〜767px）********************/
@media screen and (max-width: 767px) {
  .commonCtaLead span {
    margin: 0 10px 0 0;
  }
  .commonCtaLead .commonCta_sp {
    display: block;
  }
  /*========== 人物画像 ==========*/
  .commonCta_person {
    right: -40px;
    width: 260px;
  }
}